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

:root {
    --primary-color: #c41e3a;
    --secondary-color: #002d72;
    --accent-color: #bf0d3e;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.site-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-info {
    text-align: center;
    max-width: 700px;
}

.player-info h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.career-years {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 500;
}

.career-summary {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 30px;
}

.career-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Video Gallery */
.video-gallery {
    padding: 60px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: fadeIn 0.5s ease forwards;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-card.placeholder {
    cursor: default;
}

.video-card.placeholder:hover {
    transform: none;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:not(.placeholder):hover .play-icon {
    transform: scale(1.1);
    background: var(--white);
}

.coming-soon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.video-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    max-width: 900px;
    width: 100%;
    background: var(--bg-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-content video {
    width: 100%;
    display: block;
}

.modal-title {
    color: var(--white);
    padding: 15px 20px 5px;
    font-size: 1.2rem;
}

.modal-description {
    color: rgba(255, 255, 255, 0.7);
    padding: 0 20px 20px;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 5px;
}

.footer-note {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.8rem;
    }

    .hero {
        padding: 40px 0;
    }

    .player-info h2 {
        font-size: 1.6rem;
    }

    .career-summary {
        font-size: 1rem;
    }

    .career-stats {
        gap: 20px;
    }

    .stat {
        padding: 15px 20px;
    }

    .stat-value {
        font-size: 2rem;
    }

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

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

/* Animation for video cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card:nth-child(2) {
    animation-delay: 0.1s;
}

.video-card:nth-child(3) {
    animation-delay: 0.2s;
}

.video-card:nth-child(4) {
    animation-delay: 0.3s;
}

.video-card:nth-child(5) {
    animation-delay: 0.4s;
}

.video-card:nth-child(6) {
    animation-delay: 0.5s;
}

.nolink {
    cursor: default;
    text-decoration: none;
    color:  white;
}