/* Traxsyd Motorsports Platform - Common CSS */

/* ===== HERO SECTIONS ===== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    margin-bottom: 4rem;
}

.mission-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    position: relative;
}

.mission-text {
    max-width: 600px;
    position: relative;
}

.mission-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.mission-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #495057;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #28a745;
}

.mission-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.mission-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-actions .btn::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;
}

.mission-actions .btn:hover::before {
    left: 100%;
}

.mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.trophy-icon {
    font-size: 8rem;
    color: #667eea;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== PROMOTER SECTION ===== */
.promoter-section {
    text-align: center;
    position: relative;
}

.promoter-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.promoter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.promoter-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.02) 0%, rgba(32, 201, 151, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.promoter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.promoter-card:hover::after {
    opacity: 1;
}

.promoter-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.promoter-card:hover .promoter-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

.promoter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.promoter-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    border-radius: 1px;
}

.promoter-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.promoter-card .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promoter-card .btn::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;
}

.promoter-card .btn:hover::before {
    left: 100%;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: 80px 0;
}

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

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-card:hover::after {
    opacity: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.step-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.step-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.step-icon {
    margin-top: 1rem;
    position: relative;
}

.step-icon i {
    font-size: 2.5rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== MODERN CARDS ===== */
.modern-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-header-gradient {
    position: relative;
    padding: 2rem;
    text-align: center;
    color: white;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.card-badge .badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.card-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-badges {
    margin-bottom: 1.5rem;
}

.card-badges .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.card-footer {
    padding: 0 2rem 2rem;
}

.card-footer .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

/* ===== EVENT CARDS ===== */
.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.event-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.event-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 3rem;
}

.event-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.event-date-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date-day {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1;
}

.date-month {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
}

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

.event-header {
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-date,
.event-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.event-date i,
.event-location i {
    width: 16px;
    margin-right: 0.5rem;
    color: #667eea;
}

.event-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.competition-types {
    margin-bottom: 1rem;
}

.competition-badge {
    display: inline-block;
    background: #f8f9fa;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e9ecef;
}

.competition-badge i {
    margin-right: 0.25rem;
    color: #667eea;
}

.more-badge {
    background: #667eea !important;
    color: white !important;
    border-color: #667eea !important;
}

.ticket-pricing {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ticket-pricing i {
    margin-right: 0.25rem;
}

.event-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.event-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.event-management {
    display: flex;
    gap: 0.25rem;
}

/* ===== SPECIAL SECTIONS ===== */
.coming-soon-section {
    margin-top: 4rem;
}

.coming-soon-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid #dee2e6;
}

.coming-soon-header {
    margin-bottom: 2rem;
}

.coming-soon-icon {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.coming-soon-header h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.coming-soon-content {
    margin-bottom: 2rem;
}

.feature-item {
    padding: 1.5rem;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #6c757d;
    font-size: 0.9rem;
}

.coming-soon-footer .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 2rem;
}

/* ===== CALL TO ACTION ===== */
.cta-section {
    margin-top: 4rem;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-card > * {
    position: relative;
    z-index: 2;
}

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

.cta-buttons .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-primary {
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* ===== UTILITY CLASSES ===== */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-bg-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ===== GRADIENT BACKGROUNDS ===== */
.bg-primary-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-success-gradient {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.bg-info-gradient {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

.bg-warning-gradient {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
}

.bg-danger-gradient {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.bg-secondary-gradient {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-modern {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.shadow-modern-hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.border-radius-modern {
    border-radius: 20px;
}

.border-radius-card {
    border-radius: 16px;
}

.transition-smooth {
    transition: all 0.3s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        border-radius: 0 0 15px 15px;
    }

    .hero-section .display-5 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .card-content,
    .card-footer {
        padding: 1.5rem;
    }

    .coming-soon-card {
        padding: 2rem;
    }

    .cta-card {
        padding: 2rem;
    }

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

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

    .event-card-image {
        height: 150px;
    }

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

    .event-card-footer {
        padding: 0 1.5rem 1.5rem;
    }

    /* Features Section Responsive */
    .features-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .mission-title {
        font-size: 1.75rem;
    }

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

    .mission-actions {
        justify-content: center;
    }

    .trophy-icon {
        font-size: 6rem;
    }

    .promoter-card {
        padding: 2rem 1.5rem;
    }

    /* How It Works Section Responsive */
    .how-it-works-section {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
    }

    .step-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .card-header-gradient {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .event-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .event-management {
        justify-content: center;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .mission-content {
        padding: 1.5rem;
    }

    .mission-title {
        font-size: 1.5rem;
    }

    .mission-actions {
        flex-direction: column;
        align-items: center;
    }

    .mission-actions .btn {
        width: 100%;
        max-width: 250px;
    }

    .trophy-icon {
        font-size: 4rem;
    }

    .promoter-card {
        padding: 1.5rem 1rem;
    }

    .promoter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* How It Works Section Mobile */
    .how-it-works-section {
        padding: 40px 0;
    }

    .step-card {
        padding: 1.5rem 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
    }

    .step-text {
        font-size: 1.4rem;
    }

    .step-icon i {
        font-size: 2rem;
    }

    /* Ticketing Highlight Section Mobile */
    .ticketing-highlight-section {
        padding: 40px 0;
    }

    .ticketing-content {
        padding: 1.5rem;
    }

    .ticketing-title {
        font-size: 1.5rem;
    }

    .ticketing-actions {
        flex-direction: column;
        align-items: center;
    }

    .ticketing-actions .btn {
        width: 100%;
        max-width: 250px;
    }

    .ticket-icon-circle {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .success-badge {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        transform: translate(10px, -10px);
    }

    /* User Types Section Mobile */
    .user-types-section {
        padding: 40px 0;
    }

    .user-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .user-type-card {
        padding: 1.5rem 1rem;
    }

    .user-type-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .user-type-features {
        margin-bottom: 1.5rem;
    }

    .user-type-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .user-type-card .btn {
        width: 100%;
        max-width: 250px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* ===== TICKETING HIGHLIGHT SECTION ===== */
.ticketing-highlight-section {
    padding: 80px 0;
}

.ticketing-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
}

.ticketing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.ticketing-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    position: relative;
}

.ticketing-text {
    max-width: 600px;
    position: relative;
}

.ticketing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.ticketing-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.ticketing-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.benefit-subtitle {
    font-size: 0.8rem;
    color: #6c757d;
}

.ticketing-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.ticketing-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticketing-actions .btn::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;
}

.ticketing-actions .btn:hover::before {
    left: 100%;
}

.ticketing-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.ticket-visual-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.ticket-icon-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.ticket-visual-container:hover .ticket-icon-circle {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.success-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transform: translate(20px, -20px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
}

.visual-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

.visual-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
}

/* ===== USER TYPES SECTION ===== */
.user-types-section {
    padding: 80px 0;
}

.user-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.user-type-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.user-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.user-type-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.user-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.user-type-card:hover::after {
    opacity: 1;
}

.user-type-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.user-type-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: -1;
}

.user-type-card:hover .user-type-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.user-type-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.user-type-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.user-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.user-type-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #495057;
    transition: all 0.3s ease;
}

.user-type-features li:hover {
    transform: translateX(5px);
}

.user-type-features i {
    font-size: 1rem;
    flex-shrink: 0;
}

.user-type-card .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.user-type-card .btn::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;
}

.user-type-card .btn:hover::before {
    left: 100%;
}

/* ===== UPCOMING EVENTS SECTION ===== */
.upcoming-events-section {
    padding: 4rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.loading-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
}

.loading-spinner {
    margin-bottom: 1rem;
}

.loading-spinner i {
    font-size: 2rem;
    color: #667eea;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
}

.error-container i {
    color: #6c757d;
    margin-bottom: 1rem;
}

.error-container p {
    margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .step-text {
        font-size: 1.6rem;
    }

    /* Ticketing Highlight Section Responsive */
    .ticketing-highlight-section {
        padding: 60px 0;
    }

    .ticketing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .ticketing-title {
        font-size: 1.75rem;
    }

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

    .ticketing-actions {
        justify-content: center;
    }

    .ticket-icon-circle {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .success-badge {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        transform: translate(15px, -15px);
    }

    /* User Types Section Responsive */
    .user-types-section {
        padding: 60px 0;
    }

    .user-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .user-type-card {
        padding: 2rem 1.5rem;
    }

    .user-type-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Upcoming Events Section Responsive */
    .upcoming-events-section {
        padding: 60px 0;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .user-type-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Upcoming Events Section Mobile */
    .upcoming-events-section {
        padding: 40px 0;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .loading-container {
        padding: 2rem;
    }

    .loading-spinner i {
        font-size: 1.5rem;
    }

    .error-container {
        padding: 2rem;
    }

    /* Auth Pages Mobile */
    .auth-hero-section {
        padding: 40px 0 30px;
    }

    .auth-hero-title {
        font-size: 2rem;
    }

    .auth-hero-subtitle {
        font-size: 1rem;
    }

    .auth-form-section {
        padding: 30px 0;
    }

    .auth-form-container {
        padding: 1rem 0;
    }

    .auth-form-card {
        max-width: 100%;
        margin: 0 1rem;
    }

    .auth-form-header {
        padding: 1.5rem 1rem 0.5rem;
    }

    .auth-form-title {
        font-size: 1.4rem;
    }

    .auth-form-content {
        padding: 1rem;
    }

    .auth-form-footer {
        padding: 0.75rem 1rem 1rem;
    }
}

/* ===== AUTH PAGES ===== */
.auth-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
    color: white;
}

.auth-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.auth-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.auth-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.auth-form-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.auth-form-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 0;
}

.auth-form-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    width: 100%;
    max-width: 500px;
}

.auth-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.auth-form-header {
    text-align: center;
    padding: 2.5rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.auth-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.auth-form-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

.auth-form-content {
    padding: 2rem;
}

.auth-form-footer {
    text-align: center;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.auth-form-footer-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.auth-form-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-form-link:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== AUTH PAGES ===== */
.auth-hero-section {
    padding: 60px 0 40px;
}

.auth-hero-title {
    font-size: 2.5rem;
}

.auth-hero-subtitle {
    font-size: 1.1rem;
}

.auth-form-section {
    padding: 40px 0;
}

.auth-form-card {
    max-width: 450px;
}

.auth-form-header {
    padding: 2rem 1.5rem 1rem;
}

.auth-form-title {
    font-size: 1.6rem;
}

.auth-form-content {
    padding: 1.5rem;
}

.auth-form-footer {
    padding: 1rem 1.5rem 1.5rem;
}

/* Happening Now Section */
.happening-now-section {
    padding: 4rem 0;

    position: relative;
    overflow: hidden;
}

.happening-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

.happening-now-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.happening-now-section .section-subtitle {

    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.happening-now-card {
    background: white;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.happening-now-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a24, #ff6b6b);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

.happening-now-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.happening-now-card .event-status-badge .badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24) !important;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: pulse 2s ease-in-out infinite;
}

.happening-now-card .event-title {
    color: #2c3e50;
}

.happening-now-card .event-actions .btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.happening-now-card .event-actions .btn:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
}

.no-events-container {
    padding: 3rem 0;
}

.no-events-container i {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.no-events-container p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.no-events-container .small {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive adjustments for happening now section */
@media (max-width: 768px) {
    .happening-now-section {
        padding: 3rem 0;
    }
    
    .happening-now-section .section-title {
        font-size: 2rem;
    }
    
    .happening-now-section .section-subtitle {
        font-size: 1rem;
    }
}

/* ===== HAPPENING NOW SECTION ===== */
.happening-now-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.happening-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.happening-now-section .container {
    position: relative;
    z-index: 2;
}

.happening-now-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.happening-now-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.happening-now-section .badge-icon {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

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

.happening-now-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.happening-now-section .section-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.happening-now-section .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 380px));
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.happening-now-section .happening-now-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.happening-now-section .happening-now-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.happening-now-section .event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.happening-now-section .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.happening-now-section .happening-now-card:hover .event-image img {
    transform: scale(1.05);
}

.happening-now-section .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
}

.happening-now-section .placeholder-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.happening-now-section .live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff4757;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
}

.happening-now-section .live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.happening-now-section .event-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.happening-now-section .event-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.happening-now-section .event-title a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.happening-now-section .event-title a:hover {
    opacity: 0.8;
}

.happening-now-section .event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.happening-now-section .event-date {
    font-weight: 600;
}

.happening-now-section .event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.happening-now-section .location-icon {
    font-size: 0.875rem;
}

.happening-now-section .event-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.8;
    flex-grow: 1;
}

.happening-now-section .event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.happening-now-section .competition-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}


.happening-now-section .competition-badge.more {
    background: rgba(255, 255, 255, 0.1);
    font-style: italic;
}

.happening-now-section .event-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.happening-now-section .price-range {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.9;
}

.happening-now-section .btn-view-event {
    background: white;
    color: #667eea;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.happening-now-section .btn-view-event:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.happening-now-section .section-footer {
    text-align: center;
}

.happening-now-section .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.happening-now-section .btn-view-all:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.happening-now-section .btn-view-all .arrow {
    transition: transform 0.3s ease;
}

.happening-now-section .btn-view-all:hover .arrow {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .happening-now-section {
        padding: 3rem 0;
    }
    
    .happening-now-section .section-title {
        font-size: 2rem;
    }
    
    .happening-now-section .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .happening-now-section .event-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .happening-now-section .event-actions {
        align-items: flex-start;
        width: 100%;
    }
    
    .happening-now-section .btn-view-event {
        width: 100%;
        text-align: center;
    }
} 