/* Global Styles & Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Performance & Scroll Optimizations */
html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
}

body {
    overscroll-behavior: none;
    will-change: scroll-position;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Performance-optimized elements */
.header,
.player-info-card,
.settings-card,
.player-detail-grid,
.similar-players {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.header {
    z-index: 10000;
    position: relative;
}

/* Hover effects removed for better UX */

/* Layout & Performance Optimizations */
.player-detail-section {
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.container {
    contain: layout style;
}

/* Image Performance & Lazy Loading */
.player-avatar img,
.similar-player-avatar img {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Lazy loading styles */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

img[data-src].loaded,
img:not([data-src]) {
    opacity: 1;
    animation: none;
    background: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Image optimization */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (prefers-reduced-motion: reduce) {
    img[data-src] {
        animation: none;
    }
}

body {
    font-family: 'Saira', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Glass Effect Utilities */
.glass {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-strong {
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Base Elements */
a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Prosbind Header - Fixed Metrics (GLOBAL) ===== */
*,*::before,*::after{box-sizing:border-box}
:root{
  --hdr-h:70px; --container-w:1200px; --x-pad:2rem;
  --nav-gap:3.5rem; --brand:#10b981; --text:#374151; --border:#e5e7eb;
}
body{margin:0;padding-top:var(--hdr-h)}
.header{position:fixed;top:0;left:0;right:0;height:var(--hdr-h);z-index:1000;
  background:#fff;border-bottom:1px solid var(--border);box-shadow:0 1px 3px rgba(0,0,0,.1)}
.header-container{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;height:100%;
  max-width:var(--container-w);margin:0 auto;padding:0 var(--x-pad)}
.header-left{justify-self:start}
.header-center{justify-self:center}
.header-right{justify-self:end}
.logo-link img{display:block;height:40px;width:auto}
.dev-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.35rem .6rem;border-radius:.6rem;
  background:rgba(255,0,0,.06);color:#b91c1c;font-weight:600;font-size:.9rem;line-height:1;border:1px solid rgba(185,28,28,.1)}
.nav{display:flex;align-items:center;gap:var(--nav-gap)}
.nav-link{color:var(--text);text-decoration:none;font-weight:600;padding:.5rem 1rem;border-radius:.5rem;transition:all .2s ease}
.nav-link:hover,.nav-link.active{color:var(--brand);background:color-mix(in srgb,var(--brand) 12%, transparent)}
@media (max-width:768px){
  :root{--x-pad:1rem;--nav-gap:1.25rem}
  .logo-link img{height:26px}
}







/* Theme Toggle Styles */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.theme-toggle .icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .icon {
    transform: rotate(20deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    padding: 2rem 0;
    text-align: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative !important;
    z-index: 10 !important;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    font-weight: 300;
    opacity: 0.8;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.search-container {
    position: relative !important;
    max-width: 500px;
    margin: 0 auto;
    z-index: 99999 !important;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid rgba(229, 231, 235, 0.3);
    border-radius: 2rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.search-input:focus {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.85);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34, 197, 94, 0.8);
    color: #000000;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.search-btn:hover {
    background: rgba(22, 163, 74, 0.9);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.search-suggestions {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98)) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(16, 185, 129, 0.15) !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 12px 24px rgba(16, 185, 129, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    max-height: 350px !important;
    overflow: hidden !important;
    z-index: 99998 !important;
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-15px) scale(0.95) !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    pointer-events: auto !important;
}

.search-suggestions.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.suggestion-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 1.5rem !important;
    color: #374151 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(16, 185, 129, 0.08) !important;
    cursor: pointer !important;
    position: relative !important;
    pointer-events: auto !important;
    z-index: 99997 !important;
    background: transparent !important;
}

.suggestion-item:last-child {
    border-bottom: none !important;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(34, 197, 94, 0.12) 100%) !important;
    color: #059669 !important;
    transform: translateX(6px) scale(1.02) !important;
    box-shadow: inset 4px 0 0 #10b981, 0 4px 12px rgba(16, 185, 129, 0.15) !important;
    border-radius: 12px !important;
    margin: 0 8px !important;
}

.suggestion-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    margin-right: 1rem !important;
    border: 2px solid rgba(16, 185, 129, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
}

.suggestion-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

.suggestion-item:hover .suggestion-avatar {
    border-color: #10b981 !important;
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3) !important;
}

.suggestion-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.suggestion-flag {
    font-size: 1.5rem !important;
    margin-left: 1rem !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
}

.suggestion-item:hover .suggestion-flag {
    transform: scale(1.2) !important;
}

.suggestion-name {
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    color: #1f2937 !important;
    margin-bottom: 0.25rem !important;
    letter-spacing: -0.025em !important;
    line-height: 1.3 !important;
}

.suggestion-item:hover .suggestion-name {
    color: #059669 !important;
}

.suggestion-team {
    font-size: 0.85rem !important;
    color: #6b7280 !important;
    font-weight: 500 !important;
    opacity: 0.8 !important;
}

.suggestion-edpi {
    font-size: 0.75rem !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #10b981, #059669) !important;
    padding: 0.375rem 0.75rem !important;
    border-radius: 20px !important;
    margin-left: 0.75rem !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
}

.suggestion-item:hover .suggestion-edpi {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4) !important;
    background: linear-gradient(135deg, #059669, #047857) !important;
}



/* Sections - Clean Reset */
.trending-players,
.featured-blogs {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Trending Players - Modern Grid System */
.trending-players .players-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

/* Trending Player Cards - Clean Design */
.trending-player {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    overflow: visible;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    border: 1px solid rgba(229, 231, 235, 0.3);
    position: relative;
}



.trending-player-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 1rem 1rem 0 0;
}

.trending-player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}



.trending-player-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.75rem;
}

.trending-player-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.trending-player-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.trending-player-country {
    font-size: 1.2rem;
}

.trending-player-real-name {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.trending-player-team {
    color: #22C55E;
    font-size: 0.95rem;
    margin: 0 0 1rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-player-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    text-decoration: none;
    border-radius: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-player-btn:hover {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.trending-player-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    border-radius: 1rem;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-player-link:hover {
    background: linear-gradient(135deg, #16A34A, #15803D);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* Responsive Design - Trending Players */
@media (max-width: 1024px) {
    .trending-players .players-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .trending-player {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .trending-players .players-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .trending-player {
        min-height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .trending-player-content {
        padding: 1.25rem;
    }
    
    .trending-player-name {
        font-size: 1.1rem;
    }
}

.players-section,
.player-detail-section,
.article-section {
    padding: 4rem 2rem;
    background: transparent;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Cards */
.players-grid,
.blogs-grid,
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.players-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 100%;
    overflow: hidden;
    padding: 0 1rem;
}

/* Responsive breakpoints for players grid */
@media (max-width: 1200px) {
    .players-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .players-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .players-section,
    .player-detail-section,
    .article-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .players-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .players-section,
    .player-detail-section,
    .article-section {
        padding: 2rem 0.5rem;
    }
}

/* Featured Blogs - Modern Grid System */
.featured-blogs .blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}

/* Player Cards - Modern Clean Design */
.player-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.player-photo {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.player-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.75rem;
}

.player-nickname-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.player-nickname {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

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

.player-fullname {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.player-team-name {
    font-size: 1rem;
    color: #22C55E;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.view-details-btn {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #000000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Hover effects removed */

/* Blog Cards - Clean Design */
.blog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
    border: 1px solid rgba(229, 231, 235, 0.3);
}



.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.75rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    margin-top: auto;
}

.blog-date {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #22C55E;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-link:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    transform: translateX(4px);
}

/* Responsive Design - Featured Blogs */
@media (max-width: 1024px) {
    .featured-blogs .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .blog-card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .featured-blogs .blogs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .blog-card {
        min-height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .blog-content {
        padding: 1.25rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
}
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.blog-date,
.blog-read-time {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #22C55E;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.blog-link:hover {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #000000;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Old player card styles removed - using new design above */
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.player-team {
    font-size: 1rem;
    font-weight: 600;
    color: #22C55E;
    margin: 0;
    line-height: 1.3;
}

.player-country {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.3;
}

.player-role {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0.25rem 0 0 0;
    width: fit-content;
    line-height: 1;
}

.player-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.player-team,
.player-country {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.player-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #22C55E;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.player-link:hover {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #000000;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}





.tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: rgba(34, 197, 94, 0.8);
    color: #000000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    background: rgba(22, 163, 74, 0.9);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.4), 0 10px 10px -5px rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #22C55E;
    border: 2px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.1);
}

.btn-outline:hover {
    background: rgba(34, 197, 94, 0.8);
    color: #000000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

/* Filters */
.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(229, 231, 235, 0.3);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    color: #374151;
    font-size: 0.875rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-select:focus {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1), 0 8px 32px rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.filter-select:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* Player Detail */
.player-detail-section {
    padding: 2rem 0;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(16, 163, 74, 0.05) 100%);
}

.player-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: start;
    max-width: 1900px;
    margin: 0 auto 4rem auto;
    justify-content: center;
    padding: 0 1rem;
}

/* Simple & Clean Player Profile Card */
.player-profile-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin: 0 auto 2rem auto;
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    margin-left: 1rem;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    margin-left: 0.5rem;
}

.nickname-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.nickname-section span:first-child {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.flag {
    font-size: 1.5rem;
    line-height: 1;
}

.real-name,
.team-name,
.player-role {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.4;
}

.real-name {
    font-weight: 500;
    color: #374151;
}

.team-name {
    font-weight: 500;
    color: #374151;
}

.player-role {
    font-weight: 400;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .player-info-card-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .player-info-card-top .player-avatar {
        width: 180px;
        height: 180px;
    }
    
    .player-info-card-top .player-nickname {
        font-size: 2.8rem;
        justify-content: center;
    }
    
    .player-info-card-top .player-details {
        align-items: center;
        padding-left: 0;
    }
    
    .player-real-name,
    .player-team,
    .player-role {
        text-align: center;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .player-info-card-top {
        padding: 1.5rem;
        gap: 1.5rem;
        margin: 0 auto 2rem auto;
    }
    
    .player-info-card-top .player-avatar {
        width: 150px;
        height: 150px;
    }
    
    .player-info-card-top .player-nickname {
        font-size: 2.2rem;
    }
    
    .player-real-name,
    .player-team,
    .player-role {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
        min-width: 200px;
    }
    
    .player-flag {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .player-info-card-top {
        padding: 1rem;
        border-radius: 1.5rem;
    }
    
    .player-info-card-top .player-avatar {
        width: 120px;
        height: 120px;
    }
    
    .player-info-card-top .player-nickname {
        font-size: 1.8rem;
        gap: 1rem;
    }
    
    .player-real-name,
    .player-team,
    .player-role {
        font-size: 1rem;
        padding: 0.7rem 1rem;
        min-width: 180px;
    }
}

/* Player Profile Card - Settings Card Style */
.player-profile-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 3px 12px rgba(0, 0, 0, 0.04);
    border-top: 3px solid #22C55E;
    background-clip: padding-box;
    height: fit-content;
    min-height: 140px;
    width: 100%;
    max-width: 1400px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}



.profile-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.nickname-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nickname-section span:first-child {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
}

.flag {
    font-size: 1.5rem;
}

.real-name, .team-name {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    padding: 0.5rem 0.75rem;
    background: rgba(248, 250, 252, 0.5);
    border: 1px solid rgba(229, 231, 235, 0.2);
    border-radius: 0.5rem;
    width: fit-content;
}

.player-role {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    padding: 0.5rem 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.2);
    border-radius: 0.5rem;
    width: fit-content;
}

/* Social Media Buttons */
.social-media-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(248, 250, 252, 0.5);
    border: 1px solid rgba(229, 231, 235, 0.2);
    border-radius: 0.5rem;
    color: #374151;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.social-btn.twitter {
    color: #1DA1F2;
}

.social-btn.instagram {
    color: #E4405F;
}

.social-btn.twitch {
    color: #9146FF;
}

.social-btn.steam {
    color: #171a21;
}

/* Responsive Design for Player Profile Card */
@media (max-width: 768px) {
    .player-profile-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.25rem;
    }
    
    .profile-photo img {
        width: 100px;
        height: 100px;
    }
    
    .nickname-section {
        justify-content: center;
    }
    
    .nickname-section span:first-child {
        font-size: 1.5rem;
    }
    
    .social-media-buttons {
        justify-content: center;
    }
}

.player-info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.4);
    border-radius: 1.5rem;
    padding: 2rem;
    height: fit-content;
    align-self: start;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #22C55E;
    text-align: center;
}

/* Player info card hover effect removed */

.player-info-card .player-avatar {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 3px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.player-info-card .player-avatar:hover {
    transform: scale(1.05);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 6px 16px rgba(0, 0, 0, 0.1);
}

.player-info-card .player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-basic-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.player-nickname {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.5rem;
}

.player-info-card .player-team,
.player-info-card .player-country,
.player-info-card .player-role {
    color: #111827;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid #22C55E;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-social {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #374151;
    border-radius: 12px;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(229, 231, 235, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.social-link i {
    font-size: 1.4rem;
    line-height: 1;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
    border-color: #1DA1F2;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: white;
    border-color: #E4405F;
}

.social-link.twitch:hover {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    border-color: #9146FF;
}

.social-link.steam:hover {
    background: linear-gradient(135deg, #171a21, #2a475e);
    color: white;
    border-color: #171a21;
}

.player-settings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-self: start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.settings-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(229, 231, 235, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 3px 12px rgba(0, 0, 0, 0.04);
    border-top: 3px solid #22C55E;
    background-clip: padding-box;
    height: fit-content;
    min-height: 140px;
    width: 100%;
    max-width: 1400px;
}

/* Settings card hover effect removed */

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.setting-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(229, 231, 235, 0.3);
    border-radius: 0.75rem;
    background: rgba(248, 250, 252, 0.8);
    width: 100%;
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    gap: 0.5rem;
    transition: all 0.2s ease;
}



.setting-item:last-child {
    border-bottom: none;
}

.setting-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.setting-value {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(229, 231, 235, 0.4);
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
}

.code-container {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
}

.code-container code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    color: #374151;
    word-break: break-all;
    display: block;
    margin-bottom: 0.5rem;
}

.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #22C55E;
    color: #000000;
    border: none;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: #16a34a;
}

/* Responsive Design for Player Settings */
@media (max-width: 1024px) {
    .player-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .player-settings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .player-settings {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .settings-card {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
}

/* Article Styles */
.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #22C55E;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 1rem;
    overflow: hidden;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.article-body .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 2rem;
}

.article-body h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem 0;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 1rem 0;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    color: #1f2937;
    font-weight: 600;
}

.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}



/* Footer */
.footer {
    background: rgba(248, 250, 252, 0.8);
    border-top: 1px solid rgba(229, 231, 235, 0.3);
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.footer-section h3,
.footer-section h4 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #6b7280;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #6b7280;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #22C55E;
}

.contact-info {
    margin-top: 0.5rem;
}

.about-text {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #22C55E;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    transition: all 0.2s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.contact-email:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.email-icon {
    font-size: 1rem;
}

/* Footer social media styles removed - no longer needed */

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(34, 197, 94, 0.9);
    color: #000000;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #22C55E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Similar Players Section */
.similar-players {
    margin-top: 3rem;
    padding: 2rem 0;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.similar-players h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 600;
}

.similar-players-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    padding: 0 1rem;
}

/* New Similar Player Card Styles */
.similar-player-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    width: 100%;
    margin: 0;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.similar-player-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15), 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.similar-player-card .player-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    border: 3px solid #22C55E;
    position: relative;
}

.similar-player-card .player-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.similar-player-card:hover .player-photo {
    transform: scale(1.1);
}

.similar-player-card .player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.similar-player-card .player-name-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.similar-player-card .player-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.similar-player-card .player-flag {
    font-size: 1.5rem;
    line-height: 1;
}

.similar-player-card .player-team {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.similar-player-card .view-details-btn {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.similar-player-card .view-details-btn:hover {
    background: linear-gradient(135deg, #16A34A, #15803D);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* Legacy styles for backward compatibility */
.similar-players-grid .player-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-height: 220px;
}

/* Similar players hover effect removed */

.similar-players-grid .player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 3px solid #22C55E;
}

.similar-players-grid .player-avatar img {
    width: 200%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
}

.similar-players-grid .player-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.similar-players-grid .player-team {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.similar-players-grid .player-flag {
    width: 20px;
    height: auto;
    margin-top: 4px;
    border-radius: 2px;
}

.similar-players-grid .view-details-btn {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.similar-players-grid .view-details-btn:hover {
    background: linear-gradient(135deg, #16A34A, #15803D);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .similar-players-grid {
        gap: 1.5rem;
    }
    
    .similar-player-card {
        min-height: 280px;
        min-width: 280px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px !important;
        padding: 0 1rem !important;
    }
    
    .header-content {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 !important;
    }
    
    .nav {
        display: none;
    }
    
    .theme-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10001 !important;
        margin-left: auto !important;
        order: 2 !important;
    }
    
    .logo {
        order: 1 !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .player-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .player-info-card {
        position: static;
        transform: none !important;
        padding: 1.5rem;
    }
    
    .player-info-card-top {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .player-info-card-top .player-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .player-info-card-top .player-avatar {
        width: 120px;
        height: 120px;
    }
    
    .player-nickname {
        font-size: 1.8rem;
    }
    
    .settings-card {
        padding: 1.5rem;
    }
    
    .player-detail-section {
        padding: 1rem 0;
    }
    

    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: center;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .settings-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.75rem;
    }
    
    .setting-item {
        height: 90px;
        min-height: 90px;
        max-height: 90px;
        padding: 0.75rem;
    }
    
    /* Similar Players Responsive */
    .similar-players-grid {
        gap: 1.5rem;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .similar-player-card {
        padding: 1.5rem;
        min-height: 260px;
        max-width: 400px;
        width: 100%;
    }
    
    .similar-player-card .player-image {
        width: 80px;
        height: 80px;
    }
    
    .similar-player-card .player-name {
        font-size: 1.1rem;
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .similar-players-grid {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .similar-player-card {
        min-height: 280px;
        min-width: 280px;
        max-width: 320px;
    }
    
    .similar-player-card .player-image {
        width: 90px;
        height: 90px;
    }
}
    
    .container {
        padding: 0 1rem;
    }
    
    .copy-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        right: 10px;
    }
    
    .similar-players-grid {
        gap: 1rem;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .similar-player-card {
        padding: 1.25rem;
        max-width: 350px;
        width: 100%;
    }
    
    .similar-player-card .player-image {
        width: 80px;
        height: 80px;
    }
    
    .similar-player-card .player-name {
        font-size: 1.1rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .header {
        height: 60px !important;
    }
    
    body {
        padding-top: 60px !important;
    }
    
    .theme-toggle {
        width: 50px !important;
        height: 26px !important;
    }
    
    .theme-toggle .icon {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.7rem !important;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .players-grid,
    
    
    .settings-card {
        padding: 1rem;
    }
    
    .player-info-card-top .player-avatar {
        width: 100px;
        height: 100px;
    }
    
    .settings-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.5rem;
    }
    
    .setting-item {
        height: 85px;
        min-height: 85px;
        max-height: 85px;
        padding: 0.5rem;
    }
    
    .setting-label {
        font-size: 0.8rem;
    }
    
    .setting-value {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        min-height: 32px;
    }
    
    .similar-player-card {
        min-height: 250px;
        padding: 1rem;
    }
    
    .similar-player-card .player-image {
        width: 70px;
        height: 70px;
    }
    
    .similar-player-card .player-name {
        font-size: 1rem;
    }
}

/* Dark Theme Styles */
.dark-theme {
    --bg-color: #1a1a1a;
    --text-color: #ffffff;
    --card-bg: #2d2d2d;
    --border-color: #404040;
    --accent-color: #22C55E;
    --hover-bg: #3d3d3d;
}

.dark-theme body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.dark-theme .header {
    background-color: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid var(--border-color);
}

.dark-theme .player-card,
.dark-theme .settings-card,
.dark-theme .article-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.dark-theme .player-card:hover,
.dark-theme .article-card:hover {
    background-color: var(--hover-bg);
}

.dark-theme .search-input {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.dark-theme .search-input::placeholder {
    color: #888;
}

.dark-theme .filter-btn {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.dark-theme .filter-btn.active {
    background-color: var(--accent-color);
    color: white;
}

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

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Copy notification */
.copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #22C55E;
    color: #000000;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Enhanced Player Info Styles */
.player-real-name {
    font-size: 1rem;
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
    background: linear-gradient(135deg, #374151, #1f2937);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.player-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.player-team,
.player-country,
.player-role {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #111827;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border-left: 3px solid #22C55E;
}

.detail-icon,
.country-flag {
    font-size: 1.1rem;
    min-width: 20px;
}

.player-social .social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #64748b;
    background: rgba(100, 116, 139, 0.1);
    border: 1px solid rgba(100, 116, 139, 0.2);
    font-size: 20px;
}

.social-link:hover {
    transform: translateY(-2px) scale(1.15);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.social-link.twitter:hover {
    background: #1DA1F2;
    color: #000000;
    border-color: #1DA1F2;
}

.social-link.twitch:hover {
    background: #9146FF;
    color: #000000;
    border-color: #9146FF;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #000000;
    border-color: transparent;
}

.social-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Dark theme support for player info */
@media (prefers-color-scheme: dark) {
    .player-real-name {
        color: #f1f5f9;
        background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .player-info-card .player-team,
    .player-info-card .player-country,
    .player-info-card .player-role {
        color: #000000;
        background: rgba(34, 197, 94, 0.15);
        border-left-color: #22C55E;
    }
    
    .player-team,
    .player-country,
    .player-role {
        color: #000000;
        background: rgba(34, 197, 94, 0.15);
        border-left-color: #22C55E;
    }
    
    .social-link {
        color: #94a3b8;
        background: rgba(148, 163, 184, 0.1);
        border-color: rgba(148, 163, 184, 0.2);
    }
}

/* Enhanced Hero Section Styles */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    animation: pulse 2s infinite;
}

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

.hero-title .highlight {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    border-radius: 2px;
    animation: slideIn 1s ease-out 0.5s both;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22C55E;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Responsive adjustments for new hero */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
}

/* Pro Player Cards Styles */
.pro-player-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pro-player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.pro-player-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.pro-player-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.pro-player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #22C55E;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.pro-player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-player-basic {
    flex: 1;
}

.pro-player-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.pro-player-team {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pro-settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pro-setting-item {
    background: rgba(248, 250, 252, 0.8);
    padding: 0.75rem;
    border-radius: 0.75rem;
    border-left: 3px solid #22C55E;
}

.pro-setting-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pro-setting-value {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 600;
}

.pro-equipment {
    margin-bottom: 1.5rem;
}

.pro-equipment-title {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pro-equipment-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.pro-equipment-item {
    background: rgba(34, 197, 94, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: #166534;
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.pro-player-actions {
    display: flex;
    gap: 0.75rem;
}

.pro-action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pro-action-btn.primary {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #000000;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.pro-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.pro-action-btn.secondary {
    background: rgba(248, 250, 252, 0.8);
    color: #64748b;
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.pro-action-btn.secondary:hover {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

/* Responsive Pro Cards */
@media (max-width: 768px) {
    .pro-settings-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .pro-equipment-list {
        grid-template-columns: 1fr;
    }
    
    .pro-player-actions {
        flex-direction: column;
    }
    
    .pro-player-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .pro-player-card {
        padding: 1rem;
    }
    
    .pro-player-avatar {
        width: 50px;
        height: 50px;
    }
    
    .pro-player-name {
        font-size: 1.1rem;
    }
    
    .pro-setting-item {
        padding: 0.5rem;
    }
}

/* Animation keyframes for notifications */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Player Card Components - Missing CSS Classes */
.player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(229, 231, 235, 0.3);
}

.player-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #22C55E;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    flex-shrink: 0;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    transition: transform 0.3s ease;
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.player-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.player-actions {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(229, 231, 235, 0.3);
    background: rgba(248, 250, 252, 0.5);
}

.btn-details {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #000000;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-details:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16A34A, #15803D);
}

/* Responsive adjustments for player cards */
@media (max-width: 768px) {
    .player-header {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .player-avatar {
        width: 50px;
        height: 50px;
    }
    
    .player-name {
        font-size: 1.1rem;
    }
    
    .player-actions {
        padding: 0.75rem 1rem;
    }
    
    .btn-details {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .player-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .player-avatar {
        width: 45px;
        height: 45px;
    }
    
    .player-name {
        font-size: 1rem;
    }
    
    .player-actions {
        padding: 0.5rem 0.75rem;
    }
}