/* ============================================================================
   EPICPLAY UNIVERSE - UNIFIED STYLING SYSTEM
   Volcanic Theme with Legal Page Support
   ============================================================================ */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffaa00;
    background: linear-gradient(135deg, #0a0000 0%, #1a0500 50%, #0a0000 100%);
    background-attachment: fixed;
}

/* ============================================================================
   ANIMATIONS & KEYFRAMES
   ============================================================================ */
@keyframes ember-pulse {
    0%, 100% {
        text-shadow: 0 0 15px #ff3300, 0 0 30px #ff6600, 0 0 45px #ff9900;
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 0 25px #ff3300, 0 0 50px #ff6600, 0 0 75px #ff9900;
        filter: brightness(1.2);
    }
}

@keyframes lava-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes flame-flicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        opacity: 0.85;
        transform: scale(1.03);
    }
    75% {
        opacity: 0.9;
        transform: scale(0.97);
    }
}

/* ============================================================================
   ALERT STRIP (FIXED TOP)
   ============================================================================ */
.alert-strip {
    background: linear-gradient(90deg, #330000 0%, #660000 50%, #330000 100%);
    color: #ff9900;
    padding: 10px 20px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 25px rgba(255, 51, 0, 0.6), inset 0 2px 15px rgba(255, 102, 0, 0.3);
    border-bottom: 3px solid #ff3300;
    text-shadow: 0 0 12px #ff6600, 0 0 25px #ff3300;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    animation: flame-flicker 3s ease-in-out infinite;
}

.alert-strip strong {
    font-size: 13px;
    text-transform: uppercase;
    color: #ffcc00;
    text-shadow: 0 0 15px #ffaa00, 0 0 30px #ff9900;
}

/* ============================================================================
   LAYOUT CONTAINERS
   ============================================================================ */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */
header {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a0500 0%, #0a0000 100%);
    border-bottom: 3px solid #ff6600;
    padding: 14px 0;
    box-shadow: 0 0 30px rgba(255, 51, 0, 0.7), 0 0 60px rgba(255, 102, 0, 0.4);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    color: #ff6600;
    text-decoration: none;
    letter-spacing: -1px;
    text-shadow: 0 0 15px #ff3300, 0 0 30px #ff6600, 0 0 45px #ff9900;
    animation: ember-pulse 3s ease-in-out infinite;
    z-index: 1002;
    position: relative;
}

.logo-text span {
    color: #ffcc00;
    text-shadow: 0 0 15px #ffaa00, 0 0 30px #ff9900;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 2px solid #ff6600;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    z-index: 1002;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    border-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ff9900);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.6);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu {
    display: block;
}

.primary-nav {
    display: flex;
    list-style: none;
    gap: 24px;
    flex-wrap: wrap;
}

body.menu-open {
    overflow: hidden;
}

.primary-nav a {
    color: #ffaa00;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.35s;
    position: relative;
    text-shadow: 0 0 8px #ff9900;
}

.primary-nav a:hover {
    color: #ff3300;
    text-shadow: 0 0 15px #ff3300, 0 0 30px #ff6600;
    transform: translateY(-2px);
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3300, #ff6600, #ff9900);
    box-shadow: 0 0 15px #ff6600;
    transition: width 0.35s;
}

.primary-nav a:hover::after {
    width: 100%;
}

/* ============================================================================
   BANNER SECTION (LANDING PAGE)
   ============================================================================ */
.banner-section {
    background: linear-gradient(135deg, #1a0500 0%, #330000 25%, #1a0800 75%, #1a0500 100%);
    background-size: 300% 300%;
    animation: lava-flow 8s ease infinite;
    color: #ffaa00;
    padding: 65px 24px 55px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #ff3300;
    box-shadow: 0 0 60px rgba(255, 51, 0, 0.5);
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(255, 51, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(255, 102, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 90%, rgba(255, 153, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: flame-flicker 4s ease-in-out infinite;
}

.banner-inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-section h1 {
    font-size: 38px;
    margin-bottom: 18px;
    line-height: 1.15;
    font-weight: 900;
    color: #ff6600;
    text-shadow: 0 0 15px #ff3300, 0 0 30px #ff6600, 0 0 45px #ff9900, 0 0 60px #ff3300;
    animation: ember-pulse 2.5s ease-in-out infinite;
}

.banner-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    color: #ffcc00;
    text-shadow: 0 0 10px #ffaa00;
}

.banner-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff3300 0%, #ff6600 50%, #ff9900 100%);
    background-size: 200% 200%;
    color: #0a0000;
    padding: 16px 42px;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 0 20px #ff6600, 0 0 40px #ff3300, inset 0 0 15px rgba(255, 204, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #ffcc00;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    animation: lava-flow 5s ease infinite;
}

.banner-button:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 0 30px #ff3300, 0 0 60px #ff6600, inset 0 0 25px rgba(255, 204, 0, 0.5);
    background-position: 100% 50%;
}

.banner-disclaimer {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffaa00;
}

/* ============================================================================
   CONTENT SECTIONS
   ============================================================================ */
.content-section {
    padding: 50px 24px;
    background-color: #0a0000;
}

.content-section-variant {
    background: linear-gradient(180deg, #0a0000 0%, #1a0500 100%);
}

.section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.heading-primary {
    font-size: 30px;
    margin-bottom: 12px;
    color: #ff6600;
    font-weight: 900;
    letter-spacing: -0.8px;
    text-shadow: 0 0 15px #ff3300, 0 0 30px #ff6600;
}

.heading-secondary {
    font-size: 15px;
    color: #ffaa00;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 0 8px #ff9900;
}

/* ============================================================================
   FEATURES GRID & CARDS
   ============================================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.8) 0%, rgba(51, 0, 0, 0.6) 100%);
    padding: 28px 20px;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.4), inset 0 0 15px rgba(255, 102, 0, 0.15);
    text-align: center;
    transition: all 0.4s;
    border: 3px solid #ff6600;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6), inset 0 0 25px rgba(255, 153, 0, 0.25);
    border-color: #ffcc00;
}

.feature-symbol {
    width: 60px;
    height: 60px;
    background: transparent;
    margin: 0 auto 16px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 3px solid #ff9900;
    box-shadow: 0 0 15px #ff6600, inset 0 0 15px rgba(255, 153, 0, 0.3);
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #ffcc00;
    font-weight: 800;
    text-shadow: 0 0 12px #ffaa00;
}

.feature-card p {
    color: #ffaa00;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* ============================================================================
   SPOTLIGHT SECTION
   ============================================================================ */
.spotlight-section {
    background: linear-gradient(135deg, #1a0500 0%, #330000 100%);
    padding: 70px 24px;
}

.spotlight-heading {
    font-size: 42px;
    text-align: center;
    color: #ff6600;
    margin-bottom: 50px;
    font-weight: 900;
    text-shadow: 0 0 25px #ff3300, 0 0 50px #ff6600;
    animation: ember-pulse 3s ease-in-out infinite;
}

.spotlight-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.spotlight-text {
    color: #ffffff;
}

.spotlight-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #ffffff;
    opacity: 0.92;
}

.highlights-panel {
    background: linear-gradient(135deg, rgba(51, 0, 0, 0.9), rgba(26, 5, 0, 0.8));
    padding: 30px;
    border-radius: 16px;
    border-left: 6px solid #ff6600;
    box-shadow: 0 0 40px rgba(255, 51, 0, 0.5), inset 0 0 40px rgba(255, 102, 0, 0.15);
    margin-top: 35px;
}

.highlights-panel h3 {
    font-size: 24px;
    color: #ffcc00;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 0 15px #ffaa00;
}

.features-list {
    list-style: none;
    margin-bottom: 24px;
}

.features-list li {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-emoji {
    font-size: 22px;
    filter: drop-shadow(0 0 12px currentColor);
}

.user-rating {
    padding-top: 20px;
    border-top: 3px solid rgba(255, 102, 0, 0.4);
    font-size: 19px;
    color: #ffffff;
}

.user-rating strong {
    color: #ffcc00;
    text-shadow: 0 0 12px #ffaa00;
}

.rating-stars {
    color: #ffd700;
    font-size: 22px;
    filter: drop-shadow(0 0 8px #ffaa00);
}

.rating-value {
    color: #ffd700;
    font-weight: 900;
    font-size: 22px;
    text-shadow: 0 0 15px #ffaa00;
}

.spotlight-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.spotlight-action {
    display: inline-block;
    background: linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
    color: #000000;
    padding: 22px 50px;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 60px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 0 25px #ff6600, 0 0 50px #ff3300;
    border: 3px solid #ffcc00;
}

.spotlight-action:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 0 40px #ff6600, 0 0 80px #ff3300;
    background: linear-gradient(135deg, #ff9900 0%, #ffcc00 100%);
}

.action-icon {
    font-size: 20px;
    margin-right: 10px;
}

.media-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 51, 0, 0.6), 0 0 100px rgba(255, 102, 0, 0.4);
    border: 4px solid #ff6600;
}

.media-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* ============================================================================
   SECURITY SECTION
   ============================================================================ */
.security-section {
    background: linear-gradient(135deg, #0a0000 0%, #1a0500 100%);
    color: #ffaa00;
    padding: 50px 24px;
    text-align: center;
    border-top: 4px solid #ff6600;
    border-bottom: 4px solid #ff6600;
    box-shadow: 0 0 60px rgba(255, 51, 0, 0.4);
}

.security-inner {
    max-width: 850px;
    margin: 0 auto;
}

.security-section h2 {
    font-size: 30px;
    margin-bottom: 16px;
    font-weight: 900;
    color: #ff6600;
    text-shadow: 0 0 15px #ff3300, 0 0 30px #ff6600;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.security-card {
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.6), rgba(51, 0, 0, 0.5));
    padding: 26px 20px;
    border-radius: 14px;
    backdrop-filter: blur(12px);
    border: 3px solid #ff9900;
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4), inset 0 0 15px rgba(255, 153, 0, 0.15);
}

.security-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #ffcc00;
    text-shadow: 0 0 12px #ffaa00;
}

