/* ============================================
   FiberOxy Oyun Sayfası Stilleri
   ============================================ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(192, 255, 0, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 40px rgba(192, 255, 0, 0.6); }
}

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

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

@keyframes pixelGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(76, 175, 80, 0.5), 0 0 30px rgba(76, 175, 80, 0.3); }
    50% { text-shadow: 0 0 20px rgba(76, 175, 80, 0.8), 0 0 50px rgba(76, 175, 80, 0.5); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(76, 175, 80, 0.3); }
    50% { border-color: rgba(76, 175, 80, 0.6); }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

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

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   Oyun Ana Sayfası
   ============================================ */

/* Hero */
.oyun-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 60px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.oyun-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 255, 0, 0.1);
    border: 1px solid rgba(192, 255, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #c0ff00;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease-out both;
}

.oyun-hero .hero-badge svg {
    stroke: #c0ff00;
}

.oyun-hero h1 {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.oyun-hero h1 .highlight {
    background: linear-gradient(135deg, #c0ff00 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oyun-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out 0.2s both;
}

/* Oyun Kartları Grid */
.oyun-grid-section {
    padding: 40px 60px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.oyun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    animation: slideUp 0.8s ease-out 0.3s both;
}

/* Oyun Kartı */
.oyun-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.oyun-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192, 255, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.oyun-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 255, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(192, 255, 0, 0.1);
}

.oyun-card:hover::before {
    opacity: 1;
}

.oyun-card.disabled {
    cursor: default;
    opacity: 0.7;
}

.oyun-card.disabled:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

/* Kart Kapak Görseli */
.oyun-card-cover {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

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

.oyun-card-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
}

/* Minecraft özel arka plan */
.oyun-card-cover.minecraft-cover {
    background: linear-gradient(135deg, #1a3a1a 0%, #0d1f0d 50%, #1a3a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.mc-cover-icon {
    font-size: 64px;
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.5));
}

.mc-cover-text {
    font-size: 24px;
    font-weight: 800;
    color: #4caf50;
    letter-spacing: 2px;
    animation: pixelGlow 3s ease-in-out infinite;
}

/* CS2 özel arka plan */
.oyun-card-cover.cs-cover {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.cs-cover-icon {
    font-size: 64px;
    filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.5));
}

.cs-cover-text {
    font-size: 24px;
    font-weight: 800;
    color: #ff9800;
    letter-spacing: 2px;
}

/* Kart İçerik */
.oyun-card-body {
    padding: 30px;
}

.oyun-card-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.oyun-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.oyun-badge.online {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4caf50;
}

.oyun-badge.online .badge-dot {
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.oyun-badge.version {
    background: rgba(192, 255, 0, 0.1);
    border: 1px solid rgba(192, 255, 0, 0.3);
    color: #c0ff00;
}

.oyun-badge.coming-soon {
    background: rgba(255, 152, 0, 0.15);
    border: 1px solid rgba(255, 152, 0, 0.4);
    color: #ff9800;
    animation: statusBlink 2s ease-in-out infinite;
}

.oyun-card-body h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.oyun-card-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.oyun-card-ip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(192, 255, 0, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.oyun-card-ip:hover {
    border-color: rgba(192, 255, 0, 0.5);
    background: rgba(0, 0, 0, 0.6);
}

.oyun-card-ip svg {
    stroke: #c0ff00;
    flex-shrink: 0;
}

.oyun-card-ip code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 15px;
    font-weight: 600;
    color: #c0ff00;
    letter-spacing: 0.5px;
}

.oyun-card-ip .copy-btn {
    margin-left: auto;
    background: rgba(192, 255, 0, 0.15);
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    color: #c0ff00;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oyun-card-ip .copy-btn:hover {
    background: rgba(192, 255, 0, 0.3);
}

.oyun-card-ip .copy-btn.copied {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.oyun-card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #c0ff00 0%, #00ff88 100%);
    color: #000;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(192, 255, 0, 0.2);
}

.oyun-card-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(192, 255, 0, 0.4);
}

