/* Font */
        @font-face {
            font-family: 'VitesseSans-Book';
            src: url("https://fonts.cdnfonts.com/s/15119/VitesseSans-Book.woff") format('woff');
            font-weight: normal;
            font-style: normal;
        }

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

        body {
            font-family: VitesseSans-Book, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #060335;
            color: white;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Header/Nav */
        .header {
            background: #060335;
            padding: 0.5rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: white;
        }

        .logo-img {
            width: 40px;
            height: 40px;
        }

        .logo-text {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .nav-center {
            display: none;
            gap: 3rem;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            transition: opacity 0.2s;
        }

        .nav-link:hover {
            opacity: 0.8;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-mina-kop {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            padding: 11px 12px;
            border-radius: 50px;
            color: white;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: background 0.2s;
        }

        .btn-mina-kop:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .menu-button {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            padding: 9px 12px;
            border-radius: 50px;
            color: white;
            cursor: pointer;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-button svg {
            width: 16px;
            height: 16px;
        }

        /* Hero Section */
        .hero {
            padding: 3rem 1rem 2rem;
            text-align: center;
        }

        .hero-title {
            font-size: 28px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .hero-subtitle {
            font-size: 14px;
            font-style: italic;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        /* Overview Content */
        .overview-content {
            background: white;
            color: black;
            padding: 2rem 1rem 5rem;
            border-radius: 0 0 0 0;
            min-height: 70vh;
        }

        .overview-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        /* Event Cards */
        .event-card {
            background: white;
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 0.5rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: all 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            color: inherit;
        }

        .event-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .event-card-left {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex: 1;
        }

        .event-logos {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        .vs-text {
            font-size: 12px;
            font-weight: 600;
        }

        .event-info {
            flex: 1;
        }

        .event-title {
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 0.25rem;
        }

        .event-datetime {
            font-size: 12px;
            color: #666;
        }

        .event-prize {
            background: rgba(163, 0, 0, 0.1);
            padding: 0.5rem;
            border-radius: 8px;
            margin-top: 0.5rem;
            display: inline-block;
        }

        .prize-label {
            font-size: 12px;
            display: none;
        }

        .prize-amount {
            font-size: 18px;
            font-weight: 700;
            color: #a30000;
        }

        .event-arrow {
            width: 20px;
            height: 20px;
            opacity: 0.5;
        }

        .buy-btn-desktop {
            display: none;
            background: #a30000;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            margin: 0 1rem;
        }

        /* Footer */
        footer {
            background: white;
            color: black;
            padding: 3rem 1rem;
        }

        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            margin-bottom: 2rem;
        }

        .info-button {
            background: transparent;
            border: 1px solid #a30000;
            color: #a30000;
            padding: 0.5rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 3rem;
        }

        .info-button:hover {
            background: #a30000;
            color: white;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .partner-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .partner-img {
            width: 140px;
            height: auto;
        }

        .partner-img-small {
            width: 60px;
            height: auto;
        }

        .partner-text {
            font-size: 12px;
            text-align: center;
        }

        .find-button {
            background: #a30000;
            border: none;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .subscribe-button {
            background: transparent;
            border: 1px solid #a30000;
            color: #a30000;
            padding: 0.5rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .subscribe-button:hover {
            background: #a30000;
            color: white;
        }

        .club-logo-footer {
            width: 60px;
            margin-bottom: 1rem;
        }

        .powered-by {
            font-size: 14px;
            color: #666;
            margin-top: 1rem;
        }

        .clubmate-logo {
            width: 100px;
            margin-top: 0.5rem;
        }

        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 50;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            max-height: 80vh;
            background: white;
            border-radius: 0.5rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            width: 90vw;
            max-width: 700px;
        }

        .modal-content-small {
            max-width: 500px;
            padding: 1.5rem;
        }

        .modal-close-btn {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            z-index: 10;
            background: #a30000;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
        }

        .modal-body {
            overflow-y: auto;
            max-width: 100%;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .modal-title {
            font-size: 28px;
            font-weight: 700;
            text-align: center;
            color: #111827;
            margin-bottom: 1.5rem;
        }

        .modal-section {
            width: 100%;
        }

        .modal-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #111827;
        }

        .modal-section p {
            font-size: 14px;
            color: #374151;
            line-height: 1.5;
        }

        .btn-outline {
            background: transparent;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-outline.border-red-700 {
            border: 1px solid #b91c1c;
            color: #b91c1c;
        }

        .btn-outline.border-red-700:hover {
            background: #b91c1c;
            color: white;
        }

        .btn-outline.border-amber-600 {
            border: 1px solid #d97706;
            color: #d97706;
        }

        .btn-outline.border-amber-600:hover {
            background: #fef3c7;
        }

        .btn-red {
            background: #b91c1c;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
        }

        .btn-red:hover {
            background: #991b1b;
        }

        .success-message {
            background: #10b981;
            color: white;
            padding: 1rem;
            border-radius: 0.5rem;
            text-align: center;
            margin-top: 1rem;
            display: none;
        }

        .success-message.show {
            display: block;
        }

        /* Responsive */
        @media (min-width: 640px) {
            .logo-img {
                width: 48px;
                height: 48px;
            }

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

            .btn-mina-kop {
                font-size: 14px;
                padding: 11px 20px;
            }

            .menu-button {
                padding: 9px 20px;
            }

            .menu-button svg {
                width: 24px;
                height: 24px;
            }

            .hero-title {
                font-size: 45px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .section-title {
                font-size: 24px;
            }

            .event-card {
                padding: 1rem 0.75rem;
            }

            .event-logo {
                width: 56px;
                height: 56px;
            }

            .vs-text {
                font-size: 14px;
            }

            .event-title {
                font-size: 16px;
            }

            .event-datetime {
                font-size: 12px;
            }

            .prize-label {
                display: inline;
            }

            .buy-btn-desktop {
                display: block;
            }

            .event-arrow {
                display: none;
            }
        }

        @media (min-width: 768px) {
            .nav-center {
                display: flex;
            }

            .partners-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .overview-container {
                margin-top: 2rem;
            }
        }