.security-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    color: #ffaa00;
}

/* ============================================================================
   PROCESS STEPS
   ============================================================================ */
.process-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.7), rgba(51, 0, 0, 0.6));
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.4), inset 0 0 15px rgba(255, 102, 0, 0.15);
    border-left: 5px solid #ff6600;
}

.step-badge {
    background: transparent;
    color: #ffcc00;
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    border: 3px solid #ff9900;
    box-shadow: 0 0 15px #ff6600, inset 0 0 15px rgba(255, 153, 0, 0.3);
    text-shadow: 0 0 12px #ffaa00;
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #ff6600;
    font-weight: 800;
    text-shadow: 0 0 12px #ff3300;
}

.step-content p {
    color: #ffaa00;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* ============================================================================
   PANELS & BOXES
   ============================================================================ */
.warning-panel {
    background: linear-gradient(135deg, rgba(255, 51, 0, 0.15), rgba(255, 102, 0, 0.1));
    border: 3px solid #ff6600;
    padding: 20px 26px;
    margin: 30px auto 0;
    max-width: 850px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 51, 0, 0.4), inset 0 0 30px rgba(255, 102, 0, 0.15);
}

.warning-panel p {
    color: #ffcc00;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    text-shadow: 0 0 8px #ffaa00;
}

.warning-panel strong {
    color: #ff6600;
    font-size: 14px;
    text-shadow: 0 0 12px #ff3300;
}

