/* ===== N2XT ESPORTS THEME - BLACK/RED ===== */

/* ===== CSS Variables ===== */
:root {
    /* Color Palette */
    --black-100: #000000;
    --black-90: #0a0a0a;
    --black-80: #111111;
    --black-70: #1a1a1a;
    --black-60: #222222;
    --black-50: #2a2a2a;
    
    --red-100: #ff0000;
    --red-90: #e10600;
    --red-80: #ff1a1a;
    --red-70: #ff3333;
    --red-60: #ff4d4d;
    --red-50: #ff6666;
    
    /* Accent Colors */
    --accent-dark: #330000;
    --accent-light: #660000;
    --accent-glow: #990000;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #f0f0f0;
    --text-tertiary: #cccccc;
    --text-gray: #888888;
    --text-light: #aaaaaa;
    
    /* Background Colors */
    --bg-primary: var(--black-90);
    --bg-secondary: var(--black-80);
    --bg-tertiary: var(--black-70);
    --bg-card: var(--black-60);
    --bg-hover: var(--black-50);
    
    /* Border Colors */
    --border-primary: var(--red-90);
    --border-secondary: var(--red-80);
    --border-light: var(--red-50);
    
    /* Gradients */
    --gradient-red: linear-gradient(135deg, var(--red-90), var(--red-100));
    --gradient-black: linear-gradient(135deg, var(--black-90), var(--black-100));
    --gradient-diagonal: linear-gradient(45deg, var(--black-90), var(--accent-dark));
    --gradient-card: linear-gradient(145deg, var(--black-60), var(--black-70));
    --gradient-games-title: linear-gradient(to right, var(--red-80), var(--red-100));
    
    /* Shadows & Glows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.9);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.95);
    
    --glow-red: 0 0 10px rgba(225, 6, 0, 0.5);
    --glow-red-md: 0 0 20px rgba(225, 6, 0, 0.7);
    --glow-red-lg: 0 0 30px rgba(225, 6, 0, 0.9);
    --glow-red-xl: 0 0 40px rgba(225, 6, 0, 1);
    
    /* Typography */
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
    --font-mono: 'Consolas', 'Monaco', monospace;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Z-index Layers */
    --z-below: -1;
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(225, 6, 0, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(225, 6, 0, 0.02) 0%, transparent 20%);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--red-80));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
    color: var(--text-tertiary);
}

a {
    color: var(--red-80);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--red-100);
}

/* ===== Layout Utilities ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

/* ===== Button Styles ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-red);
    color: var(--text-primary);
    box-shadow: var(--shadow-md), var(--glow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--glow-red-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--red-80);
    border-color: var(--red-80);
}

.btn-secondary:hover {
    background-color: rgba(225, 6, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--red-100);
    color: var(--red-100);
}

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

.btn-outline:hover {
    border-color: var(--red-80);
    color: var(--red-80);
}

/* ===== Navigation ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: var(--z-fixed);
    border-bottom: 1px solid var(--border-primary);
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-icon {
    color: var(--red-90);
    animation: pulse 2s infinite;
}

.logo-red {
    color: var(--red-90);
    text-shadow: var(--glow-red);
}

.nav-menu {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-tertiary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red-80);
    background-color: rgba(225, 6, 0, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ===== Hero Sections ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px var(--space-md) var(--space-xl);
    position: relative;
    overflow: hidden;
    background: var(--gradient-black);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(225, 6, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(225, 6, 0, 0.05) 0%, transparent 50%);
    animation: pulseBackground 10s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: var(--z-base);
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* ===== Card Styles ===== */
.card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--glow-red);
    border-color: var(--border-light);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--red-80);
    margin-bottom: var(--space-sm);
    transition: all var(--transition-normal);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--red-100);
}

/* ===== Grid Layouts ===== */
.grid {
    display: grid;
    gap: var(--space-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ===== Form Styles ===== */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: var(--bg-tertiary);
    border: 2px solid var(--black-50);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--red-80);
    box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
}

