/*
 * Pinpong | Combo Website
 * Main Stylesheet
 */

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

:root {
    --color-primary: #A0D911;
    --color-primary-dark: #7cb305;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-light: #f9f9f9;
    --color-gray: #666666;
    --color-gray-dark: #333333;
    --color-error: #ff4d4f;
    --color-success: #52c41a;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-black);
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white); /* BIANCO di default */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(160, 217, 17, 0.3);
    color: var(--color-black); /* NERO on hover */
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
}

.badge-available {
    background: #f0f9e8;
    color: var(--color-primary);
}

.badge-sold-out {
    background: #fff1f0;
    color: var(--color-error);
}

.badge-full {
    background: var(--color-primary);
    color: var(--color-white);
}

.badge-evening {
    background: #e6f7ff;
    color: #0050b3;
}

.badge-coach {
    background: #fff7e6;
    color: #d46b08;
}

.badge-extra {
    background: #f9f0ff;
    color: #531dab;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: var(--color-gray-dark);
    font-weight: 600;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-coach-link {
    color: var(--color-primary) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-black);
    border-radius: 2px;
    transition: var(--transition);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-logo img {
    max-width: 400px;
    margin-bottom: 40px;
}

.hero-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
}

.hero-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-icon img {
    width: 80px;
    height: 80px;
}

.hero-icon span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-black);
}

.hero-plus {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
}

.hero-date h1 {
    font-size: 64px;
    margin-bottom: 15px;
    color: var(--color-black);
}

.hero-tagline {
    margin-bottom: 20px;
}

.hero-tagline h2 {
    font-size: 36px;
    margin-bottom: 0;
    color: #000000;
    line-height: 1.3;
}

.hero-big-text {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: #000000;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 18px;
    color: #000000;
    margin-top: 15px;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    color: #000000;
}

.hero-location .icon {
    stroke: #000000;
}

.hero-location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.hero-location-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-location-btn .icon {
    stroke: currentColor;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #000000;
}

