/* Modern Black & Gold Theme */
:root {
    --primary: #FFD700;
    --primary-dark: #FFA500;
    --bg-dark: #0a0a0a;
    --card-bg: #121212;
    --text-light: #f5f5f5;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

/* Common Game Page Styles */
.game-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.game-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.game-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.team-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    background: rgba(10, 10, 10, 0.85);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 70, 85, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px;
    box-sizing: border-box;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px auto 0;
    max-width: 800px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #FFD700;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.game-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.game-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
}

.game-hero h1 {
    font-size: 5rem;
    margin: 0 0 30px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.2;
}

.game-hero p {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    opacity: 0.7;
    transition: all 0.3s ease;
}

h1:hover .gradient-text::after {
    height: 4px;
}

.section-header {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
font-size: 3rem;
color: #fff;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 3px;
font-weight: 700;
background: linear-gradient(45deg, #FF4655, #FFD700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-header .highlight {
background: linear-gradient(45deg, #FF4655, #FFD700);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-divider {
width: 80px;
height: 4px;
background: linear-gradient(90deg, var(--primary), var(--primary-dark));
margin: 0 auto 20px;
position: relative;
}

.section-divider::before,
.section-divider::after {
content: '';
position: absolute;
width: 10px;
height: 10px;
background: var(--primary);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
}

.section-divider::before {
left: -15px;
}

.section-divider::after {
right: -15px;
}

.section-description {
font-size: 1.2rem;
color: #ddd;
max-width: 800px;
margin: 0 auto;
line-height: 1.8;
font-weight: 300;
letter-spacing: 0.5px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #0a0a0a url('/assets/img/valorantgame.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.team-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(10, 10, 10, 0.9);
z-index: 1;
}

.team-section h2 {
    text-align: center;
    color: #fff;
    margin: 0 auto 30px;
    font-size: 3rem;
    position: relative;
    display: block;
    width: 100%;
    left: auto;
    transform: none;
    padding: 0 20px;
}

.team-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.player-card {
    background: rgba(20, 20, 20, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 70, 85, 0.3);
}

.player-card:hover .player-img img {
    transform: scale(1.1);
    opacity: 1;
}

.player-img {
    width: 100%;
    height: 250px;
    margin: 0;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid rgba(255, 70, 85, 0.3);
}


.player-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%);
}

.player-card:hover .player-img img {
    transform: scale(1.05);
}

.player-role {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #FF4655, #FF8E53);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.player-card:hover .player-role {
    transform: translateY(0);
    opacity: 1;
}


.player-info {
    padding: 20px 15px;
    text-align: center;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(5px);
}

.player-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.player-info p {
    color: #bbb;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    display: block;
}

.player-social {
    display: none;
}

.player-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFD700;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.player-social a:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

/* Matches Section */
.matches-section {
    padding: 80px 0;
    background: #141414;
}

.matches-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

.matches-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.match-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.team {
    display: flex;
    align-items: center;
    flex: 1;
}

.team:first-child {
    justify-content: flex-end;
    text-align: right;
}

.team:last-child {
    justify-content: flex-start;
    text-align: left;
}

.team img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 15px;
}

.team span {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
}

.vs {
    background: #FFD700;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 20px;
    flex-shrink: 0;
}

.match-info {
    text-align: center;
    margin-top: 20px;
}

.league {
    display: block;
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.date {
    display: block;
    color: #aaa;
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-watch {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Games Section (Home Page) */
.games-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/logofondo.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.games-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: stretch;
    width: 100%;
    position: relative;
    z-index: 2;
}

.games-grid .team-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    min-height: auto;
    display: block;
}

.games-grid .team-section h2 {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.games-grid .team-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #FFD700;
}

.game-card {
    position: relative;
    height: 380px;
    width: 100%;
    margin: 0;
    perspective: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.game-card:hover .game-logo img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.game-card:hover .game-logo {
    transform: scale(0.95);
}

.game-card:hover .card-front {
    transform: translateY(-100%);
}

.game-card:hover .card-back {
    opacity: 1;
    transform: translateY(0);
}

.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 215, 0, 0.2);
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(100%);
}