.form-control::placeholder {
    color: var(--text-gray);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ===== Table Styles ===== */
.table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.table th {
    background-color: var(--bg-tertiary);
    color: var(--red-80);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.table td {
    padding: 1rem;
    border-bottom: 1px solid var(--black-50);
    color: var(--text-tertiary);
}

.table tr:hover {
    background-color: rgba(225, 6, 0, 0.05);
}

/* ===== Badges ===== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.badge-secondary {
    background-color: var(--black-50);
    color: var(--text-secondary);
}

.badge-success {
    background-color: #10b981;
    color: white;
}

.badge-warning {
    background-color: #f59e0b;
    color: white;
}

/* ===== Animations ===== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulseBackground {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--glow-red);
    }
    50% {
        box-shadow: var(--glow-red-lg);
    }
}

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

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.text-red {
    color: var(--red-80);
}

.bg-red {
    background-color: var(--red-90);
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ===== Footer ===== */
.main-footer {
    background-color: var(--black-100);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid var(--border-primary);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--red-80);
    position: relative;
    padding-bottom: var(--space-xs);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-red);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-links a:hover {
    color: var(--red-80);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--black-50);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--red-80);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--black-50);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== Team Logo Styles ===== */
.team-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-lg) 0;
    padding: var(--space-md);
    position: relative;
}

.team-logo-container::before,
.team-logo-container::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-80), transparent);
    margin: 0 var(--space-md);
}

.team-logo {
    max-height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 0, 0.2));
    transition: all var(--transition-normal);
}

.team-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(255, 0, 0, 0.3));
}

/* ===== Games Page Specific Styles ===== */
.games-section {
    padding: var(--space-xxl) var(--space-md);
    background: transparent;
    position: relative;
}

.games-section .section-title {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-xxl);
    background: var(--gradient-games-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-align: center;
}

.games-section .section-title::after {
    width: 150px;
    height: 6px;
    bottom: -15px;
}

.games-hero {
    min-height: 40vh;
    background: transparent;
    padding-top: 80px;
    padding-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

/* ===== Roster Page Specific Styles ===== */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.player-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    height: 100%;
}

.player-card:hover {
    transform: translateY(-10px);
    border-color: var(--red-80);
    box-shadow: var(--shadow-lg), var(--glow-red);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.player-game {
    color: var(--red-80);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.player-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.roster-name {
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roster-players {
    color: var(--red-80);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: 1rem;
    min-height: 24px;
}

.player-bio, .players-bio {
    color: var(--text-gray);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    flex-grow: 1;
    line-height: 1.5;
    position: relative;
}

.player-stats {
    display: flex;
    justify-content: space-around;
    margin: var(--space-md) 0;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--black-50);
    border-bottom: 1px solid var(--black-50);
    flex-shrink: 0;
}

.stat {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-80);
    margin-bottom: var(--space-xs);
}

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

.player-social {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: auto;
    padding-top: var(--space-md);
    flex-shrink: 0;
}

.player-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--black-50);
    border-radius: 50%;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.player-social a:hover {
    background-color: var(--red-80);
    transform: translateY(-3px);
}

/* Game Filter Styles */
.game-filter {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--black-50);
    color: var(--text-gray);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-red);
    color: var(--text-primary);
    border-color: transparent;
    box-shadow: var(--shadow-md), var(--glow-red);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid,
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--black-80);
        width: 100%;
        padding: var(--space-md);
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-primary);
        z-index: var(--z-dropdown);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .games-grid,
    .players-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .games-section .section-title {
        font-size: 2.5rem;
    }
    
    .player-card {
        min-height: auto;
    }
    
    .roster-name {
        min-height: auto;
    }
    
    .game-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1rem;
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-xxl: 3rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .games-section .section-title {
        font-size: 2rem;
    }
    
    .player-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .roster-name {
        font-size: 1.5rem;
    }
    
    .team-logo-container {
        margin: var(--space-md) 0;
        padding: var(--space-sm);
    }
    
    .team-logo-container::before,
    .team-logo-container::after {
        margin: 0 var(--space-sm);
    }
    
    .games-grid .player-card {
        margin-bottom: var(--space-md);
        border-bottom: 1px solid var(--border-light);
        padding-bottom: var(--space-md);
    }
}
.sponsor-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 1rem;
}