/* ================================================
   SECTION 1: BASE STYLES & VARIABLES
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One&display=swap');

@font-face {
    font-family: 'Astron';
    src: url('Atronstnclblk-VzKw.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000000;
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

body.light-mode .skip-link {
    background: #ffffff;
    color: #000000;
}

/* Focus visible styles for better keyboard navigation */
*:focus-visible {
    outline: 3px solid #6B2D8B;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid #6B2D8B;
    outline-offset: 2px;
}

body.light-mode *:focus-visible,
body.light-mode button:focus-visible,
body.light-mode a:focus-visible {
    outline: 3px solid #9B59B6;
    outline-offset: 2px;
}

.skip-link:focus-visible {
    outline: none;
}

:root {
    --bg-gradient-start: #000000;
    --bg-gradient-mid: #000000;
    --bg-gradient-end: #FFD700;
    --nav-bg: rgba(0, 0, 0, 0.85);
    --nav-border: #6B2D8B;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --hero-bg: radial-gradient(ellipse at center, rgba(107, 45, 139, 0.3) 0%, transparent 70%);
    --grid-color: rgba(107, 45, 139, 0.3);
    --particle-color: rgba(107, 45, 139, 0.8);
    --scanline-color: rgba(107, 45, 139, 0.8);
    --bubble-shadow: rgba(0, 0, 0, 0.5);
    --footer-bg: rgba(0, 0, 0, 0.95);
    --footer-text: #e0e0e0;
    --menu-overlay: rgba(0, 0, 0, 0.7);
    --hero-gradient-color: rgba(255, 215, 0, 0.8);
}

body.light-mode {
    --bg-gradient-start: #ffffff;
    --bg-gradient-mid: #ffffff;
    --bg-gradient-end: #ffffff;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-border: #FFD700;
    --text-primary: #1a1a1a;
    --text-secondary: #333333;
    --hero-bg: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    --grid-color: rgba(255, 215, 0, 0.4);
    --particle-color: rgba(255, 215, 0, 0.9);
    --scanline-color: rgba(255, 215, 0, 0.6);
    --bubble-shadow: rgba(0, 0, 0, 0.2);
    --footer-bg: rgba(255, 255, 255, 0.95);
    --footer-text: #333333;
    --menu-overlay: rgba(255, 255, 255, 0.8);
    --hero-gradient-color: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #000000;
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--text-primary);
    transition: background 0.2s ease, color 0.2s ease;
}

body.light-mode {
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
}

.theme-toggle {
    background: none;
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    color: var(--text-primary);
    padding: 8px;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--grid-color);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
}

.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

body.light-mode .sun-icon {
    display: block;
}

body.light-mode .moon-icon {
    display: none;
}

nav {
    background-color: var(--nav-bg);
    border-bottom: 3px solid var(--nav-border);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25));
}

body.light-mode .logo img {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.lang-toggle-container {
    position: relative;
}

.lang-toggle {
    background: none;
    border: 2px solid var(--text-primary);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border 0.3s ease;
    color: var(--text-primary);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 50px;
}

.lang-toggle:hover {
    transform: scale(1.05);
    background: var(--grid-color);
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-text {
    display: block;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--nav-bg);
    border: 2px solid var(--nav-border);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-dropdown button {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
    display: block;
}

.lang-dropdown button:hover {
    background: var(--grid-color);
    transform: translateX(5px);
}

.lang-dropdown button[data-lang] {
    position: relative;
}

.lang-dropdown::-webkit-scrollbar {
    width: 8px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: var(--grid-color);
    border-radius: 4px;
}

.lang-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--hero-gradient-color);
}

.social-icons {
    display: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 10px;
}

.social-icon img,
.social-icon svg {
    width: 30px;
    height: 30px;
padding: 1px;}

.social-icon:hover {
    background-color: rgba(107, 45, 139, 0.8);
    transform: translateY(-2px);
}


.mobile-footer {
    display: none;
}

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Bungee', cursive;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.2s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6B2D8B 0%, #FFD700 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 4px;
}

body.light-mode .nav-menu li a::before {
    background: linear-gradient(135deg, #9B59B6 0%, #6B2D8B 100%);
}

.nav-menu li a:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

body.light-mode .nav-menu li a:hover {
    color: #ffffff;
}

.nav-menu li a:hover::before {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    margin: 5px 0;
    transition: 0.3s;
}

body.light-mode .mobile-menu-toggle span {
    background-color: #FFD700;
}


@media (max-width: 768px) {
    nav {
        position: sticky;
    }

    .nav-container {
        gap: 1rem;
        flex-wrap: wrap;
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        z-index: 1001;
    }

    .logo {
        order: 1;
        z-index: 1001;
    }

    .nav-controls {
        order: 3;
        margin-left: 0;
        gap: 0.5rem;
    }

    .theme-toggle,
    .lang-toggle {
        width: 40px;
        height: 40px;
        padding: 0.4rem;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lang-toggle {
        font-size: 0.75rem;
    }

    .nav-menu {
        position: fixed;
        top: 152px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 150px);
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        transition: left 0.3s ease;
        border-right: 3px solid #9B59B6;
        z-index: 1000;
    }

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

    .nav-menu li {
        text-align: center;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 1rem;
        font-size: 1.1rem;
        color: #000000;
    }

    .nav-menu li a:hover {
        color: #6B2D8B;
    }

    body.light-mode .nav-menu {
        background: #ffffff;
        border-right: 3px solid #9B59B6;
    }

    body.light-mode .nav-menu li a {
        color: #000000;
    }

    body.light-mode .nav-menu li a:hover {
        color: #6B2D8B;
    }
    
    body:not(.light-mode) .nav-menu {
        background: #000000;
        border-right: 3px solid #9B59B6;
    }
    
    body:not(.light-mode) .nav-menu li a {
        color: #ffffff;
    }
    
    body:not(.light-mode) .nav-menu li a:hover {
        color: #9B59B6;
    }

    body:not(.light-mode) .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }



    .social-icons {
        position: fixed;
        top: 600px;
        left: -100%;
        width: 280px;
        background: rgba(15, 15, 25, 0.98);
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem;
        margin-left: 0;
        transition: left 0.3s ease;
        border-right: 3px solid #6B2D8B;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
    }

    .social-icons.active {
        left: 0;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        padding: 8px;
    }

    .social-icon img,
    .social-icon svg {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    
    .mobile-footer {
        position: fixed;
        top: 5860px;
        left: -100%;
        width: 280px;
        background: rgba(15, 15, 25, 0.98);
        padding: 1.5rem;
        text-align: center;
        transition: left 0.3s ease;
        border-right: 3px solid #6B2D8B;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
    }

    .mobile-footer.active {
        left: 0;
    }

    .mobile-footer p {
        color: rgba(255, 255, 255, 0.8);
        font-family: 'Raleway', sans-serif;
        font-size: 0.9rem;
        margin: 0;
        font-weight: 500;
    }

    
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--menu-overlay);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
}

