/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a855f7;
    --primary-dark: #7e22ce;
    --secondary-color: #c084fc;
    --accent-color: #a855f7;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(17, 17, 24, 0.7);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.08);
    --primary-glow: 0 0 30px rgba(168, 85, 247, 0.3);
    --gradient-1: linear-gradient(135deg, #a855f7 0%, #7e22ce 50%, #6b21a8 100%);
    --gradient-2: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    --gradient-premium: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%);
    --glass-bg: rgba(10, 10, 15, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(168, 85, 247, 0.2);
}

@keyframes textReveal {
    0% {
        transform: translateY(30px);
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(168, 85, 247, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }
}

.live-badge {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    animation: pulse 2s infinite;
    position: relative;
    top: -2px;
}

/* Global Button System */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 0.8rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
    color: #ffffff !important;
    width: auto;
}

.btn-primary {
    background: var(--gradient-1) !important;
    box-shadow: var(--shadow-glow) !important;
}

.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5) !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(10px) !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-3px) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
    background-color: var(--bg-dark);
    /* ÜST DÜZEY GÜVENLIK KILIDI: Sayfa varsayılan olarak gizlidir */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

body.license-active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
}

.nav-link {
    color: #a0a0b0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 12px;
    font-size: 0.95rem;
    z-index: 1;
    white-space: nowrap;
    border: 1px solid transparent;
    /* HER ZAMAN BORDER OLSUN (transparent) */
    box-sizing: border-box;
    /* Border'ın boyutu etkilemesini engelle */
}

.nav-link::before {
    content: '';
    position: absolute;
    top: -1px;
    /* Border'ı telafi et */
    left: -1px;
    /* Border'ı telafi et */
    right: -1px;
    /* Border'ı telafi et */
    bottom: -1px;
    /* Border'ı telafi et */
    background: rgba(168, 85, 247, 0.05);
    border-radius: 8px;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
    border: 1px solid transparent;
}

.nav-link:hover::before {
    transform: scale(1);
    opacity: 1;
    border-color: rgba(168, 85, 247, 0.3);
}

.nav-link:hover {
    color: #a855f7;
}

.nav-link.active {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.15);
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(5px);
}

.nav-link.active::before {
    display: none;
}

/* Aktif link hover efekti - boyut değişmesin */
.nav-link.active:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.7);
    transform: translateY(-1px);
}

/* Dropdown System */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 15, 20, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.8rem;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin-bottom: 0.4rem;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #a855f7;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-discord:hover {
    background: #7e22ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1050px) {
    .navbar {
        height: 70px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .nav-wrapper {
        gap: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        transform: translateX(-100%);
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.7);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        gap: 0.8rem;
        z-index: 999;
        overflow-y: auto;
        justify-content: flex-start;
        opacity: 0;
        visibility: hidden;
        will-change: transform, opacity;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        border-radius: 16px;
        margin-bottom: 0.2rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(168, 85, 247, 0.08);
        border-color: rgba(168, 85, 247, 0.3);
        color: var(--primary-color);
        /* transform: scale(1.02); REMOVED to prevent visual shift */
    }

    .nav-link.active {
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.05) 100%);
        border-color: rgba(168, 85, 247, 0.5);
        color: var(--primary-color);
        font-weight: 600;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-radius: 12px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, margin 0.4s ease;
        margin: 0;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: none;
    }

    .nav-dropdown.show .dropdown-menu {
        max-height: 500px;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
    }

    .nav-dropdown.show .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 0.8rem 1.5rem;
        text-align: center;
        background: transparent;
        border: none;
    }

    .dropdown-menu a:hover {
        padding-left: 1.5rem;
        background: rgba(168, 85, 247, 0.05);
    }

    .menu-toggle {
        display: flex;
    }

    /* Discord butonunu mobile'de gizle */
    .btn-discord {
        display: none;
    }

    /* Mobile'de Discord butonunu menüye ekle */
    .nav-menu::after {
        content: '';
        display: block;
        height: 1rem;
    }

    .nav-menu .btn-discord-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 1.1rem 1.5rem;
        background: var(--gradient-1);
        color: white;
        text-decoration: none;
        border-radius: 16px;
        font-weight: 600;
        font-size: 1rem;
        margin-top: 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
    }

    .nav-menu .btn-discord-mobile:hover {
        background: #7e22ce;
        transform: translateY(-2px);
    }

    /* Hero section mobile düzeltmeleri */
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid,
    .features-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Diğer section'lar için padding ayarı */
    .statistics,
    .features,
    .rules,
    .staff,
    .news,
    .contact,
    .applications {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 65px;
    }

    .logo {
        width: 55px;
        height: 55px;
    }

    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
        padding: 1rem;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .nav-menu .btn-discord-mobile {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    /* Mobile'de container padding azalt */
    .navbar .container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Hero Section - ORTALANMIŞ */
/* Hero Section Enhancement */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(5, 5, 8, 0.95), rgba(10, 10, 15, 0.9)),
        url('../images/banner.jpg') center/cover no-repeat;
    z-index: 0;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-title .gradient-text {
    background: linear-gradient(to right, #c084fc 0%, #7e22ce 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textReveal 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-weight: 600;
    opacity: 0;
    animation: textReveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: textReveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0;
    animation: textReveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
}

/* Statistics Dashboard Look */
.statistics {
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    background: var(--glass-bg);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.stat-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border-right: 1px solid var(--glass-border);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: rgba(168, 85, 247, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 auto 1rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    opacity: 0.8;
}

/* Features Section */
.features {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Rules Section Enhancement */
.rules {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.03) 0%, transparent 40%);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rule-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: 0.3s;
}

.rule-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--shadow-glow);
}