.oyun-card-action svg {
    stroke: #000;
}

.oyun-card-action.disabled-action {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: default;
    box-shadow: none;
    pointer-events: none;
}

.oyun-card-action.disabled-action svg {
    stroke: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Minecraft Detay Sayfası
   ============================================ */

/* MC Hero */
.mc-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 40px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.mc-hero .mc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #4caf50;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease-out both;
}

.mc-hero .mc-badge svg {
    stroke: #4caf50;
}

.mc-hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.mc-hero h1 .mc-highlight {
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mc-hero .mc-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 30px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

/* Geri Butonu */
.mc-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out both;
}

.mc-back:hover {
    color: #c0ff00;
    transform: translateX(-4px);
}

.mc-back svg {
    stroke: currentColor;
}

/* Sunucu IP Bölümü */
.mc-server-ip-section {
    padding: 0 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.mc-ip-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.25);
    border-radius: 20px;
    padding: 24px 32px;
    max-width: 600px;
    margin: 0 auto;
    animation: borderGlow 3s ease-in-out infinite;
}

.mc-ip-card .ip-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(129, 199, 132, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mc-ip-card .ip-icon svg {
    stroke: #4caf50;
}

.mc-ip-card .ip-info {
    flex: 1;
}

.mc-ip-card .ip-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.mc-ip-card .ip-address {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #4caf50;
    letter-spacing: 0.5px;
}

.mc-ip-card .mc-copy-btn {
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mc-ip-card .mc-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
}

.mc-ip-card .mc-copy-btn.copied {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

/* Detay İçerik */
.mc-content-section {
    padding: 0 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.mc-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Bilgi Kartı */
.mc-info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.mc-info-card:hover {
    border-color: rgba(76, 175, 80, 0.2);
}

.mc-info-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mc-info-card h2 svg {
    stroke: #4caf50;
}

.mc-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mc-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.mc-info-list li:last-child {
    border-bottom: none;
}

.mc-info-list li:hover {
    color: #ffffff;
    padding-left: 8px;
}

.mc-info-list li svg {
    stroke: #4caf50;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.mc-info-list li strong {
    color: #c0ff00;
}

/* Kurallar */
.mc-rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: rule-counter;
}

.mc-rules-list li {
    counter-increment: rule-counter;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.mc-rules-list li:last-child {
    border-bottom: none;
}

.mc-rules-list li:hover {
    color: #ffffff;
}

.mc-rules-list li::before {
    content: counter(rule-counter);
    min-width: 28px;
    height: 28px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #4caf50;
    flex-shrink: 0;
}

/* ============================================
   Whitelist Başvuru Formu
   ============================================ */

.mc-form-section {
    padding: 0 60px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.mc-form-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.mc-form-card:hover {
    border-color: rgba(76, 175, 80, 0.2);
}

.mc-form-card h2 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mc-form-card h2 svg {
    stroke: #4caf50;
}

.mc-form-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    line-height: 1.7;
}

.mc-form-group {
    margin-bottom: 24px;
}

.mc-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mc-form-group input,
.mc-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.mc-form-group input::placeholder,
.mc-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.mc-form-group input:focus,
.mc-form-group textarea:focus {
    border-color: #4caf50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.15);
    background: rgba(0, 0, 0, 0.6);
}

.mc-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.mc-form-group .input-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 6px;
    display: block;
}

.mc-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    color: #000;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
    font-family: 'Inter', sans-serif;
}

.mc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(76, 175, 80, 0.4);
}

.mc-submit-btn:disabled {
    opacity: 0.5;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.mc-submit-btn svg {
    stroke: #000;
}

.mc-submit-btn .btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.mc-form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.mc-form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #81c784;
}

.mc-form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #ef5350;
}

/* ============================================
   Oyun Admin Paneli
   ============================================ */

/* Login */
.oyunadmin-login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.oyunadmin-login-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.8s ease-out both;
}

