/* ========================================
   CSS Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #0b2447;
    background-color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========================================
   Animated Background
   ======================================== */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: 
        radial-gradient(1200px 600px at 10% 10%, rgba(142, 227, 245, 0.25), transparent 60%),
        radial-gradient(900px 500px at 90% 20%, rgba(70, 195, 219, 0.18), transparent 60%),
        radial-gradient(800px 500px at 30% 80%, rgba(159, 236, 255, 0.22), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #eef7fb 100%);
    animation: backgroundShift 20s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    100% {
        background-position: 10% 10%, 90% 90%, 60% 60%;
    }
}

/* ========================================
   Container
   ======================================== */
.container {
    width: min(1200px, 94%);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header Styles
   ======================================== */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid #e7eef5;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(11, 36, 71, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.site-logo {
    text-decoration: none;
    color: #0b2447;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.3px;
    transition: transform 0.2s ease;
}

.site-logo:hover {
    transform: scale(1.02);
}

.logo-dot {
    color: #46c3db;
}

/* ========================================
   Navigation
   ======================================== */
.main-navigation {
    position: relative;
}

.navigation-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.navigation-menu a {
    text-decoration: none;
    color: #0b2447;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.navigation-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #46c3db;
    transition: width 0.3s ease;
}

.navigation-menu a:hover::before {
    width: 100%;
}

.navigation-menu a:hover {
    background: rgba(70, 195, 219, 0.1);
    color: #46c3db;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid #e7eef5;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(70, 195, 219, 0.1);
    border-color: #46c3db;
    transform: scale(1.05);
}

