        :root {
            --gold: #eeab00;
            --gold-light: #ffd04d;
            --gold-glow: rgba(238, 171, 0, 0.5);
            --navy: #001E34;
            --navy-light: #0a3050;
            --black: #050a0f;
            --white: #ffffff;
            --gray: #94a3b8;
            --gray-dark: #1e293b;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Exo 2', sans-serif;
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Visited link color */
        a:visited {
            color: var(--gold);
        }

        /* Diagonal clip paths */
        .clip-diagonal { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%); }
        .clip-diagonal-reverse { clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%); }

        /* Header */
        header {
            background: linear-gradient(90deg, var(--black) 0%, var(--navy) 100%);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--gold);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: inherit;
            transition: opacity 0.3s ease;
        }

        .logo-container:hover {
            opacity: 0.8;
        }
        .logo-wbe { height: 40px; width: auto; }
        .custom-logo-link img { height: 40px; width: auto; }
        .logo-text {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Hamburger Menu Button - Hidden on Desktop */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--gold);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Desktop Navigation */
        .main-nav ul { display: flex; list-style: none; gap: 2rem; }
        .main-nav a {
            color: var(--white);
            text-decoration: none;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.5rem 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        .main-nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }
        .main-nav a:hover { color: var(--gold); }
        .main-nav a:hover::before { transform: scaleX(1); transform-origin: left; }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--black);
            position: relative;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 6rem;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, var(--navy) 0%, transparent 50%),
                linear-gradient(-45deg, rgba(238, 171, 0, 0.1) 0%, transparent 50%);
        }

        .hero-lines {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 50px,
                rgba(238, 171, 0, 0.03) 50px,
                rgba(238, 171, 0, 0.03) 51px
            );
        }

        .hero-glow {
            position: absolute;
            top: 50%;
            right: 20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
            transform: translateY(-50%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
            50% { opacity: 0.5; transform: translateY(-50%) scale(1.1); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content { position: relative; }

        .hero-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--black);
            padding: 0.5rem 1.5rem;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            transform: skewX(-10deg);
        }
        .hero-badge span { display: inline-block; transform: skewX(10deg); }

        .hero-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            line-height: 0.95;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero-title .line1 { color: var(--white); display: block; }
        .hero-title .line2 {
            color: var(--gold);
            display: block;
            font-size: 6rem;
            text-shadow: 0 0 40px var(--gold-glow);
        }

        .hero-meta {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 2rem;
            max-width: 450px;
        }

        .hero-meta strong { color: var(--gold); }

        .hero-callout {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.95rem;
            color: var(--white);
            background: rgba(238, 171, 0, 0.15);
            border-left: 3px solid var(--gold);
            padding: 0.75rem 1rem;
            margin-bottom: 2rem;
            max-width: 450px;
            letter-spacing: 0.5px;
        }

        .hero-callout strong { color: var(--gold); }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .stat {
            text-align: center;
            padding: 1rem 1.5rem;
            background: rgba(238, 171, 0, 0.1);
            border-left: 3px solid var(--gold);
        }

        .stat-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.25rem;
        }

        .stat-clickable {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .stat-clickable:hover {
            background: rgba(238, 171, 0, 0.2);
            transform: translateY(-2px);
        }

        .stat-clickable .stat-label::after {
            content: ' ↗';
            font-size: 0.65rem;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-logo {
            max-width: 500px;
            width: 100%;
            height: auto;
            object-fit: contain;
            object-position: center;
            filter: drop-shadow(0 0 60px var(--gold-glow));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .btn-primary {
            display: inline-block;
            background: var(--gold);
            color: var(--black);
            padding: 1rem 2.5rem;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transform: skewX(-10deg);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-primary:visited {
            color: var(--black);
        }
        .btn-primary span { display: inline-block; transform: skewX(10deg); }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }
        .btn-primary:hover { box-shadow: 0 0 30px var(--gold-glow); }
        .btn-primary:hover::before { left: 100%; }

        /* Countdown */
        .countdown-section {
            background: var(--navy);
            padding: 3rem 2rem;
            position: relative;
            margin-top: -60px;
            clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
        }

        .countdown-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            padding-top: 2rem;
        }

        .countdown-label {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .countdown { display: flex; gap: 1rem; }

        .countdown-item {
            background: var(--black);
            padding: 1.5rem 1.25rem;
            min-width: 90px;
            text-align: center;
            border: 1px solid var(--gold);
            position: relative;
        }

        .countdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
        }

        .countdown-number {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
        }

        .countdown-unit {
            font-size: 0.7rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 0.5rem;
        }

        /* Section styles */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-eyebrow {
            display: inline-block;
            background: var(--gold);
            color: var(--black);
            padding: 0.4rem 1rem;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transform: skewX(-10deg);
            margin-bottom: 1rem;
        }
        .section-eyebrow span { display: inline-block; transform: skewX(10deg); }

        .section-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title span { color: var(--gold); }

        /* Overview Section */
        .event-overview {
            padding: 7rem 2rem;
            background: linear-gradient(180deg, var(--black) 0%, var(--navy) 100%);
            position: relative;
        }

        .overview-container { max-width: 1200px; margin: 0 auto; }

        .overview-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .overview-card {
            background: linear-gradient(135deg, var(--navy) 0%, var(--gray-dark) 100%);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .overview-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--gold);
            transition: height 0.3s ease;
        }

        .overview-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(238, 171, 0, 0.2);
        }

        .overview-card:hover::before { height: 100%; }

        .overview-icon {
            width: 50px;
            height: 50px;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transform: skewX(-10deg);
        }

        .overview-icon svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: var(--black);
            stroke-width: 2;
            transform: skewX(10deg);
        }

        .overview-card h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .overview-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }
        .overview-card .highlight { color: var(--gold); font-weight: 600; }

        /* CTA Section */
        .cta-section {
            padding: 7rem 2rem;
            background: linear-gradient(180deg, var(--navy) 0%, var(--black) 100%);
            position: relative;
        }

        .cta-container { max-width: 1200px; margin: 0 auto; }

        .cta-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .cta-card {
            background: var(--gray-dark);
            padding: 2.5rem 1.5rem;
            text-align: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .cta-card:hover {
            background: var(--navy);
            border-color: var(--gold);
        }

        .cta-card:hover::before { transform: scaleX(1); }

        .cta-icon {
            width: 70px;
            height: 70px;
            background: transparent;
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: background 0.3s ease;
        }

        .cta-icon svg {
            width: 30px;
            height: 30px;
            fill: var(--gold);
            stroke: none;
            transition: fill 0.3s ease;
        }

        .cta-card:hover .cta-icon {
            background: var(--gold);
        }

        .cta-card:hover .cta-icon svg {
            fill: var(--black);
            stroke: none;
        }

        .cta-card h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .cta-card p {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .cta-link {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Leaderboard Section */
        .leaderboard-section {
            padding: 7rem 2rem;
            background: linear-gradient(180deg, var(--navy) 0%, var(--black) 100%);
            position: relative;
        }

        .leaderboard-container { max-width: 1200px; margin: 0 auto; }

        /* League Toggle Buttons */
        .league-toggle {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .league-toggle-btn {
            padding: 0.875rem 2rem;
            background: var(--gray-dark);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .league-toggle-btn:hover {
            background: rgba(238, 171, 0, 0.1);
            border-color: var(--gold);
            color: var(--gold);
        }

        .league-toggle-btn.active {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
        }

        .league-toggle-btn.active:hover {
            background: var(--gold-light);
        }

        .leaderboard-table-wrapper {
            margin-top: 1.5rem;
            overflow-x: auto;
            background: var(--gray-dark);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 4px;
        }

        .leaderboard-table {
            width: 100%;
            table-layout: fixed;
            border-collapse: collapse;
            font-family: 'Rajdhani', sans-serif;
        }

        .leaderboard-table thead {
            background: var(--black);
        }

        /* Points Standings page - navy table header */
        .points-standings-page .leaderboard-table thead {
            background: var(--navy);
        }

        .leaderboard-table thead th {
            padding: 1.25rem 1rem;
            text-align: left;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-bottom: 2px solid var(--gold);
        }

        .leaderboard-table thead th.rank-col,
        .leaderboard-table thead th.weight-col,
        .leaderboard-table thead th.behind-col {
            text-align: center;
        }

        .leaderboard-table tbody tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.3s ease;
        }

        .leaderboard-table tbody tr:hover {
            background: rgba(255, 215, 0, 0.05);
        }

        .leaderboard-table tbody tr.leader-row {
            background: rgba(255, 215, 0, 0.1);
        }

        .leaderboard-table tbody tr.leader-row:hover {
            background: rgba(255, 215, 0, 0.15);
        }

        .leaderboard-table tbody td {
            padding: 1.25rem 1rem;
            font-size: 1rem;
            color: var(--white);
        }

        .rank-col {
            width: 10%;
            text-align: center;
        }

        .rank-badge {
            display: inline-block;
            min-width: 40px;
            padding: 0.5rem 0.75rem;
            background: var(--gold);
            color: var(--black);
            font-weight: 700;
            font-size: 1rem;
            border-radius: 4px;
            text-align: center;
        }

        .leader-row .rank-badge {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }

        .angler-col {
            font-weight: 600;
            font-size: 1.1rem;
            width: 50%;
            white-space: nowrap;
        }

        .leader-row .angler-col {
            color: var(--gold);
            font-weight: 700;
        }

        .weight-col {
            font-weight: 700;
            color: var(--gold);
            font-size: 1.1rem;
            width: 20%;
            text-align: center;
        }

        .behind-col {
            color: rgba(255, 255, 255, 0.6);
            width: 20%;
            text-align: center;
        }

        .leader-row .behind-col {
            color: var(--gold);
            font-weight: 700;
        }

        /* Cut Line - separates qualifying positions */
        .cut-line-row {
            border-top: 4px solid var(--gold);
        }

        .cut-line-row td:first-child {
            position: relative;
        }

        .cut-line-row td:first-child::before {
            content: 'CUT LINE';
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%) translateY(-50%);
            background: var(--gray-dark);
            padding: 0 1rem;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 2px;
            white-space: nowrap;
        }

        .cut-line-row td {
            padding-top: 1.5rem;
        }

        /* Standings Info (above table) */
        .standings-footer {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 1rem auto 0.5rem;
            padding: 0.75rem 0;
            font-size: 0.85rem;
            color: var(--gray);
            gap: 2rem;
        }

        .standings-footer-left,
        .standings-footer-right {
            margin: 0;
            padding: 0;
            line-height: 1;
        }

        .standings-footer-left {
            flex: 0 0 auto;
            text-align: left;
            white-space: nowrap;
        }

        .standings-footer-left .gold-asterisk {
            color: var(--gold);
        }

        .standings-footer-right {
            flex: 1 1 auto;
            text-align: right;
        }

        /* News Section */
        .news-section {
            padding: 7rem 2rem;
            background: linear-gradient(180deg, var(--black) 0%, var(--navy) 100%);
        }

        .news-container { max-width: 1200px; margin: 0 auto; }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .news-card {
            background: var(--gray-dark);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .news-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .news-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: var(--navy);
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-image img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .news-category {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.25rem 0.75rem;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 3px;
        }

        .news-date {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .news-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .news-excerpt {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .news-link {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: color 0.3s ease;
            align-self: flex-start;
        }

        .news-link:hover {
            color: var(--white);
        }

        .news-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .no-news {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.1rem;
        }

        /* News Archive Page */
        .news-archive {
            background: var(--black);
            min-height: 100vh;
        }

        .archive-hero {
            padding: 5rem 2rem 3rem;
            background: var(--navy);
            border-bottom: 2px solid var(--gold);
        }

        .archive-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .archive-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .archive-title span {
            color: var(--gold);
        }

        .archive-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .news-filter {
            padding: 2rem;
            background: var(--black);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        }

        .news-filter-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .filter-btn {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
            background: transparent;
            padding: 0.875rem 2rem;
            border-radius: 0;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
            border: 2px solid var(--gold);
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .filter-btn:hover::before {
            left: 0;
        }

        .filter-btn:hover {
            color: var(--gold);
        }

        .filter-btn.active {
            background: var(--gold);
            color: var(--black);
        }

        .filter-btn.active::before {
            left: 0;
        }

        .news-archive-section {
            padding: 4rem 2rem 6rem;
            background: var(--black);
        }

        .news-archive-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-pagination {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
        }

        .pagination-links {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .pagination-links a,
        .pagination-links span {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--white);
            background: var(--gray-dark);
            padding: 0.75rem 1.25rem;
            border-radius: 4px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .pagination-links a:hover {
            background: var(--navy);
            border-color: var(--gold);
            color: var(--gold);
        }

        .pagination-links .current {
            background: var(--gold);
            color: var(--black);
        }

        .pagination-links .dots {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.5);
        }

        .no-news-found {
            text-align: center;
            padding: 5rem 2rem;
        }

        .no-news-found p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        .news-title a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .news-title a:hover {
            color: var(--gold);
        }

        /* Privacy Policy Page */
        .privacy-policy-page {
            background: var(--black);
            min-height: 100vh;
        }

        .privacy-content-section {
            padding: 4rem 2rem 6rem;
            background: var(--black);
        }

        .privacy-content-container {
            max-width: 900px;
            margin: 0 auto;
            color: var(--white);
            line-height: 1.8;
        }

        .privacy-content-container h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .privacy-content-container h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--white);
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }

        .privacy-content-container p {
            margin-bottom: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .privacy-content-container ul,
        .privacy-content-container ol {
            margin-bottom: 1.25rem;
            padding-left: 2rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .privacy-content-container li {
            margin-bottom: 0.5rem;
        }

        .privacy-content-container a {
            color: var(--gold);
            text-decoration: underline;
            transition: opacity 0.3s ease;
        }

        .privacy-content-container a:hover {
            opacity: 0.8;
        }

        /* Schedule Section */
        .schedule-section {
            padding: 7rem 2rem;
            background: linear-gradient(180deg, var(--black) 0%, var(--navy) 100%);
        }

        .schedule-container { max-width: 1000px; margin: 0 auto; }

        .schedule-timeline {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .schedule-day {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 2rem;
            padding: 2rem 0;
            border-bottom: 1px solid var(--gray-dark);
        }

        .schedule-day:last-child { border-bottom: none; }

        .schedule-date-header {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .schedule-date {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .schedule-day-label {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
        }

        .schedule-day-championship .schedule-date-header {
            position: relative;
        }

        .schedule-day-championship .schedule-date {
            font-size: 1.2rem;
        }

        .schedule-events {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .schedule-event {
            padding-left: 1.5rem;
            border-left: 2px solid var(--gray-dark);
        }

        .schedule-event h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--white);
            text-transform: uppercase;
            margin-bottom: 0.35rem;
        }

        .schedule-event .event-description {
            font-size: 0.95rem;
            color: var(--gray);
            margin-bottom: 0.25rem;
        }

        .schedule-event .event-location {
            font-size: 0.85rem;
            color: var(--gold);
            opacity: 0.8;
        }

        .schedule-event-highlight {
            border-left-color: var(--gold);
            background: linear-gradient(90deg, rgba(238, 171, 0, 0.1) 0%, transparent 100%);
            padding: 1rem 1.5rem;
            margin-left: -1.5rem;
            padding-left: 1.5rem;
        }

        .schedule-event-highlight h3 {
            color: var(--gold);
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(5, 10, 15, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .modal-overlay.active { display: flex; }

        .modal {
            background: var(--gray-dark);
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid var(--gold);
        }

        .modal-header {
            background: var(--gold);
            padding: 1.5rem 2rem;
        }

        .modal-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--black);
            font-size: 1.5rem;
            cursor: pointer;
        }

        .modal-body { padding: 2rem; }

        /* Modal Form Styles */
        .modal-body form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .modal-body input,
        .modal-body textarea,
        .modal-body select {
            width: 100%;
            padding: 0.875rem 1rem;
            background: var(--black);
            border: 1px solid var(--gray-dark);
            color: var(--white);
            font-family: 'Exo 2', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
            border-radius: 0;
        }

        .modal-body input::placeholder,
        .modal-body textarea::placeholder {
            color: var(--gray);
        }

        .modal-body input:focus,
        .modal-body textarea:focus,
        .modal-body select:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 1px var(--gold);
        }

        .modal-body textarea {
            min-height: 120px;
            resize: vertical;
            font-family: 'Exo 2', sans-serif;
        }

        .modal-body select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23eeab00' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        .modal-body select option {
            background: var(--black);
            color: var(--white);
        }

        .modal-body button[type="submit"] {
            width: 100%;
            background: var(--gold);
            color: var(--black);
            border: none;
            padding: 1rem 2rem;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
            transform: skewX(-5deg);
        }

        .modal-body button[type="submit"] span {
            display: inline-block;
            transform: skewX(5deg);
        }

        .modal-body button[type="submit"]:hover {
            background: var(--gold-light);
            box-shadow: 0 0 20px rgba(238, 171, 0, 0.4);
        }

        /* Purse Breakdown Modal */
        .purse-breakdown {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .purse-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1rem;
            background: rgba(238, 171, 0, 0.05);
            border-left: 2px solid var(--gray-dark);
        }

        .purse-item.purse-champion {
            background: rgba(238, 171, 0, 0.15);
            border-left: 3px solid var(--gold);
        }

        .purse-item.purse-champion .purse-amount {
            font-size: 1.25rem;
            color: var(--gold);
        }

        .purse-place {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .purse-amount {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            color: var(--gray);
        }

        .purse-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            margin-top: 0.5rem;
            background: var(--gold);
            border: none;
        }

        .purse-total .purse-place,
        .purse-total .purse-amount {
            color: var(--black);
            font-size: 1.1rem;
        }

        /* Modal Link Style */
        .modal-link {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease, text-shadow 0.2s ease;
        }

        .modal-link:hover {
            color: var(--gold-light);
            text-shadow: 0 0 8px rgba(238, 171, 0, 0.4);
        }

        .form-group { margin-bottom: 1.5rem; }
        .form-group label {
            display: block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.875rem 1rem;
            background: var(--black);
            border: 1px solid var(--gray-dark);
            color: var(--white);
            font-family: 'Exo 2', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: var(--gold);
        }

        .form-group textarea { min-height: 100px; resize: vertical; }

        .form-submit {
            width: 100%;
            background: var(--gold);
            color: var(--black);
            border: none;
            padding: 1rem 2rem;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover { box-shadow: 0 0 20px var(--gold-glow); }

        /* Footer */
        footer {
            background: var(--navy);
            padding: 5rem 2rem 2rem;
            border-top: 2px solid var(--gold);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-brand p { color: var(--gray); font-size: 0.9rem; margin-top: 1rem; max-width: 280px; }
        .footer-logo { height: 45px; width: auto; }

        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.25rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(238, 171, 0, 0.1);
            border-radius: 50%;
            color: var(--gold);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-2px);
        }

        .social-link svg {
            width: 18px;
            height: 18px;
        }

        .footer-section h3,
        .footer-section h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .footer-section ul { list-style: none; }
        .footer-section li { margin-bottom: 0.75rem; }
        .footer-section a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            font-weight: 400;
        }
        .footer-section a:hover { color: var(--white); }

        .footer-contact p {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }
        .footer-contact p:last-child {
            margin-bottom: 0;
        }
        .footer-contact a {
            color: var(--gold);
            text-decoration: none;
            display: block;
        }
        .footer-contact a:hover { color: var(--white); }

        .footer-bottom {
            max-width: 1200px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-dark);
            text-align: center;
            color: var(--gray);
            font-size: 0.85rem;
        }

        .footer-privacy {
            margin-bottom: 1rem;
        }

        .privacy-link,
        .terms-link {
            color: var(--gold);
            text-decoration: underline;
            transition: opacity 0.3s ease;
        }

        .privacy-link:visited,
        .terms-link:visited,
        .privacy-link:active,
        .terms-link:active {
            color: var(--gold);
        }

        .privacy-link:hover,
        .terms-link:hover {
            opacity: 0.8;
        }

        .footer-separator {
            color: var(--gray);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-visual { order: -1; margin-top: 0; margin-bottom: 2rem; }
            .hero-meta { margin: 0 auto 2rem; }
            .hero-callout { margin: 0 auto 2rem; }
            .hero-stats { justify-content: center; }
            .overview-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-content { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            .cta-grid { grid-template-columns: repeat(2, 1fr); }

            /* Leaderboard - reduce font size on tablet */
            .leaderboard-table thead th,
            .leaderboard-table tbody td {
                padding: 1rem 0.75rem;
                font-size: 0.9rem;
            }

            .angler-col {
                font-size: 1rem;
            }

            .weight-col {
                font-size: 1rem;
            }

            /* News - show 2 columns on tablet */
            .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            /* Header - reduce padding on mobile */
            header { padding: 1rem; }

            /* Show hamburger button on mobile */
            .hamburger {
                display: flex;
            }

            /* Hide logo text on mobile to save space */
            .logo-text {
                display: none;
            }

            /* Mobile Navigation - hidden by default */
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--navy);
                padding: 5rem 2rem 2rem;
                transition: right 0.3s ease;
                z-index: 1000;
                border-left: 2px solid var(--gold);
            }

            .main-nav.active {
                right: 0;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }

            .main-nav li {
                border-bottom: 1px solid rgba(210, 180, 140, 0.2);
            }

            .main-nav a {
                display: block;
                padding: 1rem 0;
                font-size: 1.1rem;
            }

            .main-nav a::before {
                display: none;
            }

            .main-nav a:hover {
                padding-left: 0.5rem;
            }

            /* Hero Section - mobile optimizations */
            .hero { padding: 6rem 1rem 4rem; }

            /* Reverse hero layout on mobile - image first, content below */
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-visual {
                order: -1;
            }

            .hero-content {
                text-align: center;
            }

            .hero-title { font-size: 2.5rem; }
            .hero-title .line2 { font-size: 3.5rem; }
            .hero-meta {
                font-size: 1rem;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-callout {
                font-size: 0.85rem;
                margin-left: auto;
                margin-right: auto;
            }

            /* Hero stats - stack vertically on mobile */
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }
            .stat { text-align: left; }

            /* Countdown - mobile layout */
            .countdown-inner { flex-direction: column; gap: 1.5rem; }
            .countdown { gap: 0.5rem; }
            .countdown-item {
                min-width: 70px;
                padding: 1rem 0.75rem;
            }
            .countdown-number { font-size: 2rem; }

            /* Section spacing - reduce on mobile */
            .event-overview,
            .cta-section,
            .leaderboard-section,
            .news-section,
            .schedule-section { padding: 4rem 1rem; }

            /* Section titles - reduce size on mobile */
            .section-title { font-size: 2rem; }

            /* Grids - single column on mobile */
            .overview-grid, .cta-grid, .news-grid { grid-template-columns: 1fr; }

            /* News - mobile optimization */
            .news-image {
                height: 180px;
            }

            .news-title {
                font-size: 1.25rem;
            }

            /* News Archive - mobile */
            .archive-hero {
                padding: 3rem 1rem 2rem;
            }

            .archive-title {
                font-size: 2rem;
            }

            .archive-description {
                font-size: 0.95rem;
            }

            .news-filter {
                padding: 1.5rem 1rem;
            }

            .filter-buttons {
                gap: 0.75rem;
            }

            .filter-btn {
                font-size: 0.8rem;
                padding: 0.6rem 1rem;
            }

            .news-archive-section {
                padding: 3rem 1rem;
            }

            .pagination-links {
                gap: 0.25rem;
            }

            .pagination-links a,
            .pagination-links span {
                font-size: 0.8rem;
                padding: 0.6rem 0.9rem;
            }

            /* Leaderboard - optimize for mobile */
            .leaderboard-table-wrapper {
                margin-top: 1rem;
            }

            .leaderboard-table thead th,
            .leaderboard-table tbody td {
                padding: 1rem 0.5rem;
                font-size: 0.85rem;
            }

            .rank-col {
                width: 60px;
            }

            .rank-badge {
                min-width: 30px;
                padding: 0.4rem 0.6rem;
                font-size: 0.85rem;
            }

            .angler-col {
                font-size: 0.95rem;
                width: auto;
            }

            .weight-col {
                font-size: 0.95rem;
                width: 25%;
            }

            .behind-col {
                display: none;
            }

            /* Standings Footer - stack on mobile */
            .standings-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
                font-size: 0.75rem;
            }

            .standings-footer-right {
                text-align: left;
            }

            .leaderboard-table thead th:last-child {
                display: none;
            }

            /* Schedule - stack on mobile */
            .schedule-day {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .schedule-date-header {
                padding-bottom: 0.5rem;
                border-bottom: 1px solid var(--gray-dark);
            }
            .schedule-event {
                padding-left: 1rem;
            }
            .schedule-event-highlight {
                margin-left: -1rem;
                padding-left: 1rem;
            }

            /* Modal - reduce padding on mobile */
            .modal-overlay { padding: 1rem; }
            .modal-body { padding: 1.5rem; }
            .modal-header { padding: 1rem 1.5rem; }
            .modal-title { font-size: 1rem; }

            /* Footer - single column on mobile */
            .footer-content { grid-template-columns: 1fr; gap: 2rem; }
            footer { padding: 3rem 1rem 2rem; }
        }

        /* Single News Post Styles */
        .single-news-post .news-meta {
            margin-top: 1rem;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.3rem;
            text-align: center;
            display: block;
            justify-content: center;
        }

        .single-news-post .news-meta .news-date {
            color: #FFD700;
            font-size: 1.3rem;
        }

        .single-news-content {
            padding: 4rem 2rem 6rem;
        }

        .news-featured-image {
            margin-bottom: 3rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .news-featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .news-content {
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--white);
        }

        .news-content p {
            margin-bottom: 1.5rem;
        }

        .news-content h2,
        .news-content h3,
        .news-content h4 {
            font-family: 'Rajdhani', sans-serif;
            color: var(--gold);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }

        .news-content h2 {
            font-size: 2rem;
            font-weight: 700;
        }

        .news-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .news-content h4 {
            font-size: 1.25rem;
            font-weight: 600;
        }

        .news-content ul,
        .news-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }

        .news-content li {
            margin-bottom: 0.5rem;
        }

        .news-content a {
            color: var(--gold);
            text-decoration: underline;
            transition: opacity 0.3s ease;
        }

        .news-content a:hover {
            opacity: 0.8;
        }

        .news-content blockquote {
            border-left: 4px solid var(--gold);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--gray);
        }

        .news-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
        }

        /* Responsive video embeds */
        .news-content iframe,
        .news-content embed,
        .news-content object,
        .news-content video {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
        }

        /* WordPress video embeds wrapper */
        .news-content .wp-video,
        .news-content .wp-embed-responsive {
            max-width: 100%;
            margin: 2rem 0;
        }

        /* YouTube, Vimeo, and other iframe embeds - responsive wrapper */
        .news-content iframe[src*="youtube"],
        .news-content iframe[src*="vimeo"],
        .news-content iframe[src*="youtu.be"] {
            aspect-ratio: 16 / 9;
            width: 100%;
            height: auto;
            min-height: 315px;
        }

        /* WordPress embed blocks */
        .news-content .wp-block-embed {
            margin: 2rem 0;
        }

        .news-content .wp-block-embed__wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }

        .news-content .wp-block-embed__wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            margin: 0;
        }

        /* Figure and caption styling */
        .news-content figure {
            margin: 2rem 0;
        }

        .news-content figcaption {
            font-size: 0.875rem;
            color: var(--gray);
            font-style: italic;
            margin-top: 0.5rem;
            text-align: center;
        }

        /* WordPress gallery blocks */
        .news-content .wp-block-gallery {
            margin: 2rem 0;
        }

        .news-content .wp-block-gallery img {
            margin: 0;
        }

        .news-back-link {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid var(--navy-light);
        }

        .news-back-link .cta-btn {
            background: transparent;
            border: none;
            color: var(--gold);
            padding: 0.75rem 1.5rem;
        }

        .news-back-link .cta-btn .cta-text {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .news-back-link .cta-btn:hover {
            background: transparent;
            color: var(--gold);
        }

        .news-back-link .cta-btn:hover .cta-text {
            transform: translateX(-5px);
        }

        @media (max-width: 768px) {
            /* Tablets and mobile - single news post responsive */
            .single-news-content { padding: 3rem 1.5rem 5rem; }

            .news-featured-image {
                margin-bottom: 2rem;
            }

            .news-content iframe[src*="youtube"],
            .news-content iframe[src*="vimeo"],
            .news-content iframe[src*="youtu.be"] {
                min-height: 250px;
            }

            .news-content {
                font-size: 1.0625rem;
            }

            .news-content h2 {
                font-size: 1.75rem;
                margin-top: 2rem;
            }

            .news-content h3 {
                font-size: 1.375rem;
            }

            .news-content h4 {
                font-size: 1.125rem;
            }

            .news-back-link {
                margin-top: 3rem;
            }
        }

        @media (max-width: 480px) {
            /* Extra small screens - further optimizations */
            .hero-title { font-size: 2rem; }
            .hero-title .line2 { font-size: 2.8rem; }
            .section-title { font-size: 1.75rem; }
            .countdown-number { font-size: 1.75rem; }
            .countdown-item { min-width: 60px; padding: 0.75rem 0.5rem; }

            .single-news-content { padding: 2rem 1rem 3rem; }

            .news-featured-image {
                margin-bottom: 1.5rem;
                border-radius: 4px;
            }

            .news-content { font-size: 1rem; }
            .news-content h2 { font-size: 1.5rem; }
            .news-content h3 { font-size: 1.25rem; }
            .news-content h4 { font-size: 1.125rem; }

            .news-content iframe[src*="youtube"],
            .news-content iframe[src*="vimeo"],
            .news-content iframe[src*="youtu.be"] {
                min-height: 200px;
            }

            .news-content img,
            .news-content iframe,
            .news-content video {
                border-radius: 4px;
                margin: 1.5rem 0;
            }

            .news-content ul,
            .news-content ol {
                padding-left: 1.5rem;
            }

            .news-content blockquote {
                padding-left: 1rem;
                margin: 1.5rem 0;
            }

            .news-back-link {
                margin-top: 2.5rem;
            }

            .single-news-post .news-meta {
                font-size: 1.1rem;
            }

            .single-news-post .news-meta .news-date {
                font-size: 1.1rem;
            }
        }

        /* ========================================
           SPLASH PAGE (COMING SOON)
           ======================================== */

        .splash-page {
            overflow: hidden;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .splash-container {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            overflow: hidden;
        }

        /* Background Effects */
        .splash-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--navy) 0%, var(--black) 50%, var(--navy-light) 100%);
            z-index: 1;
        }

        .splash-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(90deg, rgba(238, 171, 0, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(238, 171, 0, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 2;
        }

        .splash-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
            opacity: 0.15;
            z-index: 3;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.25; transform: translate(-50%, -50%) scale(1.1); }
        }

        /* Logo */
        .splash-logo {
            position: relative;
            z-index: 10;
            margin-bottom: 2rem;
            max-width: 300px;
            width: 100%;
        }

        .splash-logo img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 4px 20px rgba(238, 171, 0, 0.3));
        }

        /* Main Content */
        .splash-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            width: 100%;
        }

        /* Badge */
        .splash-badge {
            display: inline-block;
            background: rgba(238, 171, 0, 0.1);
            border: 1px solid var(--gold);
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInDown 1s ease-out;
        }

        .splash-badge span {
            color: var(--gold);
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Floating Bass Image */
        .splash-visual {
            margin: 2rem auto;
            max-width: 600px;
            width: 100%;
            animation: float 6s ease-in-out infinite;
        }

        .splash-bass-image {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 40px rgba(238, 171, 0, 0.4));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Title */
        .splash-title {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .splash-title-line1 {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--white);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .splash-title-line2 {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            text-shadow: 0 0 40px var(--gold-glow);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Subtitle */
        .splash-subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 3rem;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Countdown */
        .splash-countdown {
            animation: fadeIn 1s ease-out 0.9s both;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin: 0 auto;
        }

        .splash-page .splash-countdown .countdown {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin: 0 auto;
        }

        .splash-page .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .splash-countdown-label {
            font-size: 0.875rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .splash-logo {
                max-width: 200px;
                margin-bottom: 1.5rem;
            }

            .splash-badge span {
                font-size: 0.75rem;
            }

            .splash-visual {
                max-width: 400px;
                margin: 1.5rem auto;
            }

            .splash-title-line1 {
                font-size: 1.75rem;
            }

            .splash-title-line2 {
                font-size: 2.5rem;
            }

            .splash-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .countdown-number {
                font-size: 2rem;
            }

            .countdown-item {
                min-width: 70px;
                padding: 1rem 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .splash-container {
                padding: 1rem;
            }

            .splash-logo {
                max-width: 150px;
            }

            .splash-badge {
                padding: 0.4rem 1rem;
                margin-bottom: 1.5rem;
            }

            .splash-badge span {
                font-size: 0.65rem;
            }

            .splash-visual {
                max-width: 300px;
                margin: 1rem auto;
            }

            .splash-title-line1 {
                font-size: 1.25rem;
            }

            .splash-title-line2 {
                font-size: 2rem;
            }

            .splash-subtitle {
                font-size: 0.875rem;
                margin-bottom: 1.5rem;
            }

            .countdown-number {
                font-size: 1.75rem;
            }

            .countdown-item {
                min-width: 60px;
                padding: 0.75rem 0.5rem;
            }

            .countdown-unit {
                font-size: 0.7rem;
            }

            .splash-glow {
                width: 500px;
                height: 500px;
            }
        }