.countdown-label {
    display: block;
    font-size: 14px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.hero-cta {
    margin-top: 50px;
}

.hero-cta-subtitle {
    margin-top: 15px;
    font-size: 18px;
    color: #000000;
}

.hero-cta-subtitle strong {
    font-weight: 800;
    font-size: 20px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
}

.section-what {
    background-color: var(--color-white);
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.what-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.what-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.what-icon img {
    width: auto;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.what-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.what-time {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.what-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.what-list li {
    padding: 4px 0;
    color: var(--color-gray);
    line-height: 1.4;
}

/* ===== PACKAGES ===== */
.section-packages {
    background: linear-gradient(180deg, var(--color-gray-light) 0%, var(--color-white) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.package-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-featured {
    border: 3px solid var(--color-primary);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.package-badge-green {
    background: #52c41a;
}

.package-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.package-price {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.price-discount {
    display: block;
    font-size: 16px;
    color: var(--color-gray);
    margin-top: 8px;
    font-weight: 600;
}

.price-discount-small {
    font-size: 14px;
    color: var(--color-gray);
    font-weight: 500;
}

/* Community Discount Info */
.community-discount-info {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f9e8 0%, #e8f5d8 100%);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--color-primary);
    text-align: center;
}

.community-discount-info h3 {
    color: var(--color-black);
    margin-bottom: 15px;
}

.community-discount-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.discount-note {
    font-size: 14px;
    color: var(--color-gray-dark);
}

.discount-note a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.package-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
}

.icon-check {
    flex-shrink: 0;
    color: var(--color-primary);
}

.package-availability {
    margin: 20px 0;
}

.progress-bar {
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.availability-text {
    text-align: center;
    font-size: 14px;
    color: var(--color-gray);
}

.sold-out {
    color: var(--color-error);
    font-weight: 700;
}

.package-coach {
    background: linear-gradient(135deg, #f0f9e8 0%, #e8f5d8 100%);
}

/* Bottone outline nella card coach - deve essere visibile su sfondo chiaro */
.package-coach .btn-outline {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.package-coach .btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.coach-pass-note {
    font-size: 14px;
    color: var(--color-gray);
    text-align: center;
    margin: 15px 0;
}

/* ===== TICKETS ===== */
.section-tickets {
    background: linear-gradient(180deg, var(--color-gray-light) 0%, var(--color-white) 100%);
}

.tickets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.ticket-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
}

.ticket-main {
    border: 3px solid var(--color-primary);
}

.ticket-coach {
    border: 3px solid #52c41a;
}

.ticket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.ticket-badge-green {
    background: #52c41a;
}

.ticket-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.ticket-price {
    text-align: center;
    margin-bottom: 30px;
}

.ticket-price .price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

.ticket-price .price-subtitle {
    display: block;
    font-size: 14px;
    color: var(--color-gray);
    margin-top: 8px;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 30px;
}

.ticket-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gray-dark);
}

.ticket-availability {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-gray-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.availability-text {
    text-align: center;
    font-size: 14px;
    color: var(--color-gray-dark);
}

/* ===== COACHES ===== */
.section-coaches {
    background: var(--color-white);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.coach-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.coach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.coach-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--color-gray-light);
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    color: var(--color-white);
}

.coach-info {
    padding: 30px;
}

.coach-info h3 {
    margin-bottom: 8px;
}

.coach-fitet {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.coach-bio {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.coach-social {
    color: var(--color-primary);
    font-size: 24px;
}

/* ===== LOCATION ===== */
.section-location {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-light) 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-address h3 {
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-transport {
    margin: 30px 0;
}

.location-transport h4 {
    margin-bottom: 15px;
}

.transport-list {
    list-style: none;
    padding: 0;
}

.transport-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.location-map iframe {
    border-radius: var(--radius-md);
}

/* ===== FAQ ===== */
.section-faq {
    background: var(--color-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-gray-light);
    padding: 25px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.faq-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.faq-item p {
    font-size: 14px;
    color: var(--color-gray);
    margin: 0;
}

/* ===== CTA SECTIONS ===== */
.section-cta-final {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.cta-final-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-content h2 {
    color: var(--color-white);
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-final-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-final-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 40px 0;
}

.btn-cta-white {
    background: white;
    color: var(--color-primary);
    border: 3px solid white;
}

.btn-cta-white:hover {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-stat-label {
    display: block;
    font-size: 16px;
    opacity: 0.9;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 0.8fr 1.5fr;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-hub-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.footer-hub-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-hub-info {
    flex: 1;
}

.footer-location-header h4 {
    margin: 0;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links, .footer-contacts {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-contacts li {
    margin-bottom: 8px;
}

.footer-links a, .footer-contacts a {
    color: #999;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover, .footer-contacts a:hover {
    color: var(--color-primary);
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-metro {
    margin-top: 15px;
    font-size: 14px;
    color: #999;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin: 0;
    text-align: center;
}

.footer-bottom a {
    color: #999;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-primary);
}

/* New Footer Layout */
.footer-content {
    display: grid;
    grid-template-columns: 200px 1fr 200px 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo-section .footer-logo {
    width: 100%;
    height: auto;
    max-width: 180px;
}

.footer-hub-section .footer-hub-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 200px;
}

.footer-section h3 {
    color: var(--color-white);
    font-size: 16px;
    margin: 0 0 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

.footer-section a {
    color: var(--color-primary);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-white);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-logo-section {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-hub-section {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-hub-section .footer-hub-image {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ticket-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
    }
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 14px;
    color: #999;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: var(--color-white);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
}

/* ===== LIVE REGISTRATIONS ===== */
.live-registrations {
    position: fixed;
    bottom: 100px;
    right: 20px;
    max-width: 350px;
    z-index: 998;
}

.live-reg-item {
    background: var(--color-white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.5s ease;
}

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

.live-reg-icon {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.live-reg-text {
    font-size: 14px;
    color: var(--color-gray-dark);
}

.live-reg-time {
    font-size: 12px;
    color: var(--color-gray);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-black);
    color: var(--color-white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--color-gray);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-gray);
}

/* ===== ICONS ===== */
.icon {
    flex-shrink: 0;
}

/* ===== STATUS ===== */
.status {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.status-confirmed {
    background: #f6ffed;
    color: #52c41a;
}

.status-pending {
    background: #fff7e6;
    color: #fa8c16;
}