.information-panel {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.7), rgba(51, 0, 0, 0.6));
    padding: 30px 26px;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.4), inset 0 0 30px rgba(255, 153, 0, 0.15);
    border: 3px solid #ff9900;
}

.information-panel h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ff6600;
    font-weight: 900;
    text-shadow: 0 0 15px #ff3300, 0 0 30px #ff6600;
}

.information-panel p {
    margin-bottom: 14px;
    color: #ffaa00;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.help-panel {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(255, 204, 0, 0.1));
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 3px solid #ffaa00;
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.4), inset 0 0 15px rgba(255, 204, 0, 0.15);
}

.help-panel p {
    color: #ffcc00;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.help-panel a {
    color: #ff6600;
    font-weight: 900;
    text-decoration: underline;
    text-shadow: 0 0 8px #ff3300;
}

/* ============================================================================
   CHECKLISTS & LISTS
   ============================================================================ */
.checklist {
    list-style: none;
    margin: 20px 0;
}

.checklist li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #ffaa00;
    line-height: 1.6;
    font-size: 14px;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 0 12px #ff3300;
}

/* ============================================================================
   QUESTIONS SECTION
   ============================================================================ */
.questions-section {
    max-width: 850px;
    margin: 0 auto;
}

.question-item {
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.7), rgba(51, 0, 0, 0.6));
    margin-bottom: 16px;
    padding: 20px 26px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.4), inset 0 0 15px rgba(255, 102, 0, 0.15);
    border-left: 5px solid #ff6600;
    transition: all 0.35s;
}

.question-item:hover {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6), inset 0 0 30px rgba(255, 153, 0, 0.25);
    border-left-color: #ffcc00;
}

.question-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ff6600;
    text-align: left;
    font-weight: 800;
    text-shadow: 0 0 12px #ff3300;
}

.question-item p {
    color: #ffaa00;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.highlight-text {
    font-weight: 900;
    color: #ff6600;
    text-shadow: 0 0 12px #ff3300;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    background-color: #000000;
    color: #ffaa00;
    padding: 35px 24px 20px;
    border-top: 4px solid #ff6600;
    box-shadow: 0 0 60px rgba(255, 51, 0, 0.4);
}

