/* styles.css */

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

:root {
    --primary-red: #E63946;
    --dark-bg: #0D0D0D;
    --dark-card: #1A1A1A;
    --dark-secondary: #262626;
    --gold: #FFD700;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --accent-gray: #404040;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--accent-gray);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s;
}

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

.nav-links a:hover:after {
    width: 100%;
}

.lang-switch {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--accent-gray);
    color: var(--text-secondary);
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 4px;
}

.lang-btn.active,
.lang-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    padding: 20px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary-red);
}

.gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 300;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.stat-box {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--accent-gray);
    transition: transform 0.3s, border-color 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-red);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--accent-gray);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
}

.hero-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    border: 2px solid var(--accent-gray);
    transition: transform 0.3s, border-color 0.3s;
}

.hero-img:hover {
    transform: scale(1.02);
    border-color: var(--primary-red);
}

/* About Section */
.about {
    padding: 100px 40px;
    background: var(--dark-secondary);
}

.about h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-red);
}

.about-text {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
}

/* Career Section */
.career {
    padding: 100px 40px;
}

.career h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: var(--primary-red);
}

.career-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.career-item.right {
    grid-template-columns: 2fr 1fr;
}

.team-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--dark-card);
    border-radius: 8px;
    border: 2px solid var(--accent-gray);
    transition: border-color 0.3s;
}

.team-logo:hover {
    border-color: var(--primary-red);
}

.team-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.team-logo img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    display: block;
    margin: 0 auto;
}

.career-content h3 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--gold);
}

.period {
    font-size: 16px;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 600;
}

.role {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

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

.skills-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-secondary);
}

.skills-list li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Results Section */
.results {
    padding: 100px 40px;
    background: var(--dark-secondary);
}

.results h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-red);
}

.earnings-box {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 40px;
    background: var(--dark-card);
    border-radius: 8px;
    border: 2px solid var(--gold);
}

.earnings-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--gold);
    margin-bottom: 10px;
}

.earnings-label {
    font-size: 20px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.earnings-desc {
    font-size: 16px;
    color: var(--text-secondary);
}

.chart-container {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 40px;
    background: var(--dark-card);
    border-radius: 8px;
    min-height: 400px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 40px;
}

.testimonials h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-red);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: var(--dark-card);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid var(--accent-gray);
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.testimonial-header {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
}

.testimonial-img-screenshot {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s;
}

.testimonial-img-screenshot:hover {
    opacity: 0.8;
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-red);
}

.player-testimonials {
    max-width: 1000px;
    margin: 0 auto;
}

.player-testimonials h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--gold);
}

.player-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--accent-gray);
    margin-bottom: 30px;
    transition: border-color 0.3s;
}

.player-card:hover {
    border-color: var(--primary-red);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.player-photo {
    width: 100px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    border: 3px solid var(--primary-red);
}

.player-info h4 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.player-team {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 600;
}

.player-quote {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.recommendations-editable {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 8px;
    border: 2px dashed var(--accent-gray);
    text-align: center;
}

.edit-note {
    color: var(--text-secondary);
    font-style: italic;
}

/* Services Section */
.services {
    padding: 100px 40px;
    background: var(--dark-secondary);
}

.services h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-red);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--accent-gray);
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gold);
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 12px 0 12px 25px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-card ul li:before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.availability {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: var(--dark-card);
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--primary-red);
}

.availability p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

.availability strong {
    color: var(--primary-red);
}

/* Contact Section */
.contact {
    padding: 100px 40px;
}

.contact h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-red);
}

.contact-intro {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--accent-gray);
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
    word-break: break-all;
}

.contact-link:hover {
    color: var(--gold);
}

/* Footer */
footer {
    background: var(--dark-card);
    padding: 60px 40px 30px;
    border-top: 1px solid var(--accent-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand h3 {
    font-size: 32px;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--accent-gray);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .nav-links {
        display: none;
    }
    
    .career-item,
    .career-item.right {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .player-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background-color: var(--primary-red);
    color: var(--text-primary);
}