.rule-card:hover::before {
    opacity: 1;
}

.rule-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    z-index: 0;
}

.rule-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.rule-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Staff Section */
.staff {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.staff-groups-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.staff-group {
    margin-bottom: 2rem;
}

.staff-group-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
}



.staff-group-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Tek kişilik grup için özel stil */
.staff-grid:has(.staff-card:only-child) {
    max-width: 400px;
    margin: 0 auto;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}



.staff-card {
    background: var(--glass-bg);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    will-change: transform;
}

.staff-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.staff-avatar {
    width: 130px;
    height: 130px;
    margin: 0 auto 2rem;
    background: var(--gradient-premium);
    padding: 5px;
    border-radius: 35px;
    position: relative;
    z-index: 1;
}

.staff-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
    border: 3px solid var(--bg-dark);
}

.staff-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.staff-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.staff-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.staff-social a {
    width: 45px;
    height: 45px;
    background: var(--bg-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.staff-social a:hover {
    background: #a855f7;
    color: white;
    transform: translateY(-3px);
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .staff {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .staff-group-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 2rem;
    }

    .staff-group:first-child .staff-grid {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .staff-card {
        padding: 2rem;
    }

    .staff-avatar {
        width: 120px;
        height: 120px;
    }
}

/* News Section */
.news {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.news-card.pinned {
    border-left: 4px solid var(--primary-color);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-dark);
}

.news-content {
    padding: 2rem;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.news-type {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-type.news {
    background: rgba(249, 115, 22, 0.2);
    color: #a855f7;
}

.news-type.announcement {
    background: rgba(249, 115, 22, 0.2);
    color: #c084fc;
}

.news-type.update {
    background: rgba(249, 115, 22, 0.2);
    color: #a855f7;
}

.news-type.event {
    background: rgba(249, 115, 22, 0.2);
    color: #c084fc;
}

.news-pinned {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: var(--bg-darker);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Modern News Grid and Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.news-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
    z-index: 2;
}

.news-card-pinned {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: #f59e0b;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 2;
}

.news-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.news-card-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}

.news-card-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.news-load-more {
    margin-top: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

#btn-load-more {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#btn-load-more:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.news-card-author span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.news-card-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.news-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.empty-news {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px dashed var(--border-color);
}

.empty-news i {
    font-size: 4rem;
    color: var(--text-secondary);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.empty-news p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Article Detail Page Styles */
.article-page {
    padding: 120px 0 80px;
    background: var(--bg-dark);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.article-breadcrumbs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.article-breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-breadcrumbs a:hover {
    color: var(--primary-color);
}

.article-header {
    margin-bottom: 3rem;
    text-align: center;
}

.article-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-meta-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-author-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.article-author-details h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.1rem;
}

.article-author-details span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.article-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.article-stats span i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.article-hero-img {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 3.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.article-content {
    color: var(--text-primary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 4rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.article-tags {
    display: flex;
    gap: 0.8rem;
}

.article-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-hero-img {
        height: 250px;
    }

    .article-meta-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid,
    .features-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Applications Section Enhancement */
.applications {
    padding: 100px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.application-card {
    background: var(--glass-bg);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.application-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-glow);
}

.application-icon {
    font-size: 3.5rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 10px rgba(249, 115, 22, 0.3));
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.application-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
    min-height: 60px;
}

.application-info {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.application-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Section */
.form-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.application-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.form-section-title i {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.required {
    color: #ef4444;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-hint a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-hint a:hover {
    text-decoration: underline;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-primary);
}

.form-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.form-submit-section {
    text-align: center;
    margin-top: 3rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Status Page */
.status-search-form {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.status-result {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.status-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.status-title {
    font-size: 1.8rem;
    font-weight: 600;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-badge.pending {
    background: rgba(249, 115, 22, 0.2);
    color: #c084fc;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.status-badge.reviewing {
    background: rgba(249, 115, 22, 0.2);
    color: #a855f7;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.status-badge.approved {
    background: rgba(249, 115, 22, 0.2);
    color: #7e22ce;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.status-badge.rejected {
    background: rgba(249, 115, 22, 0.2);
    color: #c2410c;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--bg-dark);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.status-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.status-value {
    font-weight: 600;
    color: var(--text-primary);
}

.status-actions {
    margin-top: 2rem;
    text-align: center;
}

.status-examples {
    margin-top: 4rem;
}

.status-examples-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.status-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.status-example-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.status-example-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.status-example-icon.pending {
    background: rgba(249, 115, 22, 0.2);
    color: #c084fc;
}

.status-example-icon.reviewing {
    background: rgba(249, 115, 22, 0.2);
    color: #a855f7;
}

.status-example-icon.approved {
    background: rgba(249, 115, 22, 0.2);
    color: #7e22ce;
}

.status-example-icon.rejected {
    background: rgba(249, 115, 22, 0.2);
    color: #c2410c;
}

.status-example-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.status-example-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    .form-section {
        padding: 100px 20px 60px;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-section-card {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .status-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .status-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}


.powered-by {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;

    padding: 6px 10px;

    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    border: 1.4px solid rgba(173, 216, 230, 0.9);
    backdrop-filter: blur(10px);

    transition: all 0.25s ease;
    color: #cfeeff;
    text-decoration: none;

    opacity: 0.9;
    transform: scale(0.805);
    transform-origin: left center;

    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 101;
    letter-spacing: 0.2px;
}

.powered-by-link:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(173, 216, 230, 1);
    transform: scale(0.82) translateY(-1px);
    box-shadow: 0 3px 8px rgba(173, 216, 230, 0.25);
    opacity: 1;
}

.powered-by-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(1.1);
}

/* Live Player List Styles Upgrade */
.players-section {
    padding: 100px 0;
    position: relative;
}

.player-list-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(25px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.player-list-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.03), transparent 50%);
    pointer-events: none;
}

.player-search-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.player-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.player-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.2);
}

.player-count-badge {
    background: var(--gradient-1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-glow);
}

.player-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar styles for player tags grid */
.player-tags-grid::-webkit-scrollbar {
    width: 6px;
}

.player-tags-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.player-tags-grid::-webkit-scrollbar-thumb {
    background: rgba(249, 115, 22, 0.3);
    border-radius: 10px;
}

.player-tags-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.player-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: default;
}

.player-tag:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.player-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.loading-players,
.no-players,
.error-players {
    width: 100%;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.loading-players i {
    font-size: 2rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .player-search-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .player-count-badge {
        text-align: center;
    }
}

/* Contact Section Redesign */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}