.game-card h3 {
    color: #FFD700;
    font-size: 1.6rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
    padding-bottom: 12px;
}

.game-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #FFD700;
}

.game-card p {
    color: #eee;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.game-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000 !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0,0,0,0.1);
    cursor: pointer;
    margin-top: 20px;
    font-size: 0.85rem;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    min-height: 45px;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

.btn-watch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-watch:hover::before {
    opacity: 1;
}

.btn-watch:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 215, 0, 0.4);
}

.btn-watch:hover {
    background: linear-gradient(90deg, #772ce8, #5c1cb4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(145, 71, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-hero h1 {
        font-size: 2.2rem;
    }
    
    .game-hero p {
        font-size: 1.1rem;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .match-teams {
        flex-direction: column;
        gap: 20px;
    }
    
    .team {
        width: 100%;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .vs {
        margin: 10px 0;
    }
    
    .match-card {
        padding: 20px 15px;
    }
}

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

.player-card, .match-card {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.player-card:nth-child(1) { animation-delay: 0.1s; }
.player-card:nth-child(2) { animation-delay: 0.2s; }
.player-card:nth-child(3) { animation-delay: 0.3s; }
.match-card { animation-delay: 0.4s; }

/* ========== VALORANT PAGE REDESIGN ========== */

/* Hero Section */
.valorant-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 87, 0.3), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(255, 77, 87, 0.1) 25%, rgba(255, 77, 87, 0.1) 26%, transparent 27%, transparent 74%, rgba(255, 77, 87, 0.1) 75%, rgba(255, 77, 87, 0.1) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 77, 87, 0.1) 25%, rgba(255, 77, 87, 0.1) 26%, transparent 27%, transparent 74%, rgba(255, 77, 87, 0.1) 75%, rgba(255, 77, 87, 0.1) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    animation: moveGrid 10s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-content-valorant {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 77, 87, 0.2);
    border: 1px solid rgba(255, 77, 87, 0.5);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.valorant-hero h1 {
    font-size: 8rem;
    font-weight: 900;
    margin: 0;
    letter-spacing: 8px;
    background: linear-gradient(135deg, #FF4D57, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 77, 87, 0.5);
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 77, 87, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 77, 87, 0.8)); }
}

.hero-accent {
    color: #FF4D57;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin: 20px 0 50px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-stats-valorant {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 25px 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.stat-card:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
}

.stat-name {
    font-size: 0.9rem;
    color: #FFD700;
    letter-spacing: 1px;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #FF4D57;
    font-size: 0.9rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
}

.scroll-down-arrow svg {
    animation: slideDown 1.5s ease-in-out infinite;
}

@keyframes slideDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Team Section */
.team-section-new {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

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

.section-header-new {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF4D57, transparent);
}

.section-header-new h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FF4D57, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-new p {
    font-size: 1.1rem;
    color: #aaa;
    letter-spacing: 1px;
}

/* Players Grid */
.players-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.player-card-new {
    position: relative;
    background: rgba(15, 15, 15, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.player-card-new:nth-child(1) { animation-delay: 0.1s; }
.player-card-new:nth-child(2) { animation-delay: 0.2s; }
.player-card-new:nth-child(3) { animation-delay: 0.3s; }

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 77, 87, 0.3), rgba(255, 215, 0, 0.1)) border-box;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.player-card-new:hover .card-border {
    opacity: 1;
}

.player-card-new:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 77, 87, 0.3);
    background: rgba(20, 20, 20, 0.95);
}

.player-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.player-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.player-card-new:hover .player-img-new {
    transform: scale(1.1);
}

.player-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
}

.role-badge {
    background: linear-gradient(135deg, #FF4D57, #FF6B7A);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.player-info-new {
    padding: 25px;
}

.player-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.player-nick {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
    margin: 0;
    letter-spacing: 1px;
}

.player-status {
    font-size: 0.75rem;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.player-real-name {
    color: #aaa;
    margin: 5px 0;
    font-size: 0.9rem;
}

.player-description {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 12px 0 15px;
    min-height: 40px;
}

.player-stats-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 77, 87, 0.2);
    border-bottom: 1px solid rgba(255, 77, 87, 0.2);
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mini-label {
    font-size: 0.8rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.mini-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 77, 87, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.mini-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF4D57, #FF6B7A);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.player-card-new:hover .mini-fill {
    box-shadow: 0 0 10px rgba(255, 77, 87, 0.6);
}

.player-social-new {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 15px;
}

.player-social-new a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 77, 87, 0.1);
    color: #FF4D57;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 77, 87, 0.2);
    font-size: 0.9rem;
}