.toggle-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #0b2447;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] .toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0b2447;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: #315075;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(11, 36, 71, 0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary-hero,
.btn-secondary-hero,
.btn-eventim,
.btn-ticketmaster {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #0b2447 0%, #1e3a5f 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(11, 36, 71, 0.25);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(11, 36, 71, 0.35);
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-secondary-hero {
    background: #ffffff;
    color: #0b2447;
    border: 2px solid #cfe7ef;
    box-shadow: 0 4px 12px rgba(11, 36, 71, 0.1);
}

.btn-secondary-hero:hover {
    background: #f2fbfe;
    border-color: #46c3db;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(70, 195, 219, 0.2);
}

.btn-eventim {
    background: linear-gradient(135deg, #0b2447 0%, #1e3a5f 100%);
    color: #ffffff;
    font-size: 14px;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(11, 36, 71, 0.2);
}

.btn-eventim:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(11, 36, 71, 0.3);
}

.btn-ticketmaster {
    background: linear-gradient(135deg, #46c3db 0%, #3cb1c7 100%);
    color: #063548;
    font-size: 14px;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(70, 195, 219, 0.25);
}

.btn-ticketmaster:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(70, 195, 219, 0.35);
}

/* ========================================
   Sports Section
   ======================================== */
.sports-section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #0b2447;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-description {
    font-size: 18px;
    color: #315075;
    max-width: 700px;
    margin: 0 auto;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sport-card {
    background: #ffffff;
    border: 2px solid #e6eef5;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.sport-card:nth-child(1) { animation-delay: 0.1s; }
.sport-card:nth-child(2) { animation-delay: 0.2s; }
.sport-card:nth-child(3) { animation-delay: 0.3s; }
.sport-card:nth-child(4) { animation-delay: 0.4s; }

.sport-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(70, 195, 219, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.sport-card:hover::before {
    transform: scale(1);
}

.sport-card:hover {
    border-color: #46c3db;
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(11, 36, 71, 0.12);
}

.card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.sport-icon {
    width: 96px;
    height: 96px;
    transition: transform 0.3s ease;
}

.sport-card:hover .sport-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0b2447;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.sport-features {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.sport-features li {
    padding: 8px 0;
    color: #315075;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.sport-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #46c3db;
    font-weight: bold;
}

.card-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* ========================================
   Why Section
   ======================================== */
.why-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-item {
    background: #ffffff;
    border: 2px solid #e6eef5;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }

.why-item:hover {
    border-color: #46c3db;
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(11, 36, 71, 0.12);
}

.why-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(70, 195, 219, 0.1) 0%, rgba(70, 195, 219, 0.05) 100%);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.why-item:hover .why-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.why-icon {
    width: 40px;
    height: 40px;
    color: #46c3db;
}

.why-title {
    font-size: 22px;
    font-weight: 700;
    color: #0b2447;
    margin-bottom: 12px;
}

.why-text {
    color: #315075;
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    background: #ffffff;
    border-top: 2px solid #e7eef5;
    padding: 50px 0 30px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    font-size: 22px;
    font-weight: 800;
    color: #0b2447;
    margin-bottom: 12px;
}

.footer-disclaimer {
    color: #315075;
    margin-bottom: 16px;
    line-height: 1.7;
}

.footer-contact {
    color: #315075;
    font-size: 14px;
}

.footer-contact a {
    color: #46c3db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #3cb1c7;
    text-decoration: underline;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-navigation a {
    color: #0b2447;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-navigation a:hover {
    background: rgba(70, 195, 219, 0.1);
    color: #46c3db;
    transform: translateX(4px);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .navigation-menu {
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        background: #ffffff;
        border: 2px solid #e6eef5;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(11, 36, 71, 0.15);
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .navigation-menu.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navigation-menu li {
        width: 100%;
    }

    .navigation-menu a {
        display: block;
        width: 100%;
        text-align: center;
    }

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

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

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-navigation {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
    }

    .sports-section,
    .why-section {
        padding: 60px 0;
    }
}

/* ========================================
   Accessibility & Animations
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #46c3db;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip to main content link */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 0;
    background: #0b2447;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 0;
}

.skip-to-main:focus {
    top: 0;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-section {
    padding: 80px 0;
    min-height: 60vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.page-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #0b2447;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.contact-subtitle {
    font-size: 18px;
    color: #315075;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #ffffff;
    border: 2px solid #e6eef5;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(11, 36, 71, 0.08);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #0b2447;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    color: #0b2447;
    font-size: 14px;
}

.form-label-full {
    grid-column: 1 / -1;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e6eef5;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #46c3db;
    box-shadow: 0 0 0 3px rgba(70, 195, 219, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: #e63946;
}

.error-message {
    color: #e63946;
    font-size: 14px;
    margin-top: 4px;
}

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

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-submit {
    padding: 14px 28px;
    background: linear-gradient(135deg, #0b2447 0%, #1e3a5f 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(11, 36, 71, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(11, 36, 71, 0.35);
}

.form-note {
    font-size: 14px;
    color: #315075;
    text-align: center;
}

.support-info {
    background: #ffffff;
    border: 2px solid #e6eef5;
    border-radius: 20px;
    padding: 40px;
    height: fit-content;
    box-shadow: 0 4px 20px rgba(11, 36, 71, 0.08);
}

.support-title {
    font-size: 24px;
    font-weight: 700;
    color: #0b2447;
    margin-bottom: 16px;
}

.support-text {
    color: #315075;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    padding-top: 24px;
    border-top: 2px solid #e6eef5;
}

.details-title {
    font-size: 20px;
    font-weight: 700;
    color: #0b2447;
    margin-bottom: 16px;
}

.details-item {
    color: #315075;
    line-height: 1.8;
    margin-bottom: 12px;
}

.details-item a {
    color: #46c3db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.details-item a:hover {
    color: #3cb1c7;
    text-decoration: underline;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(11, 36, 71, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px;
}

.popup-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(11, 36, 71, 0.3);
    max-width: 500px;
    width: 100%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.popup-overlay.is-visible .popup-content {
    transform: scale(1) translateY(0);
    animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 28px 24px;
    border-bottom: 2px solid #e6eef5;
    position: relative;
}

.popup-icon-wrapper {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #46c3db 0%, #3cb1c7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(70, 195, 219, 0.3);
    animation: iconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}

@keyframes iconBounce {
    0% {
        transform: translateX(-50%) scale(0);
    }
    50% {
        transform: translateX(-50%) scale(1.2);
    }
    100% {
        transform: translateX(-50%) scale(1);
    }
}

.popup-success-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
    stroke-width: 3;
}

.popup-header h2 {
    margin: 0 auto;
    font-size: 28px;
    font-weight: 800;
    color: #0b2447;
    text-align: center;
}

.popup-close {
    width: 40px;
    height: 40px;
    border: none;
    background: #f7fbfe;
    border-radius: 10px;
    font-size: 28px;
    line-height: 1;
    color: #0b2447;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
}

.popup-close:hover,
.popup-close:focus {
    background: #eef7fb;
    transform: rotate(90deg);
    outline: none;
}

.popup-body {
    padding: 32px 28px;
    color: #315075;
    line-height: 1.7;
    text-align: center;
}

.popup-body p {
    margin: 0;
    font-size: 16px;
}

.popup-actions {
    display: flex;
    gap: 12px;
    padding: 24px 28px 28px;
    border-top: 2px solid #e6eef5;
}

.popup-actions .btn-primary-hero,
.popup-actions .btn-secondary-hero {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper,
    .support-info {
        padding: 28px;
    }
    
    .popup-actions {
        flex-direction: column;
    }
    
    .popup-content {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .popup-header {
        padding: 40px 24px 24px;
    }
    
    .popup-icon-wrapper {
        width: 50px;
        height: 50px;
        top: -25px;
    }
    
    .popup-success-icon {
        width: 26px;
        height: 26px;
    }
    
    .popup-header h2 {
        font-size: 24px;
    }
}

/* ========================================
   Legal Pages Styles
   ======================================== */
.legal-page {
    padding: 80px 0;
    min-height: 60vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out;
}

.legal-updated {
    color: #315075;
    font-size: 14px;
    margin-top: 8px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid #e6eef5;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(11, 36, 71, 0.08);
}

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

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0b2447;
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal-section h2:first-child {
    margin-top: 0;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0b2447;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    color: #315075;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section strong {
    color: #0b2447;
    font-weight: 700;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.legal-list li {
    padding: 10px 0 10px 24px;
    color: #315075;
    line-height: 1.7;
    position: relative;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #46c3db;
    font-weight: bold;
    font-size: 20px;
}

.cookie-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid #e6eef5;
    border-radius: 12px;
    overflow: hidden;
}

.cookie-table thead {
    background: linear-gradient(135deg, #0b2447 0%, #1e3a5f 100%);
    color: #ffffff;
}

.cookie-table th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
}

.cookie-table td {
    padding: 14px 16px;
    border-top: 1px solid #e6eef5;
    color: #315075;
    font-size: 14px;
}

.cookie-table tbody tr:hover {
    background: rgba(70, 195, 219, 0.05);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 24px;
    }
    
    .legal-section h2 {
        font-size: 22px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
    
    .cookie-table-wrapper {
        font-size: 12px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 12px;
    }
}

/* ========================================
   FAQ Section Styles
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 2px solid #e6eef5;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #46c3db;
    box-shadow: 0 8px 24px rgba(11, 36, 71, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #0b2447;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #46c3db;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #46c3db;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    color: #315075;
    line-height: 1.8;
    margin: 0;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary-hero,
.btn-secondary-hero,
.btn-eventim,
.btn-ticketmaster,
.btn-submit {
    position: relative;
    overflow: hidden;
}