.footer-container {
    max-width: 1080px;
    margin: 0 auto;
}

.footer-notice {
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.7), rgba(51, 0, 0, 0.6));
    padding: 20px 26px;
    border-radius: 12px;
    margin-bottom: 26px;
    text-align: center;
    border: 3px solid #ff6600;
    box-shadow: 0 0 30px rgba(255, 51, 0, 0.4), inset 0 0 30px rgba(255, 102, 0, 0.15);
}

.footer-notice p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 5px;
    color: #ffaa00;
}

.footer-notice strong {
    color: #ff6600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 0 12px #ff3300;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 26px;
}

.footer-links a {
    color: #ffaa00;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.35s;
    text-shadow: 0 0 8px #ff9900;
}

.footer-links a:hover {
    color: #ff6600;
    text-shadow: 0 0 15px #ff3300, 0 0 30px #ff6600;
}

.footer-resources {
    text-align: center;
    margin: 35px 0 26px;
    padding: 26px;
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.4), rgba(51, 0, 0, 0.3));
    border-radius: 12px;
    border: 2px solid rgba(255, 102, 0, 0.3);
}

.footer-resources h3 {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 0 12px #ffaa00;
}

.resources-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.resource-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(255, 153, 0, 0.1));
    border: 3px solid rgba(255, 102, 0, 0.4);
    border-radius: 12px;
    transition: all 0.35s ease;
    text-decoration: none;
    min-width: 130px;
}

.resource-link:hover {
    transform: translateY(-4px);
    border-color: #ff6600;
    box-shadow: 0 6px 25px rgba(255, 102, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.25), rgba(255, 153, 0, 0.2));
}

.resource-link.age-marker {
    background: linear-gradient(135deg, rgba(255, 51, 0, 0.25), rgba(255, 102, 0, 0.15));
    border-color: rgba(255, 51, 0, 0.6);
}

.resource-link.age-marker:hover {
    border-color: #ff3300;
    box-shadow: 0 6px 25px rgba(255, 51, 0, 0.5);
}

.resource-icon {
    font-size: 26px;
    line-height: 1;
}

.resource-label {
    font-size: 12px;
    font-weight: 700;
    color: #ffcc00;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.age-marker .resource-icon {
    color: #ff3300;
    font-weight: bold;
    font-size: 30px;
}

.age-marker .resource-label {
    color: #ff3300;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 3px solid #ff6600;
    font-size: 12px;
    color: #ffaa00;
    line-height: 1.6;
    box-shadow: 0 -6px 25px rgba(255, 51, 0, 0.3);
}

/* ============================================================================
   LEGAL PAGE STYLES
   ============================================================================ */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ff6600;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff6600;
    text-shadow: 0 0 15px #ff3300, 0 0 30px #ff6600;
}

.legal-section {
    margin-bottom: 40px;
    color: #ffaa00;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ff6600;
    font-weight: 900;
    text-shadow: 0 0 12px #ff3300;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 25px 0 12px;
    color: #ffcc00;
    font-weight: 700;
    text-shadow: 0 0 10px #ffaa00;
}

.legal-section p {
    margin-bottom: 15px;
    color: #ffaa00;
    opacity: 0.95;
}

.legal-section ul {
    margin: 15px 0 15px 25px;
    color: #ffaa00;
}

.legal-section li {
    margin-bottom: 8px;
    color: #ffaa00;
}

.legal-section a {
    color: #ff6600;
    text-decoration: underline;
    font-weight: 700;
    text-shadow: 0 0 8px #ff3300;
}

.legal-section a:hover {
    color: #ffcc00;
    text-shadow: 0 0 12px #ffaa00;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 51, 0, 0.15), rgba(255, 102, 0, 0.1));
    border-left: 4px solid #ff6600;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.3);
}

.highlight-box p {
    color: #ffcc00;
    text-shadow: 0 0 8px #ffaa00;
}

.highlight-box strong {
    color: #ff6600;
    text-shadow: 0 0 10px #ff3300;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.value-card {
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.7), rgba(51, 0, 0, 0.5));
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #ff6600;
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.3);
}

.value-card h3 {
    margin: 0 0 10px 0;
    color: #ffcc00;
    font-size: 1.2rem;
    text-shadow: 0 0 10px #ffaa00;
}

.value-card p {
    margin: 0;
    color: #ffaa00;
    font-size: 0.95rem;
    opacity: 0.9;
}

.stats-box {
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.6), rgba(51, 0, 0, 0.5));
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
    border: 2px solid #ff9900;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.stats-box h2 {
    color: #ff6600;
    text-shadow: 0 0 12px #ff3300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    padding: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6600;
    display: block;
    text-shadow: 0 0 10px #ff3300;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffaa00;
    margin-top: 5px;
}

