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

body {
    font-family: 'Inter', sans-serif;
    background: white;
    min-height: 100vh;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #a05670 0%, #8d4a5e 100%);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Main Hero Section */
.hero-section {
    padding: 60px 20px;
    min-height: calc(100vh - 48px);
}

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

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.left-content {
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-text {
    font-weight: 800;
    font-size: 18px;
    color: #2c1810;
    line-height: 1.2;
    letter-spacing: 1px;
}

.register-text {
    margin-bottom: 15px;
}

.register-text p {
    font-size: 24px;
    font-weight: 600;
    color: #2c1810;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 56px;
    font-weight: 700;
    color: #2c1810;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight {
    color: #732445;
    font-weight: 800;
}

.event-details {
    margin-bottom: 40px;
}

.description-text {
    font-size: 24px;
    color: #2c1810;
    line-height: 1.5;
    font-weight: 400;
}

.strikethrough {
    text-decoration: line-through;
    color: #666;
}

.price {
    color: #22c55e;
    font-weight: 800;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 40px;
}

.countdown-timer {
    background: #2c1810;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
}

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

.time-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.time-label {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

.time-separator {
    font-size: 36px;
    color: white;
    font-weight: 800;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #732445 0%, #5a1c35 100%);
    color: white;
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(115, 36, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(115, 36, 69, 0.4);
}

.button-subtext {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
}

/* Right Content - Coaches Grid */
.right-content {
    position: relative;
}

.coaches-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.coach-photo {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.coach-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coach-photo.large {
    height: 200px;
}

.coach-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.coach-photo.small {
    height: 120px;
}

/* Placeholder for missing images */
.coach-photo img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Second Section */
.second-section {
    background: #732445;
    padding: 80px 20px;
    color: white;
}

.second-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Laptops Container */
.laptops-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.laptop-group {
    display: flex;
    gap: 20px;
    align-items: center;
    perspective: 1000px;
    margin-bottom: 40px;
}

.laptop {
    width: 200px;
    height: 140px;
    background: #2c2c2c;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.laptop-1 {
    transform: rotateY(15deg) rotateX(5deg);
    z-index: 3;
}

.laptop-2 {
    transform: rotateY(0deg) rotateX(5deg) scale(1.1);
    z-index: 4;
}

.laptop-3 {
    transform: rotateY(-15deg) rotateX(5deg);
    z-index: 3;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.video-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    font-size: 24px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.video-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: #d4a853;
    color: black;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

.live-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: bold;
}

/* Challenge Logo */
.challenge-logo {
    display: flex;
    justify-content: center;
}

.logo-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.challenge-icon {
    width: 40px;
    height: 40px;
}

.challenge-text {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: white;
}

/* Right Content */
.second-right-content {
    max-width: 500px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-subtitle strong {
    font-weight: 700;
    color: white;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

.section-description strong {
    font-weight: 700;
    color: white;
}

/* Support Button */
.support-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.support-btn {
    background: rgba(44, 24, 16, 0.9);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: rgba(44, 24, 16, 1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr 350px;
        gap: 60px;
    }
    
    .main-heading {
        font-size: 42px;
    }
    
    .second-content-wrapper {
        gap: 60px;
    }
    
    .section-heading {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-heading {
        font-size: 36px;
    }
    
    .countdown-timer {
        gap: 15px;
        padding: 25px;
    }
    
    .time-number {
        font-size: 36px;
    }
    
    .coaches-grid {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .second-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-heading {
        font-size: 36px;
    }
    
    .laptop-group {
        gap: 15px;
    }
    
    .laptop {
        width: 160px;
        height: 112px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .countdown-timer {
        gap: 10px;
        padding: 20px;
        flex-wrap: wrap;
    }
    
    .time-number {
        font-size: 28px;
    }
    
    .time-separator {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 20px 40px;
        font-size: 18px;
    }
    
    .second-section {
        padding: 60px 15px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .laptop-group {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .laptop {
        width: 140px;
        height: 98px;
    }
    
    .laptop-1, .laptop-2, .laptop-3 {
        transform: none;
    }
}

@media (max-width: 480px) {
    .top-banner {
        font-size: 12px;
        padding: 10px 15px;
    }
    
    .main-heading {
        font-size: 24px;
    }
    
    .coach-photo-row {
        grid-template-columns: 1fr;
    }
    
    .coach-photo.small {
        height: 150px;
    }
}