main {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

.hero {
    position: relative;
    width: 100%;
    margin-bottom: 0;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/Image01.png') center center / cover no-repeat;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

body.light-mode .hero-background {
    opacity: 0.75;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

body.light-mode .hero-background::before {
    background: rgba(255, 255, 255, 0.5);
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 1) 100%);
    z-index: 2;
    transition: background 0.2s ease;
}

body.light-mode .hero-background::after {
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.7) 70%,
        rgba(255, 255, 255, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 1000px;

    padding: 4rem 2rem;
    transform: translateY(-10vh);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-family: 'Bungee', cursive;
    font-weight: 400;
    color: #6B2D8B;
    letter-spacing: 0.05em;
    text-shadow: -2px -2px 0 #FFD700, 2px -2px 0 #FFD700, -2px 2px 0 #FFD700, 2px 2px 0 #FFD700;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

body.light-mode .hero h1 {
    color: #FFD700;
    text-shadow: -2px -2px 0 #6B2D8B, 2px -2px 0 #6B2D8B, -2px 2px 0 #6B2D8B, 2px 2px 0 #6B2D8B;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.btn-explore {
    background-color: #FFD700;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-explore:hover {
    background-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.5), 0 6px 12px rgba(0, 0, 0, 0.4);
}

.btn-explore:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.btn-get-started {
    background-color: transparent;
    color: #ffffff;
    border: 3px solid #FFD700;
    padding: 0.85rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-get-started:hover {
    background-color: rgba(255, 215, 0, 0.2);
    border-color: #DAA520;
    transform: translateY(-2px);
}

.btn-get-started:active {
    transform: translateY(0);
}

.btn-get-started.btn-secondary {
    background-color: #FFD700;
    color: #000000;
    border: 3px solid #FFD700;
}

.btn-get-started.btn-secondary:hover {
    background-color: #E6BE00;
    border-color: #DAA520;
}

body.light-mode .btn-explore {
    background-color: #9B59B6;
    color: #000000;
    box-shadow: 0 8px 16px rgba(155, 89, 182, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.light-mode .btn-explore:hover {
    background-color: #8E44AD;
    box-shadow: 0 12px 24px rgba(155, 89, 182, 0.5), 0 6px 12px rgba(0, 0, 0, 0.3);
}

body.light-mode .btn-explore:active {
    box-shadow: 0 4px 8px rgba(155, 89, 182, 0.3);
}

body.light-mode .btn-get-started {
    background-color: transparent;
    color: #000000;
    border-color: #6B2D8B;
}

body.light-mode .btn-get-started:hover {
    background-color: rgba(107, 45, 139, 0.2);
    border-color: #9B59B6;
}

body.light-mode .btn-get-started.btn-secondary {
    background-color: #6B2D8B;
    color: #ffffff;
    border-color: #6B2D8B;
}

body.light-mode .btn-get-started.btn-secondary:hover {
    background-color: #5B2380;
    border-color: #5B2380;
}


.modern-content {
    padding: 6rem 2rem 8rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.modern-content::after {
    content: '';
    position: absolute;
    bottom: -4em;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(107, 45, 139, 0.2) 50%, rgba(107, 45, 139, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

body.light-mode .modern-content::after {
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 215, 0, 0.2) 50%, rgba(255, 215, 0, 0.5) 100%);
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.content-header {
    flex: 1.2;
    min-width: 550px;
}

.content-header h2 {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.content-header p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
    transition: color 0.3s ease;
}


.bubble-container {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1.5;
    min-width: 700px;
    height: 550px;
    border: none;
    border-radius: 20px;
    overflow: visible;
    background: transparent;
    margin: 2rem 0;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bubble:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                inset 0 0 25px rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.bubble-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.bubble-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* BIG main bubble - left side */
.bubble-1 {
    width: 500px;
    height: 500px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.bubble-1:hover {
    transform: translateY(-50%) scale(1.05);
}

/* Small bubble - top right, wrapping around big bubble */
.bubble-2 {
    width: 140px;
    height: 140px;
    left: 460px;
    top: -20px;
}

/* Small bubble - far right, wrapping around big bubble */
.bubble-3 {
    width: 140px;
    height: 140px;
    left: 580px;
    top: 50%;
    transform: translateY(-50%);
}

.bubble-3:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Small bubble - bottom right, wrapping around big bubble */
.bubble-4 {
    width: 140px;
    height: 140px;
    left: 460px;
    bottom: -20px;
}


@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(40px, 60px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-50px, -40px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 50px);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(60px, -30px);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-40px, 40px);
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, -45px);
    }
}

@keyframes float7 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-35px, 55px);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: calc(100vh - 70px);
    }

    .hero-content {
        padding: 2rem 1.5rem;
        transform: translateY(-5vh);
    }

    .hero h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-buttons {
        margin-top: 3rem;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-explore,
    .btn-get-started {
        width: 100%;
        max-width: 250px;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .modern-content {
        padding: 4rem 2rem 6rem 2rem;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .content-header {
        text-align: center;
    }
    
    .bubble-container {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 3rem auto 2rem auto;
        position: static;
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto auto;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
    }
    
    .bubble {
        position: static;
    }
    
    .bubble-1 {
        width: 340px;
        height: 340px;
        left: auto;
        top: auto;
        transform: none;
        grid-row: 1 / 4;
        grid-column: 1;
        justify-self: center;
        margin-right: 0.5rem;
    }
    
    .bubble-1:hover {
        transform: scale(1.05);
    }
    
    .bubble-2 {
        width: 130px;
        height: 130px;
        left: auto;
        top: auto;
        transform: none;
        right: auto;
        grid-row: 1;
        grid-column: 2;
    }
    
    .bubble-3 {
        width: 130px;
        height: 130px;
        left: auto;
        top: auto;
        transform: none;
        right: auto;
        grid-row: 2;
        grid-column: 2;
    }
    
    .bubble-3:hover {
        transform: scale(1.1);
    }
    
    .bubble-4 {
        width: 130px;
        height: 130px;
        left: auto;
        top: auto;
        transform: none;
        bottom: auto;
        right: auto;
        grid-row: 3;
        grid-column: 2;
    }
}

.site-footer {
    background: var(--footer-bg);
    border-top: 3px solid var(--nav-border);
    padding: 3rem 2rem 1rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Bungee', cursive;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--footer-text);
    text-decoration: none;
    font-family: 'Bungee', cursive;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-logo img {
    height: 150px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

body.light-mode .footer-logo img {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--grid-color);
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 10px;
}

.footer-icon img,
.footer-icon svg {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

body.light-mode .footer-icon img,
body.light-mode .footer-icon svg {
    filter: brightness(0);
}

.footer-icon img[src*="Reddit"],
.footer-icon img[src*="Linkedin"] {
    filter: none !important;
}

body.light-mode .footer-icon img[src*="Reddit"],
body.light-mode .footer-icon img[src*="Linkedin"] {
    filter: none !important;
}

.footer-icon:hover {
    background-color: rgba(107, 45, 139, 0.8);
    transform: translateY(-3px);
}

body.light-mode .footer-icon:hover {
    background-color: rgba(255, 215, 0, 0.8);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--grid-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--footer-text);
    font-family: 'Bungee', cursive;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
}


@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo img {
        height: 80px;
        margin: 0 auto 1rem auto;
        display: block;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-bottom {
        display: block;
    }
    
    .mobile-footer {
        display: none !important;
    }
}

/* ================================================
   SECTION 2: ABOUT PAGE STYLES
   ================================================ */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    border-bottom: 3px solid var(--nav-border);
    transition: background 0.4s ease, border-color 0.4s ease;
}

body.light-mode .about-hero {
    background: transparent;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/Image11.png') center center / cover no-repeat;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

body.light-mode .about-hero .hero-background {
    opacity: 0.75;
}

.about-hero .hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: background 0.2s ease;
}

body.light-mode .about-hero .hero-background::after {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.9) 100%);
}

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

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Bungee', cursive;
    font-weight: 900;
    color: #6B2D8B;
    letter-spacing: 0.05em;
    text-shadow: -2px -2px 0 #FFD700, 2px -2px 0 #FFD700, -2px 2px 0 #FFD700, 2px 2px 0 #FFD700;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.about-hero-content p {
    font-size: 1.3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #FFD700;
    letter-spacing: 0.03em;
    transition: color 0.4s ease;
}

body.light-mode .about-hero-content h1 {
    color: #FFD700;
    text-shadow: -2px -2px 0 #6B2D8B, 2px -2px 0 #6B2D8B, -2px 2px 0 #6B2D8B, 2px 2px 0 #6B2D8B;
}

body.light-mode .about-hero-content p {
    color: #6B2D8B;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem 2rem;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-section h2 {
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 1rem;
    transition: color 0.4s ease;
}

.about-section:focus-visible h2 {
    border-left: 4px solid #FFD700;
    padding-left: 1rem;
}

body.light-mode .about-section:focus-visible h2 {
    border-left: 4px solid #FFD700;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, transparent 100%);
    border-radius: 2px;
}

body.light-mode .about-section h2::after {
    background: linear-gradient(90deg, #FFD700 0%, transparent 100%);
}

.about-section p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.sell-form-section {
    background: transparent;
    padding: 6rem 2rem;
    margin-top: 4rem;
    transition: background 0.4s ease;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-container h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.sell-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.4s ease, border-color 0.4s ease;
}

body.light-mode .sell-form {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    padding: 1rem;
    border: 2px solid #FFD700;
    border-radius: 8px;
    background: var(--nav-bg);
    color: var(--text-primary);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    border-color: var(--nav-border);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

body.light-mode .form-group input:focus,
body.light-mode .form-group select:focus,
body.light-mode .form-group textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #FFD700;
}

body.light-mode .checkbox-group input[type="checkbox"] {
    accent-color: #FFD700;
}

body.light-mode .checkbox-group a {
    color: #6B2D8B !important;
}

.submit-btn {
    background-color: #FFD700;
    color: #ffffff;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    align-self: center;
    min-width: 250px;
}

.submit-btn:hover {
    background-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.5), 0 6px 12px rgba(0, 0, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

body.light-mode .submit-btn {
    background-color: #FFD700;
    color: #000000;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.light-mode .submit-btn:hover {
    background-color: #DAA520;
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.5), 0 6px 12px rgba(0, 0, 0, 0.3);
}

body.light-mode .submit-btn:active {
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        padding: 4rem 1.5rem;
    }

    .content-container {
        gap: 3rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .sell-form-section {
        padding: 4rem 1.5rem;
    }

    .form-container h2 {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .submit-btn {
        width: 100%;
        min-width: auto;
    }
}

.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

body.light-mode .modal {
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: var(--nav-bg);
    margin: 5% auto;
    padding: 3rem;
    border: 2px solid var(--nav-border);
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: background 0.4s ease, transform 0.3s ease, border-color 0.4s ease;
}

body.light-mode .modal-content {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    transition: color 0.4s ease;
}

.modal-body {
    margin-bottom: 2rem;
}

.modal-body p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #FFD700;
}

body.light-mode .modal-close:hover {
    color: #FFD700;
}

.modal-agree-btn {
    background-color: #FFD700;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4);
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
    margin: 0 auto;
    min-width: 200px;
}

.modal-agree-btn:hover {
    background-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.5);
}

body.light-mode .modal-agree-btn {
    background-color: #FFD700;
    color: #000000;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.4);
}

body.light-mode .modal-agree-btn:hover {
    background-color: #DAA520;
    box-shadow: 0 12px 24px rgba(255, 215, 0, 0.5);
}

.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--nav-border);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