.player-social-new a:hover {
    background: rgba(255, 77, 87, 0.3);
    border-color: rgba(255, 77, 87, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 77, 87, 0.3);
}

/* ===== FORMAL REDESIGN STYLES ===== */

/* Hero Section Formal */
.valorant-hero-formal {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    z-index: 1;
}

.hero-background-formal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content-formal {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 80px 40px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-decorative-top {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 0 auto 30px;
}

.hero-title-formal {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    line-height: 1.1;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: #FFD700;
    margin: 30px auto;
}

.hero-tagline {
    font-size: 1.3rem;
    color: #FFD700;
    letter-spacing: 3px;
    margin: 0 0 10px;
    font-weight: 300;
}

.hero-description-formal {
    font-size: 1rem;
    color: #ccc;
    margin: 15px 0 50px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hero-stats-formal {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.stat-formal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    padding-bottom: 20px;
}

.stat-formal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.stat-number-formal {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700;
    display: block;
}

.stat-label-formal {
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Team Section Formal */
.team-section-formal {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

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

.section-header-formal {
    text-align: center;
    margin-bottom: 100px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header-formal h2 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #FFD700;
    margin-bottom: 15px;
}

.section-subtitle-formal {
    font-size: 1.1rem;
    color: #aaa;
    letter-spacing: 1px;
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Players Grid Formal */
.players-grid-formal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

/* Player Card Formal */
.player-card-formal {
    position: relative;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out backwards;
}

.player-card-formal:nth-child(1) { animation-delay: 0.1s; }
.player-card-formal:nth-child(2) { animation-delay: 0.2s; }
.player-card-formal:nth-child(3) { animation-delay: 0.3s; }

.player-card-formal:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    z-index: 10;
}

.player-image-wrapper-formal {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.player-img-formal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.player-card-formal:hover .player-img-formal {
    transform: scale(1.1);
}

.role-badge-formal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
    backdrop-filter: blur(5px);
}

.player-info-formal {
    padding: 30px;
}

.player-nick-formal {
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFD700;
    margin: 0 0 5px;
    letter-spacing: 1px;
}

.player-real-name-formal {
    font-size: 0.95rem;
    color: #aaa;
    margin: 0 0 15px;
    letter-spacing: 0.5px;
}

.player-description-formal {
    font-size: 0.9rem;
    color: #bbb;
    margin: 0 0 25px;
    line-height: 1.5;
}

.player-skills-formal {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-name {
    font-size: 0.85rem;
    color: #FFD700;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.skill-bar {
    height: 6px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.player-card-formal:hover .skill-fill {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.player-social-formal {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.player-social-formal a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.95rem;
}

.player-social-formal a:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

/* CTA Section Formal */
.cta-section-formal {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    z-index: 1;
}

.cta-background-formal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.cta-content-formal {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.cta-content-formal h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFD700;
    margin: 0 0 20px;
    letter-spacing: 1px;
}

.cta-content-formal p {
    font-size: 1.1rem;
    color: #aaa;
    margin: 0 0 40px;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.cta-button-formal {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.cta-button-formal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.cta-button-formal:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .valorant-hero h1 {
        font-size: 4rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats-valorant {
        gap: 15px;
    }
    
    .stat-card {
        padding: 15px 25px;
        min-width: 120px;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .section-header-new h2 {
        font-size: 2.5rem;
    }
    
    .players-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Formal Responsive */
    .hero-title-formal {
        font-size: 3.5rem;
    }

    .hero-stats-formal {
        gap: 30px;
    }

    .section-header-formal h2 {
        font-size: 2.5rem;
    }

    .players-grid-formal {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-content-formal h2 {
        font-size: 2rem;
    }

    .cta-button-formal {
        padding: 14px 40px;
        font-size: 0.95rem;
    }
}
