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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

header {
    background: #6A1B9A;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.8rem;
    opacity: 0.9;
    font-style: italic;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #E1BEE7;
}

#hero {
    height: 100vh;
    background: linear-gradient(135deg, #6A1B9A 0%, #1A237E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E1BEE7;
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #6A1B9A;
}

#about {
    background: #f8f9fa;
    padding: 6rem 0;
}

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

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
}

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

.about-card h3 {
    color: #6A1B9A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-card ul {
    list-style: none;
    text-align: left;
}

.about-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.about-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6A1B9A;
    font-weight: bold;
}

/* Timeline Styles */
#timeline {
    background: white;
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #6A1B9A;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #6A1B9A;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    min-width: 130px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 0 2rem;
    flex: 1;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    color: #6A1B9A;
    margin-bottom: 0.5rem;
}

/* Coaching Section */
#coaching {
    background: #f8f9fa;
    padding: 6rem 0;
}

.coaching-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coaching-highlights {
    list-style: none;
    margin-top: 1rem;
}

.coaching-highlights li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.coaching-highlights li:before {
    content: '🏏';
    position: absolute;
    left: 0;
}

.coaching-testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.coaching-testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.coaching-testimonial:before {
    content: '"';
    font-size: 4rem;
    color: #6A1B9A;
    position: absolute;
    top: -1rem;
    left: 1rem;
    opacity: 0.3;
}

/* SportsNest Section */
#sportsnest {
    background: white;
    padding: 6rem 0;
}

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

.partners {
    margin: 2rem 0;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.partner-logos span {
    background: #6A1B9A;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

/* DressingRoomShow Section */
#dressingroom {
    background: #6A1B9A;
    color: white;
    padding: 6rem 0;
}

#dressingroom h2 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 4rem;
    font-style: italic;
}

.dressingroom-intro {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
}

.intro-content h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.channel-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF0000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.youtube-channel-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

.youtube-icon {
    font-size: 1.2rem;
}

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

.video-section h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.placeholder-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.placeholder-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.placeholder-thumbnail {
    height: 180px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.placeholder-card h4 {
    color: white;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.placeholder-card p {
    padding: 0 1rem 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.show-highlights h3 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.highlight-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: white;
    margin-bottom: 1rem;
}

.highlight-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* YouTube Video Embed Styles */
.youtube-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
}

.youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Media Section */
#media {
    background: #f8f9fa;
    padding: 6rem 0;
}

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

.media-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.media-card:hover {
    transform: translateY(-5px);
}

.media-card h3 {
    color: #6A1B9A;
    margin-bottom: 1rem;
}

/* Blog Section */
#blog {
    background: white;
    padding: 6rem 0;
}

.blog-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.blog-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card h3 {
    color: #6A1B9A;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blog-meta {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.tag {
    background: #E1BEE7;
    color: #6A1B9A;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

/* Image Gallery Styles */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.image-grid img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.coaching-gallery {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E1BEE7;
}

.coaching-gallery h4 {
    color: #6A1B9A;
    margin-bottom: 1rem;
    text-align: center;
}

.media-gallery {
    margin-top: 3rem;
}

.media-gallery h3 {
    color: #6A1B9A;
    text-align: center;
    margin-bottom: 2rem;
}

.career-gallery {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
    border-radius: 20px 20px 0 0;
}

.career-gallery h3 {
    color: #6A1B9A;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.career-images {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.career-images img {
    height: 250px;
}

.view-more-btn {
    display: block;
    margin: 3rem auto 0;
    background: #6A1B9A;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background: #E1BEE7;
    color: #6A1B9A;
    transform: translateY(-2px);
}

/* Contact Section */
#contact {
    background: #6A1B9A;
    color: white;
    padding: 6rem 0;
}

#contact h2 {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-info li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.contact-info li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E1BEE7;
}

.contact-info a {
    color: #E1BEE7;
    text-decoration: none;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    font-family: 'Open Sans', sans-serif;
}

.contact-form button {
    background: white;
    color: #6A1B9A;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: #E1BEE7;
    transform: translateY(-2px);
}

footer {
    background: #1A237E;
    color: white;
    padding: 2rem 0;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E1BEE7;
}

/* Cricket Quiz Game Styles */
#game {
    background: linear-gradient(135deg, #1A237E 0%, #6A1B9A 100%);
    color: white;
    padding: 6rem 0;
}

#game h2 {
    color: white;
}

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

.quiz-screen {
    display: none;
}

.quiz-screen.active {
    display: block !important;
}

#quiz-start.active {
    display: block !important;
}

.quiz-intro {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
}

.quiz-intro h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.quiz-intro p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quiz-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E1BEE7;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.quiz-progress span {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.progress-bar {
    width: 200px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #E1BEE7;
    width: 0%;
    transition: width 0.3s ease;
}

.quiz-timer {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E1BEE7;
}

.quiz-score {
    font-weight: 600;
}

.question-container {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.question-container h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.answer-btn {
    padding: 1.2rem;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.answer-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.answer-btn.correct {
    background: #4CAF50;
    border-color: #4CAF50;
    animation: pulse 0.5s;
}

.answer-btn.wrong {
    background: #F44336;
    border-color: #F44336;
    animation: shake 0.5s;
}

.answer-btn.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.feedback {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
}

.feedback.hidden {
    display: none;
}

.feedback-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

.feedback-content p {
    margin-top: 0.5rem;
    opacity: 0.9;
}

.results-container {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
}

.results-container h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.final-score {
    margin: 2rem 0;
}

.score-circle {
    display: inline-block;
    position: relative;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 2rem;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.score-circle span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E1BEE7;
}

.score-total {
    font-size: 1.5rem !important;
    opacity: 0.8;
}

.score-message {
    font-size: 1.3rem;
    margin: 2rem 0;
    font-weight: 600;
    color: #E1BEE7;
}

.results-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

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

.result-stat span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #E1BEE7;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.secondary-button:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    nav ul li {
        margin-left: 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        min-width: auto;
        position: relative;
        z-index: 2;
    }
    
    .timeline-content {
        margin-left: 1rem;
    }
    
    .coaching-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* DressingRoomShow responsive */
    .channel-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .dressingroom-intro {
        padding: 2rem;
    }
    
    .video-placeholder,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    /* Quiz responsive styles */
    .quiz-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .quiz-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .progress-bar {
        width: 150px;
    }
    
    .answers-grid {
        grid-template-columns: 1fr;
    }
    
    .results-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quiz-intro {
        padding: 2rem;
    }
    
    .question-container {
        padding: 1.5rem;
    }
}