body.light-mode .modal-content::-webkit-scrollbar-thumb:hover {
    background: #FFD700;
}

/* Values List Styling */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    transition: color 0.4s ease;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.4;
}

body.light-mode .values-list li::before {
    color: #6B2D8B;
}

.values-list li strong {
    color: #FFD700;
    font-weight: 700;
}

body.light-mode .values-list li strong {
    color: #6B2D8B;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, rgba(107, 45, 139, 0.15) 0%, rgba(107, 45, 139, 0.05) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(107, 45, 139, 0.2);
    margin-bottom: 0;
}

body.light-mode .about-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.2);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta h2 {
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: none;
}

body.light-mode .about-cta h2 {
    color: #000000;
    text-shadow: none;
}

.about-cta .cta-btn.primary {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #5B2380 100%);
    color: #ffffff;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.about-cta .cta-btn.primary:hover {
    background: linear-gradient(135deg, #E6BE00 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

body.light-mode .about-cta .cta-btn.primary {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
}

body.light-mode .about-cta .cta-btn.primary:hover {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
}

/* Remove footer margin on about page so CTA touches footer */
body:has(.about-cta) .site-footer {
    margin-top: 0;
}

/* ========================================
   ACCESSIBILITY PAGE STYLES
   ======================================== */

.accessibility-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem 2rem;
}

.accessibility-content .content-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.accessibility-content section {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.accessibility-content section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700 0%, rgba(255, 215, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accessibility-content section:hover::before {
    opacity: 1;
}

.accessibility-content section:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.2);
}

body.light-mode .accessibility-content section {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .accessibility-content section::before {
    background: linear-gradient(180deg, #6B2D8B 0%, rgba(107, 45, 139, 0.2) 100%);
}

body.light-mode .accessibility-content section:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(107, 45, 139, 0.2);
}

.accessibility-content h2 {
    font-family: 'Bungee', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 1rem;
    transition: color 0.4s ease;
}

.accessibility-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, transparent 100%);
    border-radius: 2px;
}

