/* === LUXURY CODM ESPORTS STYLES === */
/* Gold #FFD700 | Red #FF0000 | Black #0A0A0A */

:root {
    --gold: #FFD700;
    --gold-light: #FFF8DC;
    --gold-dark: #D4AF37;
    --red: #FF0000;
    --red-dark: #8B0000;
    --red-glow: rgba(255, 0, 0, 0.3);
    --black: #0A0A0A;
    --black-matte: #1A1A1A;
    --black-luxury: #0F0F0F;
    --gray-diamond: #2A2A2A;
    --diamond-glow: rgba(255, 215, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Orbitron', sans-serif;
}

body {
    background-color: var(--black);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

/* === ANIMATED LUXURY BACKGROUND === */
.luxury-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, var(--black) 0%, var(--black-luxury) 100%);
}

.gold-particle {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--gold) 50%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, var(--gold) 50%, transparent 100%),
        radial-gradient(2px 2px at 60% 20%, var(--gold) 50%, transparent 100%),
        radial-gradient(3px 3px at 80% 50%, var(--gold) 50%, transparent 100%),
        radial-gradient(1px 1px at 10% 90%, var(--gold) 50%, transparent 100%);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-1000px) rotate(360deg); }
}

/* === PREMIUM NAVIGATION === */
.luxury-nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo-red {
    color: var(--red);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.logo-badge {
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-weight: bold;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 0, 0, 0.1));
    color: var(--gold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* === LUXURY HERO SECTION === */
.luxury-hero {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
}

.hero-tag {
    margin-bottom: 2rem;
}

.tag-badge {
    background: linear-gradient(45deg, var(--gold), var(--red));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1;
}

.text-gold {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-red {
    color: var(--red);
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    background: linear-gradient(45deg, var(--red), #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 3rem;
    font-family: 'Orbitron', sans-serif;
}

/* === TEAM ROSTER STYLES === */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.player-card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.player-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--red));
}

.player-flag {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.player-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.player-role {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.player-stats {
    display: flex;
    gap: 1rem;
}

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

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--red);
}

.stat-label {
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
}

/* === TEAM PAGE STYLES === */
.team-header {
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

.team-badge-large {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.team-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--gold), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-tagline {
    font-size: 1.5rem;
    color: #aaa;
    font-style: italic;
    margin-bottom: 1rem;
}

.team-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.meta-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === UNDER CONSTRUCTION PAGE === */
.construction-container {
    text-align: center;
    padding: 6rem 2rem;
}

.construction-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: spin 4s linear infinite;
}

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

.construction-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
}

.construction-message {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #aaa;
    font-size: 0.9rem;
}

.construction-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
}

.construction-progress {
    max-width: 500px;
    margin: 3rem auto;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--red));
    border-radius: 5px;
    animation: progress 2s ease-in-out;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 65%; }
}

.progress-text {
    color: var(--gold);
    font-weight: 600;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .luxury-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .diamond-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-center {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .construction-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* === BUTTON STYLES === */
.btn-primary, .btn-secondary, .btn-discord {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--red), var(--red-dark));
    color: white;
}

.btn-discord {
    background: linear-gradient(45deg, #5865F2, #7289DA);
    color: white;
}

.btn-primary:hover, .btn-secondary:hover, .btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* === FOOTER === */
.luxury-footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid var(--gold);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-tag {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

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

.link-group {
    min-width: 150px;
}

.link-group h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.link-group a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
/* === ACHIEVEMENT STYLES === */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.achievement-card {
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.9));
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.achievement-card.gold::before {
    background: linear-gradient(to bottom, #FFD700, #FFA500);
}

.achievement-card.silver::before {
    background: linear-gradient(to bottom, #C0C0C0, #A0A0A0);
}

.achievement-card.special::before {
    background: linear-gradient(to bottom, #FF0000, #8B0000);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.achievement-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.8rem;
}

.achievement-card.gold .achievement-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.achievement-card.silver .achievement-badge {
    background: linear-gradient(45deg, #C0C0C0, #A0A0A0);
    color: #333;
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.3);
}

.achievement-card.special .achievement-badge {
    background: linear-gradient(45deg, #FF0000, #8B0000);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.trophy-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--black);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    border: 2px solid currentColor;
}

.achievement-content {
    flex: 1;
}

.achievement-content h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.achievement-league {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-desc {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Trophy Summary */
.trophy-summary {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 0, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.trophy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trophy-stat {
    padding: 1.5rem;
}

.trophy-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.trophy-icon.gold {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.trophy-icon.silver {
    background: linear-gradient(45deg, #C0C0C0, #A0A0A0);
    color: #333;
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.3);
}

.trophy-icon.special {
    background: linear-gradient(45deg, #FF0000, #8B0000);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.trophy-count {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.trophy-label {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .trophy-stats {
        grid-template-columns: 1fr;
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