/* ============================================================================
   CONTACT FORM STYLES
   ============================================================================ */
.contact-form {
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.6), rgba(51, 0, 0, 0.5));
    padding: 40px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #ff6600;
    box-shadow: 0 0 20px rgba(255, 51, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffcc00;
    text-shadow: 0 0 8px #ffaa00;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ff6600;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    background: rgba(10, 0, 0, 0.8);
    color: #ffaa00;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
    color: #0a0000;
    padding: 14px 32px;
    border: 2px solid #ffcc00;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ff9900 0%, #ffcc00 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.6);
}

/* ============================================================================
   CONTACT INFO & FAQ STYLES
   ============================================================================ */
.contact-info {
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.5), rgba(51, 0, 0, 0.4));
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border: 2px solid #ff6600;
}

.contact-item {
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.4), rgba(51, 0, 0, 0.3));
    border-radius: 6px;
    border-left: 4px solid #ff9900;
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffcc00;
    text-shadow: 0 0 8px #ffaa00;
}

.contact-item p {
    color: #ffaa00;
    opacity: 0.9;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 5, 0, 0.5), rgba(51, 0, 0, 0.4));
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #ff9900;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

.faq-item h3 {
    margin: 0 0 10px 0;
    color: #ff6600;
    font-size: 1.1rem;
    text-shadow: 0 0 8px #ff3300;
}

.faq-item p {
    margin: 0;
    color: #ffaa00;
    opacity: 0.9;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #ff6600;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 8px #ff3300;
}

.back-link:hover {
    color: #ffcc00;
    text-shadow: 0 0 12px #ffaa00;
    text-decoration: underline;
}

/* ============================================================================
   RESPONSIVE DESIGN - TABLETS & MEDIUM DEVICES
   ============================================================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #1a0500 0%, #0a0000 100%);
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
        overflow-y: auto;
        border-left: 3px solid #ff6600;
        box-shadow: -5px 0 30px rgba(255, 51, 0, 0.6);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .primary-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    }

    .primary-nav a {
        display: block;
        padding: 18px 0;
        font-size: 18px;
        text-align: left;
        transition: all 0.3s ease;
    }

    .primary-nav a::after {
        display: none;
    }

    .primary-nav a:hover {
        padding-left: 15px;
        background: linear-gradient(90deg, rgba(255, 102, 0, 0.2), transparent);
    }

    .banner-section {
        padding: 50px 20px 45px;
        margin-top: 100px;
    }

    .banner-section h1 {
        font-size: 30px;
    }

    .banner-subtitle {
        font-size: 15px;
    }

    .heading-primary {
        font-size: 26px;
    }

    .banner-button {
        padding: 14px 36px;
        font-size: 16px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .information-panel {
        padding: 24px 20px;
    }

    .spotlight-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .spotlight-heading {
        font-size: 34px;
    }

    .spotlight-action {
        font-size: 20px;
        padding: 18px 36px;
    }

    .legal-page {
        padding: 120px 16px 40px;
    }

    .legal-section {
        margin-bottom: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - MOBILE DEVICES
   ============================================================================ */
@media (max-width: 480px) {
    .nav-menu {
        width: 250px;
        padding: 90px 20px 20px;
    }

    .primary-nav a {
        font-size: 16px;
        padding: 16px 0;
    }

    .banner-section h1 {
        font-size: 24px;
    }

    .content-section {
        padding: 35px 16px;
    }

    .features-grid {
        gap: 16px;
    }

    .spotlight-heading {
        font-size: 26px;
    }

    .spotlight-description {
        font-size: 15px;
    }

    .spotlight-action {
        font-size: 18px;
        padding: 16px 30px;
    }

    .highlights-panel {
        padding: 20px;
    }

    .highlights-panel h3 {
        font-size: 20px;
    }

    .features-list li {
        font-size: 16px;
    }

    .footer-resources {
        padding: 18px;
        margin: 26px 0 18px;
    }

    .footer-resources h3 {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .resources-container {
        gap: 12px;
    }

    .resource-link {
        min-width: 110px;
        padding: 14px 16px;
        gap: 8px;
    }

    .resource-icon {
        font-size: 22px;
    }

    .resource-label {
        font-size: 11px;
    }

    .age-marker .resource-icon {
        font-size: 26px;
    }

    .legal-page {
        padding: 120px 14px 40px;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.4rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        padding: 24px 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 12px 12px;
    }

    .submit-btn {
        width: 100%;
    }

    .contact-info {
        padding: 20px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}