body.light-mode .accessibility-content h2::after {
    background: linear-gradient(90deg, #6B2D8B 0%, transparent 100%);
}

.accessibility-content h3 {
    font-family: 'Bungee', cursive;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.privacy-updated {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    border-radius: 0 8px 8px 0;
}

body.light-mode .privacy-updated {
    background: rgba(107, 45, 139, 0.1);
    border-left-color: #6B2D8B;
}

.accessibility-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.accessibility-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.accessibility-content li {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: color 0.4s ease;
}

.accessibility-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1rem;
}

body.light-mode .accessibility-content li::before {
    color: #6B2D8B;
}

.accessibility-content hr {
    margin: 4rem 0;
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
}

body.light-mode .accessibility-content hr {
    background: linear-gradient(90deg, transparent 0%, rgba(107, 45, 139, 0.3) 50%, transparent 100%);
}

/* Accessibility Form - Modern Design */
.accessibility-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.accessibility-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
}

/* Remove hover effects from form section */
.accessibility-form section {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.accessibility-form section::before {
    display: none;
}

.accessibility-form section:hover {
    background: transparent;
    transform: none;
    border-color: transparent;
}

body.light-mode .accessibility-form {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.light-mode .accessibility-form::before {
    background: linear-gradient(90deg, #6B2D8B, #9B4DCA, #6B2D8B);
}

.accessibility-form section h2 {
    font-family: 'Bungee', cursive;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.accessibility-form section h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.accessibility-form section > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.accessibility-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.accessibility-form input,
.accessibility-form select,
.accessibility-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.accessibility-form input:focus,
.accessibility-form select:focus,
.accessibility-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

body.light-mode .accessibility-form input,
body.light-mode .accessibility-form select,
body.light-mode .accessibility-form textarea {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
}

body.light-mode .accessibility-form input:focus,
body.light-mode .accessibility-form select:focus,
body.light-mode .accessibility-form textarea:focus {
    border-color: #6B2D8B;
    background: rgba(107, 45, 139, 0.05);
    box-shadow: 0 0 20px rgba(107, 45, 139, 0.15);
}

.accessibility-form input::placeholder,
.accessibility-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

body.light-mode .accessibility-form input::placeholder,
body.light-mode .accessibility-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.accessibility-form textarea {
    resize: vertical;
    min-height: 140px;
}

.accessibility-form button {
    width: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    margin-top: 1rem;
}

.accessibility-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.accessibility-form button:active {
    transform: translateY(-1px);
}

body.light-mode .accessibility-form button {
    background: linear-gradient(135deg, #6B2D8B 0%, #9B4DCA 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(107, 45, 139, 0.3);
}

body.light-mode .accessibility-form button:hover {
    box-shadow: 0 8px 30px rgba(107, 45, 139, 0.4);
    background: linear-gradient(135deg, #9B4DCA 0%, #6B2D8B 100%);
}

.accessibility-form .form-errors {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    list-style: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.accessibility-form .form-success {
    background: linear-gradient(135deg, #44bb44 0%, #228822 100%);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-align: center;
    animation: successPulse 0.5s ease;
}

@keyframes successPulse {
    0% { transform: scale(0.95); opacity: 0; }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

/* Accessibility Page Responsive */
@media (max-width: 768px) {
    .accessibility-content {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }
    
    .accessibility-content .content-container {
        gap: 2rem;
    }
    
    .accessibility-content section {
        padding: 2rem 1.5rem;
    }
    
    .accessibility-content section:hover {
        transform: none;
    }
    
    .accessibility-content h2 {
        font-size: 1.4rem;
    }
    
    .accessibility-content p,
    .accessibility-content li {
        font-size: 1rem;
    }
    
    .accessibility-form {
        padding: 2rem 1.5rem;
    }
    
    .accessibility-form section h2 {
        font-size: 1.5rem;
    }
}

/* ================================================
   SECTION 3: SERVICES PAGE STYLES
   ================================================ */

.services-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    border-bottom: 3px solid var(--nav-border);
    transition: background 0.4s ease, border-color 0.4s ease;
}

body.light-mode .services-hero {
    background: transparent;
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/Image12.png') center center / cover no-repeat;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

body.light-mode .services-hero .hero-background {
    opacity: 0.75;
}

.services-hero .hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: background 0.2s ease;
}

body.light-mode .services-hero .hero-background::after {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.9) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 900px;
    padding: 4rem 2rem;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Bungee', cursive;
    font-weight: 900;
    color: #6B2D8B;
    letter-spacing: 0.05em;
    text-shadow: -2px -2px 0 #FFD700, 2px -2px 0 #FFD700, -2px 2px 0 #FFD700, 2px 2px 0 #FFD700;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.services-hero-content p {
    font-size: 1.2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #FFD700;
    letter-spacing: 0.03em;
    line-height: 1.8;
    transition: color 0.4s ease;
}

body.light-mode .services-hero-content h1 {
    color: #FFD700;
    text-shadow: -2px -2px 0 #6B2D8B, 2px -2px 0 #6B2D8B, -2px 2px 0 #6B2D8B, 2px 2px 0 #6B2D8B;
}

body.light-mode .services-hero-content p {
    color: #6B2D8B;
}

/* Full-Screen Services Layout */
.services-fullscreen {
    width: 100%;
}

/* Each service screen takes full viewport */
.service-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-align: start;
}

body.light-mode .service-screen {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.service-screen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    align-items: center;
    padding: 2rem;
}

/* Left side - Text content */
.service-text-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 2rem;
}

.service-number {
    font-family: 'Bungee', cursive;
    font-size: 5rem;
    color: rgba(255, 215, 0, 0.2);
    line-height: 1;
    margin-bottom: -1rem;
}

body.light-mode .service-number {
    color: rgba(107, 45, 139, 0.15);
}

.service-text-side .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #6B2D8B 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.service-text-side .service-icon svg {
    fill: #ffffff;
    width: 40px;
    height: 40px;
}

.service-text-side h2 {
    font-family: 'Bungee', cursive;
    font-size: 3rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(107, 45, 139, 0.5);
}

body.light-mode .service-text-side h2 {
    color: #1a1a2e;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.service-text-side .service-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

body.light-mode .service-text-side .service-description {
    color: rgba(0, 0, 0, 0.8);
}

.service-text-side .service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-text-side .service-features li {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #FFD700;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    list-style-type: none;
}

.service-text-side .service-features li::before {
    content: none;
}

.service-text-side .service-features li::marker {
    content: none;
}

.service-text-side .service-features li:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(10px);
}

body.light-mode .service-text-side .service-features li {
    color: #6B2D8B;
    background: rgba(107, 45, 139, 0.08);
    border-left-color: #6B2D8B;
}

body.light-mode .service-text-side .service-features li:hover {
    background: rgba(107, 45, 139, 0.15);
}

/* Right side - Image */
.service-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
}

.service-image-side img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image-side img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(107, 45, 139, 0.4);
}

body.light-mode .service-image-side img:hover {
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-placeholder span {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

body.light-mode .image-placeholder {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(107, 45, 139, 0.3);
}

body.light-mode .image-placeholder span {
    color: rgba(0, 0, 0, 0.2);
}

/* Scroll arrow */
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounceArrow 2s infinite;
    text-decoration: none;
}

.scroll-arrow:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: translateX(-50%) scale(1.1);
}

.scroll-arrow svg {
    fill: #FFD700;
    transition: fill 0.3s ease;
}

body.light-mode .scroll-arrow {
    background: rgba(107, 45, 139, 0.1);
    border-color: rgba(107, 45, 139, 0.3);
}

body.light-mode .scroll-arrow:hover {
    background: rgba(107, 45, 139, 0.2);
    border-color: #6B2D8B;
}

body.light-mode .scroll-arrow svg {
    fill: #6B2D8B;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(10px);
    }
    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* Highlight section (Asset Acquisition) */
.service-screen-highlight {
    background: linear-gradient(135deg, rgba(107, 45, 139, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

body.light-mode .service-screen-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(107, 45, 139, 0.05) 100%);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .service-screen-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-text-side {
        padding-right: 0;
        order: 1;
    }
    
    .service-image-side {
        order: 2;
        min-height: 300px;
    }
    
    .image-placeholder {
        min-height: 300px;
    }
    
    .service-text-side h2 {
        font-size: 2.2rem;
    }
    
    .service-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .service-screen {
        min-height: auto;
        padding: 4rem 1rem;
    }
    
    .service-text-side h2 {
        font-size: 1.8rem;
    }
    
    .service-text-side .service-description {
        font-size: 1.1rem;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .scroll-arrow {
        width: 50px;
        height: 50px;
        bottom: 1rem;
    }
    
    .scroll-arrow svg {
        width: 36px;
        height: 36px;
    }
}

/* Legacy styles - keep for backwards compatibility */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

.service-row.full-width {
    grid-template-columns: 1fr;
}

.service-row.full-width .service-card {
    max-width: 600px;
    margin: 0 auto;
}

/* Service Image */
.service-image {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--nav-border);
    transition: all 0.3s ease;
    max-height: 280px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.light-mode .service-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .service-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-card.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

body.light-mode .service-card.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #5B2380 100%);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

body.light-mode .service-icon {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.service-icon svg {
    color: #ffffff;
    fill: #ffffff;
    width: 28px;
    height: 28px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-family: 'Bungee', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.service-description {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    transition: color 0.4s ease;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
}

body.light-mode .service-features li::before {
    background: #FFD700;
}

/* Image Breaks */
.services-image-break {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.services-image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.5s ease;
}

.services-image-break:hover img {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Call to Action */
.services-cta {
    background: linear-gradient(135deg, rgba(107, 45, 139, 0.15) 0%, rgba(107, 45, 139, 0.05) 100%);
    padding: 6rem 2rem 0 2rem;
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid rgba(107, 45, 139, 0.2);
}

body:has(.services-cta) .site-footer {
    margin-top: 0;
}

body.light-mode .services-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.2);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 6rem;
}

.cta-container h2 {
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.cta-container p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    transition: color 0.4s ease;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #FFD700 0%, #5B2380 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #E6BE00 0%, #FFD700 100%);
}

body.light-mode .cta-button {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

body.light-mode .cta-button:hover {
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-content p {
        font-size: 1rem;
    }
    
    .service-block-inner {
        min-height: 350px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h2 {
        font-size: 1.4rem;
    }
    
    .service-content .service-description {
        font-size: 0.9rem;
    }
    
    .service-content .service-features li {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .cta-container h2 {
        font-size: 1.8rem;
    }
    
    .cta-container p {
        font-size: 1rem;
    }
}

/* ================================================
   SECTION 4: PORTFOLIO PAGE STYLES
   ================================================ */

.portfolio-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    border-bottom: 3px solid var(--nav-border);
    transition: background 0.4s ease, border-color 0.4s ease;
}

body.light-mode .portfolio-hero {
    background: transparent;
}

.portfolio-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/Image13.png') center center / cover no-repeat;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

body.light-mode .portfolio-hero .hero-background {
    opacity: 0.75;
}

.portfolio-hero .hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: background 0.2s ease;
}

body.light-mode .portfolio-hero .hero-background::after {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.9) 100%);
}

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

.portfolio-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Bungee', cursive;
    font-weight: 900;
    color: #6B2D8B;
    letter-spacing: 0.05em;
    text-shadow: -2px -2px 0 #FFD700, 2px -2px 0 #FFD700, -2px 2px 0 #FFD700, 2px 2px 0 #FFD700;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.portfolio-hero-content p {
    font-size: 1.3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #FFD700;
    letter-spacing: 0.03em;
    transition: color 0.4s ease;
}

body.light-mode .portfolio-hero-content h1 {
    color: #FFD700;
    text-shadow: -2px -2px 0 #6B2D8B, 2px -2px 0 #6B2D8B, -2px 2px 0 #6B2D8B, 2px 2px 0 #6B2D8B;
}

body.light-mode .portfolio-hero-content p {
    color: #6B2D8B;
}

.portfolio-filters {
    background: transparent;
    padding: 4rem 2rem 4rem 2rem;
    position: relative;
    z-index: 100;
    transition: background 0.4s ease;
}

.portfolio-filters .filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 2px solid #FFD700;
    color: var(--text-primary);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}

.filter-btn:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.filter-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.filter-btn.active {
    background: #FFD700;
    color: #ffffff;
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.portfolio-grid {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.no-results-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.no-results-message p {
    margin: 0;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--nav-bg);
    border: 2px solid var(--nav-border);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--hero-gradient-color);
    box-shadow: 0 15px 40px rgba(107, 45, 139, 0.4);
}

body.light-mode .portfolio-item:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(107, 45, 139, 0.95) 0%, rgba(107, 45, 139, 0.8) 60%, transparent 100%);
    padding: 2rem;
    transform: translateY(60%);
    transition: transform 0.4s ease, background 0.4s ease;
}

