/* SA:MP Türkiye CnR - Sade Modern Tasarım */

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

:root {
    --primary-blue: #4A90E2;
    --primary-red: #E94B3C;
    --primary-green: #7ED321;
    --text-white: #FFFFFF;
    --text-gray: #B8BCC0;
    --text-light-gray: #E5E7EB;
    --bg-dark: #0F0F0F;
    --bg-secondary: #1A1A1A;
    --bg-card: rgba(255, 255, 255, 0.08);
    --bg-card-hover: rgba(255, 255, 255, 0.12);
    --bg-overlay: rgba(0, 0, 0, 0.35);
    --border-color: rgba(255, 255, 255, 0.15);
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--bg-dark);
    color: var(--text-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.2);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 100%;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    flex-shrink: 0;
}

.logo .cnr-c { 
    animation: policeSirenRed 3s ease-in-out infinite;
}

.logo .cnr-n { 
    color: var(--text-white); 
}

.logo .cnr-r { 
    animation: policeSirenBlue 3s ease-in-out infinite;
}

@keyframes policeSirenRed {
    0% {
        color: var(--primary-red);
        text-shadow: 0 0 10px rgba(233, 75, 60, 0.6);
    }
    50% {
        color: var(--primary-blue);
        text-shadow: 0 0 15px rgba(74, 144, 226, 0.8);
    }
    100% {
        color: var(--primary-red);
        text-shadow: 0 0 10px rgba(233, 75, 60, 0.6);
    }
}

@keyframes policeSirenBlue {
    0% {
        color: var(--primary-blue);
        text-shadow: 0 0 10px rgba(74, 144, 226, 0.6);
    }
    50% {
        color: var(--primary-red);
        text-shadow: 0 0 15px rgba(233, 75, 60, 0.8);
    }
    100% {
        color: var(--primary-blue);
        text-shadow: 0 0 10px rgba(74, 144, 226, 0.6);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: none !important;
    transform: translate3d(0,0,0) !important;
    will-change: auto !important;
    backface-visibility: hidden;
}

/* Hero background'ının kesinlikle hareket etmemesini sağlamak için */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('../images/1.jpg') center center/cover no-repeat;
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    z-index: -1;
    transform: none !important;
    will-change: auto !important;
}

/* Hero background'ının kesinlikle hareket etmemesini sağlamak için */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('../images/1.jpg') center center/cover no-repeat;
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    z-index: -1;
    transform: none !important;
    will-change: auto !important;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('../images/1_hero.png') right bottom/contain no-repeat;
    z-index: 1;
    pointer-events: none;
    transform: translateX(var(--hero-char-offset, 0px));
    transition: transform 0.1s ease-out;
    min-width: 300px; /* Minimum boyut garantisi */
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
}

.hero p {
    font-size: 20px;
    color: var(--text-light-gray);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.server-ip {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-white);
    margin: 30px 0 25px 0;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.6),
                 0 0 60px rgba(255, 255, 255, 0.4);
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 40px rgba(255, 255, 255, 0.6),
                     0 0 60px rgba(255, 255, 255, 0.4);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 1),
                     0 0 60px rgba(255, 255, 255, 0.8),
                     0 0 90px rgba(255, 255, 255, 0.6),
                     0 0 120px rgba(255, 255, 255, 0.4);
    }
}

/* Server Status */
.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 25px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.status-dot.online {
    background: #7ED321;
    box-shadow: 0 0 15px rgba(126, 211, 33, 0.8),
                0 0 30px rgba(126, 211, 33, 0.6),
                0 0 45px rgba(126, 211, 33, 0.4);
}

.status-dot.offline {
    background: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8),
                0 0 30px rgba(255, 215, 0, 0.6),
                0 0 45px rgba(255, 215, 0, 0.4);
}

/* Player Count */
.player-count {
    display: none; /* Başlangıçta gizli */
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin: 25px 0 35px 0;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4);
}

