/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a1a0f;
    --bg-ocean: #0f2a1a;
    --bg-panel: #1a2a1f;
    --text-light: #f5f5f5;
    --text-gray: #b8c8b8;
    --kiwi-green: #7FB069;
    --kiwi-bright: #9FCF85;
    --kiwi-glow: rgba(127, 176, 105, 0.7);
    --coral: #FF7F50;
    --coral-bright: #FF9F7F;
    --coral-outline: rgba(255, 127, 80, 0.5);
    --coral-glow: rgba(255, 127, 80, 0.8);
    --forest-green: #2F4F2F;
    --white-glow: rgba(255, 255, 255, 0.3);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 26, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--coral-outline);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
}

.site-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--kiwi-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--kiwi-green);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, var(--bg-ocean) 0%, var(--bg-dark) 70%), linear-gradient(135deg, rgba(127, 176, 105, 0.1) 0%, rgba(255, 127, 80, 0.05) 100%);
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: bold;
    color: var(--coral);
    text-shadow:
        0 0 20px var(--coral-glow),
        0 0 40px var(--coral-glow),
        0 0 60px rgba(255, 127, 80, 0.4);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-blue {
    background: var(--kiwi-bright);
    color: white;
}

.cta-blue:hover {
    background: var(--kiwi-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 176, 105, 0.5);
}

.cta-gold {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-bright) 100%);
    color: var(--bg-dark);
}

.cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.5);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 80px 20px;
    position: relative;
}

.section-heading {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--kiwi-green);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid var(--kiwi-green);
    margin: 0 auto 40px;
}

/* ============================================
   CONTENT PANELS
   ============================================ */
.content-panel {
    background: var(--bg-panel);
    border: 2px solid var(--coral-outline);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(255, 127, 80, 0.2);
    transition: var(--transition);
}

.content-panel:hover {
    border-color: var(--coral-glow);
    box-shadow: 0 0 30px rgba(255, 127, 80, 0.4);
}

.panel-title {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--coral);
    margin-bottom: 20px;
    font-weight: 600;
}

.content-panel p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-panel p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PREVIEW SECTION
   ============================================ */
.preview-content {
    text-align: center;
}

.game-cover-card {
    margin: 0 auto 30px;
    max-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.game-cover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.game-cover-img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-text {
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-panel);
    border: 2px solid var(--coral-outline);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--coral-glow);
    box-shadow: 0 0 25px rgba(255, 127, 80, 0.5);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 22px;
    color: var(--coral);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-panels {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ============================================
   WARNING PANEL
   ============================================ */
.warning-panel {
    background: var(--bg-panel);
    border: 3px solid var(--coral-glow);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(255, 127, 80, 0.4);
    text-align: center;
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.warning-icon {
    font-size: 32px;
}

.warning-title {
    font-size: 28px;
    color: var(--kiwi-green);
    font-weight: bold;
}

.warning-text {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.warning-text strong {
    color: var(--text-light);
    font-size: 18px;
}

/* ============================================
   PAGE SECTIONS (Contact, Terms, Privacy)
   ============================================ */
.page-section {
    padding-top: 120px;
    min-height: 80vh;
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--coral);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 20px var(--coral-glow);
}

.contact-info {
    margin: 30px 0;
}

.contact-link {
    color: var(--kiwi-green);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--kiwi-bright);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--coral-outline);
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 20px;
    color: var(--coral);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-link:hover {
    color: var(--kiwi-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--coral-outline);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateX(-100%);
        transition: var(--transition);
        border-bottom: 1px solid var(--divine-outline);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .game-iframe-wrapper {
        margin-bottom: 40px;
        width: 100%;
        overflow: hidden;
        margin-left: 0;
        margin-right: 0;
    }
    
    .game-iframe-container {
        margin-bottom: 0;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        height: 80vh;
        min-height: 500px;
        max-height: 90vh;
        border-radius: 0;
        border-left: none;
        border-right: none;
        overflow: hidden;
    }
    
    .game-iframe {
        width: 100%;
        height: 100%;
    }
    
    .game-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .game-section {
        overflow-x: hidden;
    }
    
    .rating-summary {
        padding: 30px 20px;
    }
    
    .rating-score {
        font-size: 48px;
    }
    
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }
    
    .nested-panel {
        padding: 20px 15px;
    }
    
    .hero {
        min-height: 80vh;
        padding: 100px 20px 60px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .content-panel {
        padding: 30px 20px;
    }
    
    .about-panels {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .panel-title {
        font-size: 20px;
    }
    
    .content-panel {
        padding: 25px 15px;
    }
    
    .game-iframe-wrapper {
        margin-bottom: 30px;
    }
    
    .game-iframe-container {
        border-width: 2px;
        height: 85vh;
        min-height: 450px;
        max-height: 95vh;
    }
    
    .game-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .game-section {
        padding-top: 20px;
    }
    
    .game-subtitle {
        margin-bottom: 20px;
    }
    
}

/* ============================================
   SMOOTH SCROLLING & ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-panel,
.feature-card,
.game-cover-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    background: rgba(10, 10, 26, 0.8);
    padding: 15px 0;
    border-bottom: 1px solid var(--divine-outline);
    margin-top: 70px;
}

.breadcrumb-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--kiwi-green);
}

.breadcrumb-separator {
    color: var(--text-gray);
    margin: 0 10px;
}

.breadcrumb-current {
    color: var(--coral);
}

/* ============================================
   GAME SECTION & IFRAME
   ============================================ */
.game-section {
    padding-top: 40px;
}

.game-iframe-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 0 0 60px 0;
    position: relative;
}

.game-container {
    padding-left: 20px;
    padding-right: 20px;
}

.game-subtitle {
    text-align: center;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-light);
    margin-bottom: 40px;
}