body.light-mode .portfolio-overlay {
    background: linear-gradient(to top, rgba(255, 215, 0, 0.95) 0%, rgba(255, 215, 0, 0.8) 60%, transparent 100%);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    transition: color 0.4s ease;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding: 0.4rem 0.8rem;
    background: rgba(107, 45, 139, 0.8);
    color: #ffffff;
    font-size: 0.8rem;
    font-family: 'Raleway', sans-serif;
    border-radius: 4px;
    border: 1px solid var(--hero-gradient-color);
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

/* New portfolio content section */
.portfolio-content {
    padding: 2rem;
    background: var(--nav-bg);
}

.portfolio-content h3 {
    font-family: 'Bungee', cursive;
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.portfolio-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.portfolio-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(107, 45, 139, 0.3);
    border: 2px solid #6B2D8B;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.portfolio-socials a:hover {
    background: #6B2D8B;
    border-color: #FFD700;
    transform: translateY(-3px);
}

body.light-mode .portfolio-socials a {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

body.light-mode .portfolio-socials a:hover {
    background: #FFD700;
    color: #000000;
}

.portfolio-link {
    display: inline-block;
    color: #FFD700;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #FFD700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #FFD700;
    color: #000000;
}

.portfolio-item.hide {
    display: none;
}

.portfolio-item.show {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.portfolio-cta {
    background: linear-gradient(135deg, rgba(107, 45, 139, 0.15) 0%, rgba(107, 45, 139, 0.05) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(107, 45, 139, 0.2);
    margin-bottom: 0;
}

/* Remove footer margin on portfolio page so CTA touches footer */
body:has(.portfolio-cta) .site-footer {
    margin-top: 0;
}

body.light-mode .portfolio-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.2);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #FFD700 0%, #5B2380 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #E6BE00 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

body.light-mode .cta-btn.primary {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

body.light-mode .cta-btn.primary:hover {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--nav-border);
}

.cta-btn.secondary:hover {
    border-color: var(--hero-gradient-color);
    background: rgba(107, 45, 139, 0.1);
    transform: translateY(-3px);
}

body.light-mode .portfolio-hero {
    background: transparent;
}

body.light-mode .portfolio-overlay {
    background: linear-gradient(to top, rgba(255, 215, 0, 0.95) 0%, rgba(255, 215, 0, 0.8) 60%, transparent 100%);
}

body.light-mode .portfolio-overlay h3 {
    color: #000000;
}

body.light-mode .portfolio-overlay p {
    color: rgba(0, 0, 0, 0.8);
}

body.light-mode .portfolio-tags span {
    background: rgba(107, 45, 139, 0.15);
    color: #6B2D8B;
}

body.light-mode .portfolio-filters {
    background: transparent;
}

body.light-mode .filter-btn {
    border-color: #FFD700;
}

body.light-mode .filter-btn:hover {
    border-color: #FFD700;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

body.light-mode .filter-btn:active {
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

body.light-mode .filter-btn.active {
    background: #FFD700;
    color: #000000;
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
    .portfolio-hero-content h1 {
        font-size: 2.8rem;
    }

    .portfolio-hero-content p {
        font-size: 1.2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .portfolio-image {
        height: 300px;
    }

    .filter-container {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .portfolio-hero {
        min-height: 40vh;
    }

    .portfolio-hero-content h1 {
        font-size: 1.5rem;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }
}

/* ================================================
   SECTION 5: NEWS PAGE STYLES
   ================================================ */

.news-hero {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
    border-bottom: 3px solid var(--nav-border);
    transition: background 0.4s ease, border-color 0.4s ease;
}

body.light-mode .news-hero {
    background: transparent;
}

.news-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../images/Image14.png') center center / cover no-repeat;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

body.light-mode .news-hero .hero-background {
    opacity: 0.75;
}

.news-hero .hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: background 0.2s ease;
}

body.light-mode .news-hero .hero-background::after {
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.9) 100%);
}

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

.news-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Bungee', cursive;
    font-weight: 900;
    color: #6B2D8B;
    letter-spacing: 0.05em;
    text-shadow: -2px -2px 0 #FFD700, 2px -2px 0 #FFD700, -2px 2px 0 #FFD700, 2px 2px 0 #FFD700;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.news-hero-content p {
    font-size: 1.3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #FFD700;
    letter-spacing: 0.03em;
    transition: color 0.4s ease;
}

body.light-mode .news-hero-content h1 {
    color: #FFD700;
    text-shadow: -2px -2px 0 #6B2D8B, 2px -2px 0 #6B2D8B, -2px 2px 0 #6B2D8B, 2px 2px 0 #6B2D8B;
}

body.light-mode .news-hero-content p {
    color: #6B2D8B;
}

.news-filters {
    background: transparent;
    padding: 4rem 2rem 4rem 2rem;
    position: relative;
    z-index: 100;
    transition: background 0.4s ease;
}

.news-filters .filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.news-filter-btn {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid #FFD700;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}

.news-filter-btn:hover {
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

.news-filter-btn.active {
    background: #FFD700;
    color: #ffffff;
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

body.light-mode .news-filter-btn {
    border-color: #FFD700;
}

body.light-mode .news-filter-btn:hover {
    border-color: #FFD700;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

body.light-mode .news-filter-btn.active {
    background: #FFD700;
    color: #1a1a2e;
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.news-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

.news-card {
    background: var(--nav-bg);
    border: 2px solid var(--nav-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 45, 139, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.3),
                0 0 60px rgba(107, 45, 139, 0.2);
}

body.light-mode .news-card:hover {
    border-color: #6B2D8B;
    box-shadow: 0 16px 40px rgba(25, 118, 210, 0.3),
                0 0 60px rgba(155, 89, 182, 0.2);
}

.news-card.featured {
    grid-column: span 2;
}

.news-card.featured .news-card-image {
    height: 400px;
}

.news-card.featured h2 {
    font-size: 2rem;
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #000000;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.featured-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.release-badge {
    background: linear-gradient(135deg, #6B2D8B 0%, #FFD700 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.event-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

body.light-mode .release-badge {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
}

.news-card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.news-category {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(107, 45, 139, 0.2);
    color: var(--text-primary);
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 12px;
    border: 1px solid var(--nav-border);
    transition: all 0.4s ease;
}

body.light-mode .news-category {
    background: rgba(255, 215, 0, 0.3);
}

.news-date {
    color: var(--text-secondary);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.7;
    transition: color 0.4s ease;
}

.news-card-content h2,
.news-card-content h3 {
    font-family: 'Bungee', cursive;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.news-card-content h2 {
    font-size: 1.8rem;
}

.news-card-content h3 {
    font-size: 1.3rem;
}

.news-card:hover h2,
.news-card:hover h3 {
    color: #FFD700;
}

body.light-mode .news-card:hover h2,
body.light-mode .news-card:hover h3 {
    color: #6B2D8B;
}

.news-card-content p {
    color: var(--text-secondary);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
}

.news-read-more::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6B2D8B, #FFD700);
    transition: width 0.3s ease;
}

.news-read-more:hover::after {
    width: 100%;
}

.news-read-more:hover {
    color: #FFD700;
    transform: translateX(5px);
}

body.light-mode .news-read-more::after {
    background: linear-gradient(90deg, #FFD700, #DAA520);
}

body.light-mode .news-read-more:hover {
    color: #DAA520;
}

.news-no-results {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--nav-bg);
    border: 2px solid var(--nav-border);
    border-radius: 16px;
}

.news-no-results p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-card.featured {
        grid-column: span 1;
    }

    .news-card.featured .news-card-image {
        height: 250px;
    }

    .news-card.featured h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .news-hero-content h1 {
        font-size: 3rem;
    }

    .news-hero-content p {
        font-size: 1.2rem;
    }

    .news-filters {
        top: 140px;
        padding: 1.5rem 1rem;
    }

    .news-filter-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }

    .news-card-content {
        padding: 1.5rem;
    }

    .news-card-content h2 {
        font-size: 1.5rem;
    }

    .news-card-content h3 {
        font-size: 1.2rem;
    }

    .news-card-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news-hero-content {
        padding: 3rem 1.5rem;
    }

    .news-hero-content h1 {
        font-size: 2.5rem;
    }

    .news-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .news-card-image {
        height: 200px;
    }

    .news-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ==============================================
   Article Page Styles (news-launch, news-tarrasque)
   ============================================== */

.article-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #FFD700;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #FFD700;
    color: #000000;
}

.article-image {
    width: 100%;
    max-width: 700px;
    margin: 3rem auto 0rem;
    display: block;
    border-radius: 16px;
    padding: 40px;
    border: 2px solid var(--nav-border);
}

.article-image.logo-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.article-image.tarrasque-bg {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
}

.article-container article {
    margin: 0;
    padding: 0;
}

.article-header {
    text-align: center;
    margin: 0rem 0 3rem 0;
    padding: 0 0 2rem 0;
    border-bottom: 2px solid var(--nav-border);
}

.article-title {
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
    line-height: 1.3;
    margin: 3rem 0 0rem 0;
    padding: 0;
    color: #6B2D8B;
    text-shadow: -2px -2px 0 #FFD700, 2px -2px 0 #FFD700, -2px 2px 0 #FFD700, 2px 2px 0 #FFD700;
}

body.light-mode .article-title {
    color: #FFD700;
    text-shadow: -2px -2px 0 #6B2D8B, 2px -2px 0 #6B2D8B, -2px 2px 0 #6B2D8B, 2px 2px 0 #6B2D8B;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content blockquote {
    background: rgba(107, 45, 139, 0.1);
    border-left: 4px solid #FFD700;
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.1rem;
}

.article-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--nav-bg);
    border: 2px solid var(--nav-border);
    border-radius: 16px;
}

.article-section h3 {
    font-family: 'Bungee', cursive;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.article-section p {
    margin-bottom: 0;
}

.press-contact-box {
    background: linear-gradient(135deg, #6B2D8B 0%, #4a1d6b 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(107, 45, 139, 0.3);
}

.press-contact-box h4 {
    font-family: 'Bungee', cursive;
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.press-contact-box p {
    margin: 0.75rem 0;
    color: #ffffff;
    font-size: 1.1rem;
}

.press-contact-box a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.press-contact-box a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-container {
        padding: 2rem 1.5rem;
    }
    
    .article-content blockquote {
        padding: 1rem 1.5rem;
    }
}

/* ================================================
   SECTION 6: JOIN US / CONTACT PAGE STYLES
   ================================================ */

.contact-form-page {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-container {
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid var(--nav-border);
}

body.light-mode .contact-form-container {
    background: rgba(0, 0, 0, 0.05);
}

.contact-form-container h1 {
    font-family: 'Bungee', cursive;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-form-container .form-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form label .required {
    color: #e53935;
}

body.light-mode .contact-form label .required {
    color: #6B2D8B;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--nav-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

body.light-mode .contact-form input[type="text"],
body.light-mode .contact-form input[type="email"],
body.light-mode .contact-form input[type="tel"],
body.light-mode .contact-form select,
body.light-mode .contact-form textarea {
    background: rgba(255, 255, 255, 0.8);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}

body.light-mode .contact-form input:focus,
body.light-mode .contact-form select:focus,
body.light-mode .contact-form textarea:focus {
    border-color: #6B2D8B;
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.2);
}

.contact-form select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

/* Hide IE/Edge default arrow */
.contact-form select::-ms-expand {
    display: none;
}

body.light-mode .contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333333' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #e53935;
    cursor: pointer;
}

body.light-mode .checkbox-item input[type="checkbox"] {
    accent-color: #6B2D8B;
}

.checkbox-item label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
}

.contact-form .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #FFD700;
    color: #000000;
    border: 2px solid #6B2D8B;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.contact-form .submit-btn:hover {
    background: #E6BE00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

body.light-mode .contact-form .submit-btn {
    background: #6B2D8B;
    color: #ffffff;
    border-color: #FFD700;
}

body.light-mode .contact-form .submit-btn:hover {
    background: #5B2380;
    box-shadow: 0 8px 20px rgba(107, 45, 139, 0.4);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .contact-form-page {
        padding: 100px 1rem 2rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container h1 {
        font-size: 1.8rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer fixes for joinus page */
.contact-form-page + .site-footer,
main + .site-footer {
    margin-top: 0;
}