#player-number {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.8),
                 0 0 40px rgba(74, 144, 226, 0.6),
                 0 0 60px rgba(74, 144, 226, 0.4);
    animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    0% {
        text-shadow: 0 0 20px rgba(74, 144, 226, 0.8),
                     0 0 40px rgba(74, 144, 226, 0.6),
                     0 0 60px rgba(74, 144, 226, 0.4);
    }
    100% {
        text-shadow: 0 0 30px rgba(74, 144, 226, 1),
                     0 0 60px rgba(74, 144, 226, 0.8),
                     0 0 90px rgba(74, 144, 226, 0.6);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-button:hover {
    background: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.copy-button {
    display: inline-block;
    background: var(--primary-red);
    color: var(--text-white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.copy-button:hover {
    background: #D43B2A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 75, 60, 0.3);
}

/* Copy button success state */
.copy-button[style*="--primary-green"]:hover {
    background: #6BB91A !important;
    box-shadow: 0 10px 30px rgba(126, 211, 33, 0.3) !important;
}

/* Social Media Section */
.social-section {
    background: var(--bg-secondary);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.social-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 16px;
    padding: 40px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-card:hover {
    transform: translateY(-10px);
    background: rgba(40, 40, 40, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.social-icon.tiktok { background: #000000; }
.social-icon.youtube { background: #FF0000; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.discord { background: #5865F2; }

.social-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-white);
}

.social-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-white);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(26, 26, 26, 0.95));
    padding: 80px 0;
    text-align: center;
    position: relative;
}

/* About section alt gölge efekti */
.about-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(0, 0, 0, 0.3) 50%, 
                rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light-gray);
    margin-bottom: 40px;
}

.about-button {
    display: inline-block;
    background: var(--primary-red);
    color: var(--text-white);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-button:hover {
    background: #C73E2A;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 75, 60, 0.3);
}

/* Comments Section */
.comments-section {
    background: transparent;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Comments karakter efekti */
.comments-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: var(--char-offset-right, 0);
    width: 400px;
    height: 500px;
    background: url('../images/3_hero.png') no-repeat center bottom;
    background-size: contain;
    z-index: 3;
    pointer-events: none;
    transition: right 0.1s ease-out;
    min-width: 350px; /* Minimum boyut garantisi */
}

/* Comments section background */
.comments-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0.8) 0%, 
                rgba(0, 0, 0, 0.3) 15%, 
                var(--bg-overlay) 20%, 
                var(--bg-overlay) 100%), 
                url('../images/3.jpeg') center center/cover no-repeat;
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    z-index: -1;
    transform: none !important;
    will-change: auto !important;
}

/* Comments section character */
.comments-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 40%;
    height: 100%;
    background: url('../images/3_hero.png') left bottom/contain no-repeat;
    z-index: 1;
    pointer-events: none;
    transform: translateX(var(--comments-char-offset, 0px));
    transition: transform 0.1s ease-out;
}

.comments-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.comments-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
}

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

.comment-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.comment-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.comment-card:hover .comment-author {
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.8),
                 0 0 30px rgba(74, 144, 226, 0.6),
                 0 0 45px rgba(74, 144, 226, 0.4);
}

.comment-card:hover .comment-text {
    color: var(--text-white);
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.comment-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    font-style: italic;
    transition: color 0.3s ease;
}

/* Footer */
.footer {
    background: #2C3E50;
    padding: 15px 0;
    text-align: center;
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-main {
    margin-bottom: 5px;
    font-weight: 500;
}

.footer-sub {
    color: var(--text-gray);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px 0;
        transform: translateY(-100%);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar {
        padding: 15px 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .server-ip {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-button,
    .copy-button {
        width: 100%;
        max-width: 300px;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .social-container,
    .about-container,
    .comments-container {
        padding: 0 20px;
    }
    
    .social-title,
    .about-title,
    .comments-title {
        font-size: 2rem;
    }
    
    .comments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        padding: 30px 20px;
    }
    
    /* Mobil hero karakterini büyüt */
    .hero::before {
        width: 70% !important; /* Daha büyük ve !important */
        min-width: 350px !important;
        background-size: contain !important;
    }
    
    /* Comments karakterini de mobilde büyüt */
    .comments-section.comments-section::before {
        width: 450px !important; /* Daha da büyük */
        height: 550px !important;
        right: -10px !important; /* Daha merkezi */
        min-width: 400px !important;
        background-size: contain !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .hero-button,
    .copy-button {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    /* Çok küçük ekranlarda karakteri daha da büyüt */
    .hero::before {
        width: 80% !important; /* En büyük */
        height: 90% !important;
        min-width: 280px !important;
        background-size: contain !important;
        bottom: 0 !important;
    }
    
    /* Comments karakterini küçük mobilde optimize et */
    .comments-section.comments-section::before {
        width: 400px !important;
        height: 500px !important;
        right: 0px !important;
        min-width: 350px !important;
        background-size: contain !important;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-card {
        padding: 30px 15px;
    }
    
    .comment-card {
        padding: 20px 15px;
    }
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0.2;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-element {
    opacity: 0.2;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Players Section */
.players-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(233, 75, 60, 0.08) 100%);
    position: relative;
}

.players-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.players-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.players-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px 30px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: fit-content;
    margin: 0 auto;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.players-count-info {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.players-list {
    width: 100%;
    max-width: 900px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    max-height: 400px;
    overflow-y: auto;
}

.loading-message {
    color: var(--text-gray);
    font-size: 1.1rem;
    padding: 20px;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.player-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.player-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.player-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 2px;
}

.player-id {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.player-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.player-score {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.player-ping {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.no-players-message {
    color: var(--text-gray);
    font-size: 1.1rem;
    padding: 40px 20px;
    text-align: center;
}

.error-message {
    color: var(--primary-red);
    font-size: 1.1rem;
    padding: 20px;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .players-title {
        font-size: 2rem;
    }
    
    .server-status {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .players-list {
        padding: 20px;
        max-height: 300px;
    }
    
    .players-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .player-card {
        padding: 12px 15px;
    }
    
    /* Tablet boyutunda da karakterleri optimize et */
    .hero::before {
        width: 55%; /* Tablet'te 55% */
    }
    
    .comments-section.comments-section::before {
        width: 420px !important; /* Tablet'te daha büyük */
        height: 520px !important;
        right: -20px !important;
        min-width: 380px !important;
    }
}