.game-iframe-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 70vh;
    min-height: 600px;
    max-height: 900px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--coral-glow);
    box-shadow: 0 0 40px rgba(255, 127, 80, 0.4);
    background: var(--bg-dark);
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.iframe-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-gray);
    z-index: 1;
}

.iframe-note {
    font-size: 14px;
    margin-top: 10px;
    color: var(--text-gray);
}

/* ============================================
   INFO CARDS GRID
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--bg-panel);
    border: 2px solid var(--coral-outline);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--coral-glow);
    box-shadow: 0 0 25px rgba(255, 127, 80, 0.5);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.info-title {
    font-size: 20px;
    color: var(--coral);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-description {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   STEPS GRID (How to Play)
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--bg-panel);
    border: 2px solid var(--coral-outline);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--coral-glow);
    box-shadow: 0 0 25px rgba(255, 127, 80, 0.5);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--kiwi-green) 0%, var(--kiwi-bright) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(127, 176, 105, 0.3);
}

.step-title {
    font-size: 20px;
    color: var(--coral);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   TIPS PANEL
   ============================================ */
.tips-panel {
    margin-top: 40px;
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.section-arrow-small {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--kiwi-green);
}

.tips-title {
    margin-bottom: 0;
}

.tips-list {
    list-style: none;
    padding-left: 0;
}

.tips-list li {
    color: var(--text-gray);
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.tips-list li::before {
    content: '•';
    color: var(--kiwi-green);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 8px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
}

.cta-question {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--kiwi-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-light);
    margin-bottom: 30px;
}

.reviews-cta {
    background: var(--bg-panel);
    border: 2px solid var(--coral-outline);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 127, 80, 0.2);
}

/* ============================================
   REVIEWS PAGE
   ============================================ */
.reviews-subtitle {
    text-align: center;
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-light);
    margin-bottom: 40px;
}

.rating-summary {
    background: var(--bg-panel);
    border: 2px solid var(--coral-outline);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 50px;
    box-shadow: 0 0 20px rgba(255, 127, 80, 0.2);
}

.rating-label {
    font-size: 18px;
    color: var(--kiwi-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.rating-score {
    font-size: 64px;
    color: var(--coral);
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--coral-glow);
}

.rating-stars {
    margin-bottom: 15px;
}

.star {
    color: var(--coral);
    font-size: 28px;
    margin: 0 3px;
    text-shadow: 0 0 10px var(--coral-glow);
}

.rating-count {
    color: var(--text-gray);
    font-size: 16px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--bg-panel);
    border: 2px solid var(--coral-outline);
    border-radius: 15px;
    padding: 25px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--coral-glow);
    box-shadow: 0 0 25px rgba(255, 127, 80, 0.5);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-info {
    flex: 1;
    min-width: 150px;
}

.reviewer-name {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
}

.review-date {
    font-size: 14px;
    color: var(--text-gray);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .star {
    font-size: 18px;
    margin: 0;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.helpful-text {
    font-size: 14px;
    color: var(--text-gray);
}

.review-feedback {
    display: flex;
    gap: 15px;
}

.feedback-item {
    font-size: 14px;
    color: var(--text-gray);
}

.comment-button {
    background: var(--kiwi-bright);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.comment-button:hover {
    background: var(--kiwi-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(127, 176, 105, 0.4);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   PAGE SUBTITLE
   ============================================ */
.page-subtitle {
    text-align: center;
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-light);
    margin-bottom: 40px;
}

/* ============================================
   PINK HEADINGS & LISTS
   ============================================ */
.divine-heading {
    color: var(--kiwi-green) !important;
}

.divine-text {
    color: var(--kiwi-green);
}

.divine-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.divine-list li {
    color: var(--text-light);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.8;
}

.divine-list li::before {
    content: '•';
    color: var(--kiwi-green);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

/* ============================================
   NESTED PANELS
   ============================================ */
.nested-panel {
    background: rgba(10, 26, 10, 0.5);
    border: 1px solid var(--coral-outline);
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.nested-panel:hover {
    border-color: var(--coral-glow);
    box-shadow: 0 0 15px rgba(255, 127, 80, 0.3);
}

/* ============================================
   COOKIE TABLES
   ============================================ */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(10, 10, 26, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: rgba(127, 176, 105, 0.2);
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    color: var(--coral);
    font-weight: 600;
    border-bottom: 2px solid var(--coral-outline);
}

.cookie-table td {
    padding: 12px 15px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 127, 80, 0.1);
}

.cookie-table tbody tr:hover {
    background: rgba(127, 176, 105, 0.1);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   WARNING BOXES
   ============================================ */
.warning-box {
    background: rgba(127, 176, 105, 0.2);
    border: 2px solid var(--coral-glow);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.warning-box p {
    color: var(--text-light);
    margin: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--kiwi-green);
    outline-offset: 2px;
}