.oyunadmin-login-card .login-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(129, 199, 132, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.oyunadmin-login-card .login-logo svg {
    stroke: #4caf50;
}

.oyunadmin-login-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.oyunadmin-login-card .login-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.oyunadmin-login-card .input-group {
    position: relative;
    margin-bottom: 16px;
}

.oyunadmin-login-card .input-group svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    stroke: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.oyunadmin-login-card .input-group input {
    width: 100%;
    padding: 14px 18px 14px 44px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.oyunadmin-login-card .input-group input:focus {
    border-color: #4caf50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.15);
}

.oyunadmin-login-card .login-error {
    font-size: 13px;
    color: #ef5350;
    margin-bottom: 12px;
    min-height: 20px;
}

.oyunadmin-login-card .login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.oyunadmin-login-card .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
}

/* Dashboard */
.oyunadmin-dashboard {
    padding: 100px 60px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.oyunadmin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.oyunadmin-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.oyunadmin-header h1 span {
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oyunadmin-header .logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.oyunadmin-header .logout-btn:hover {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
    color: #ef5350;
}

.oyunadmin-header .logout-btn svg {
    stroke: currentColor;
}

/* Stats */
.oyunadmin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.admin-stat-card .stat-num {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}

.admin-stat-card .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Tabs */
.oyunadmin-tabs {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 4px;
    margin-bottom: 24px;
}

.admin-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.admin-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.admin-tab.active {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

/* Başvuru Listesi */
.oyunadmin-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.application-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    animation: slideUp 0.5s ease-out both;
}

.application-card:hover {
    border-color: rgba(76, 175, 80, 0.2);
}

.application-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.application-player {
    display: flex;
    align-items: center;
    gap: 12px;
}

.application-player .player-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(129, 199, 132, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #4caf50;
}

.application-player .player-name {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.application-player .player-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.application-status-badge {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.application-status-badge.pending {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.application-status-badge.approved {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.application-status-badge.rejected {
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #ef5350;
}

.application-reason {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
}

.application-actions {
    display: flex;
    gap: 10px;
}

.app-approve-btn,
.app-reject-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.app-approve-btn {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.app-approve-btn:hover {
    background: rgba(76, 175, 80, 0.3);
}

.app-reject-btn {
    background: rgba(244, 67, 54, 0.15);
    color: #ef5350;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.app-reject-btn:hover {
    background: rgba(244, 67, 54, 0.3);
}

.app-approve-btn svg,
.app-reject-btn svg {
    stroke: currentColor;
    width: 16px;
    height: 16px;
}

/* Empty state */
.admin-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.4);
}

.admin-empty svg {
    stroke: rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
}

.admin-empty h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.admin-empty p {
    font-size: 14px;
}

/* Action Result Modal */
.action-result-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.action-result-modal.visible {
    display: flex;
}

.action-result-card {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    animation: slideUp 0.4s ease-out both;
}

.action-result-card .result-icon {
    margin-bottom: 16px;
}

.action-result-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.action-result-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.action-result-card .result-close {
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.action-result-card .result-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .oyun-hero {
        padding: 80px 24px 40px;
        min-height: auto;
    }

    .oyun-grid-section {
        padding: 20px 24px 80px;
    }

    .oyun-grid {
        grid-template-columns: 1fr;
    }

    .mc-hero {
        padding: 80px 24px 30px;
    }

    .mc-server-ip-section {
        padding: 0 24px 40px;
    }

    .mc-ip-card {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .mc-content-section {
        padding: 0 24px 40px;
    }

    .mc-content-grid {
        grid-template-columns: 1fr;
    }

    .mc-info-card {
        padding: 30px;
    }

    .mc-form-section {
        padding: 0 24px 80px;
    }

    .mc-form-card {
        padding: 30px;
    }

    .oyunadmin-dashboard {
        padding: 80px 24px 40px;
    }

    .oyunadmin-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .oyunadmin-stats {
        grid-template-columns: 1fr;
    }

    .application-card-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .application-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .oyun-hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .oyun-card-body {
        padding: 20px;
    }

    .mc-hero h1 {
        font-size: 28px;
        letter-spacing: -1px;
    }
}
