/* ============================================
   MODERN DASHBOARD CSS - SIFIRDAN YENİDEN
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary: #5865F2;
    --primary-dark: #4752C4;
    --primary-light: #7289DA;
    --secondary: #57F287;
    --danger: #ED4245;
    --warning: #FEE75C;
    --success: #57F287;
    
    --bg-primary: #0A0A23;
    --bg-secondary: #0F0F2E;
    --bg-tertiary: #1A1A3A;
    --bg-card: rgba(30, 30, 63, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-hover: rgba(88, 101, 242, 0.1);
    
    --text-primary: #FFFFFF;
    --text-secondary: #B9BBBE;
    --text-tertiary: #72767D;
    
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(88, 101, 242, 0.3);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(88, 101, 242, 0.3);
    
    --sidebar-width: 280px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(88, 101, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(87, 242, 135, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(15, 15, 46, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.sidebar-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05) rotate(5deg);
}

.logo-img-nav {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* User Profile Card */
.user-profile-card {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-glass);
    margin: 8px 12px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.user-avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-glow);
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--bg-secondary);
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

.status-indicator.online {
    background: var(--success);
}

.user-info {
    text-align: center;
}

.username {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.user-discriminator {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Sidebar Navigation */
.sidebar-nav {
    padding: 4px 12px;
}

.sidebar-nav.panel-nav {
    flex: 1;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px 10px 8px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 2px;
    transition: var(--transition);
    font-weight: 500;
    font-size: 15px;
    width: 100%;
    justify-content: flex-start;
}

.nav-item:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
    transform: translateX(4px);
}

.nav-item.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-glow);
    padding-left: 8px;
}

.nav-item svg,
.nav-item .fi {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Guild Sidebar Info */
.guild-sidebar-info {
    padding: 8px 12px;
    border-top: 1px solid var(--border);
}

.guild-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-glass);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.guild-mini-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.guild-mini-icon-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.guild-mini-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.guild-mini-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 12px;
    border-top: 1px solid var(--border);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--danger);
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    font-weight: 500;
    width: 100%;
}

.logout-btn:hover {
    background: rgba(237, 66, 69, 0.1);
    color: var(--danger);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    padding: 32px;
    position: relative;
    z-index: 1;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.guild-header-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guild-header-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-glow);
    object-fit: cover;
}

.guild-header-icon-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 36px;
    color: white;
}

.header-stats {
    display: flex;
    gap: 12px;
}

.stat-badge {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* ============================================
   GUILDS GRID
   ============================================ */

.guilds-container {
    margin-top: 24px;
}

.guilds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.guild-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.guild-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(87, 242, 135, 0.1));
    opacity: 0;
    transition: var(--transition);
}

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

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

.guild-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.guild-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.guild-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid var(--border);
}

.guild-icon-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: white;
    border: 2px solid var(--border);
}

.bot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-secondary);
    box-shadow: 0 0 10px var(--success);
}

.bot-badge svg {
    color: white;
}

.guild-info {
    flex: 1;
    min-width: 0;
}

.guild-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guild-id {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: 'Courier New', monospace;
}

.guild-card-footer {
    position: relative;
    z-index: 1;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #C03537;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success);
    color: var(--bg-primary);
}

.btn-success:hover {
    background: #45D973;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    border-color: var(--border-hover);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   PANEL SECTIONS
   ============================================ */

.panel-sections {
    margin-top: 24px;
}

.panel-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.panel-section.active {
    display: block;
}

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

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 15px;
}

.setting-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.setting-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

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

.setting-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.setting-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-tertiary);
    transition: var(--transition);
    border-radius: 28px;
    border: 2px solid var(--border);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background: white;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.setting-body {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
    transform: translateY(-1px);
}

.form-group.focused label {
    color: var(--primary);
    transform: scale(0.95);
}

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

/* ============================================
   MEMBERS LIST
   ============================================ */

.members-list {
    margin-top: 24px;
}

.search-box {
    position: relative;
    margin-bottom: 24px;
}

.search-box svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

.search-box .form-control {
    padding-left: 48px;
}

.member-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member-card,
.ban-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    transition: var(--transition);
}

.member-card:hover,
.ban-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-tertiary);
}

.member-info {
    flex: 1;
    min-width: 0;
}

.member-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.member-info p {
    font-size: 12px;
    color: var(--text-tertiary);
    font-family: 'Courier New', monospace;
}

.member-actions {
    display: flex;
    gap: 8px;
}

.bans-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
    text-align: center;
    padding: 64px 32px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ============================================
   INDEX PAGE STYLES (Marpel.net Quality)
   ============================================ */

.index-page {
    background: #0A0A23;
    overflow-x: hidden;
}

/* Navbar */
.index-page .navbar {
    background: rgba(10, 10, 35, 0.8);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.index-page .navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-icon-nav {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.index-page .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.index-page .nav-brand .logo-img-nav {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    transition: var(--transition);
}

.index-page .nav-brand .logo-img-nav:hover {
    transform: scale(1.1) rotate(5deg);
}

.index-page .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Sponsor Sunucular Navbar */
.sponsor-sunucular-nav {
    position: relative;
}

.sponsor-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.sponsor-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: var(--text-primary);
}

.sponsor-nav-link i:first-child {
    color: #FFD700;
    font-size: 16px;
}

.sponsor-nav-link.active {
    background: rgba(88, 101, 242, 0.1);
    border-color: var(--primary);
}

.btn-sponsor {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-sponsor:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    color: #000;
}

.premium-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.premium-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #9B59B6;
    color: var(--text-primary);
}

.premium-nav-link i:first-child {
    color: #9B59B6;
    font-size: 16px;
}

.premium-nav-link.active {
    background: rgba(155, 89, 182, 0.1);
    border-color: #9B59B6;
}

.btn-premium {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #8E44AD, #9B59B6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.4);
    color: #fff;
}

.sponsor-nav-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.sponsor-nav-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.sponsor-nav-trigger i:first-child {
    color: #FFD700;
    font-size: 16px;
}

.sponsor-nav-trigger i:last-child {
    font-size: 12px;
    transition: transform 0.3s;
    margin-left: 4px;
}

.sponsor-sunucular-nav.active .sponsor-nav-trigger i:last-child {
    transform: rotate(180deg);
}

.sponsor-nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: rgba(10, 10, 35, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.sponsor-sunucular-nav.active .sponsor-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sponsor-dropdown-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsor-dropdown-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.sponsor-dropdown-list {
    padding: 8px;
    overflow-y: auto;
    max-height: 320px;
}

.sponsor-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
    margin-bottom: 4px;
}

.sponsor-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.sponsor-dropdown-icon-wrapper {
    flex-shrink: 0;
}

.sponsor-dropdown-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.sponsor-dropdown-icon-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.sponsor-dropdown-info {
    flex: 1;
    min-width: 0;
}

.sponsor-dropdown-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sponsor-dropdown-members {
    font-size: 12px;
    color: var(--text-secondary);
}

.sponsor-dropdown-item i:last-child {
    color: var(--text-tertiary);
    font-size: 14px;
    flex-shrink: 0;
}

/* Scrollbar styling */
.sponsor-dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.sponsor-dropdown-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.sponsor-dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.sponsor-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sponsor-dropdown-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    opacity: 0.6;
}

.sponsor-empty-icon-large {
    width: 48px;
    height: 48px;
    opacity: 0.5;
    margin-bottom: 12px;
}

.sponsor-empty-text-large {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.4), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(87, 242, 135, 0.3), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-hero-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.btn-hero-secondary {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Why Section */
.why-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0A23 0%, #0F0F2E 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: #0A0A23;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse > * {
    direction: ltr;
}

.feature-content {
    max-width: 600px;
}

.feature-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}

.feature-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.feature-link:hover {
    gap: 12px;
    color: var(--secondary);
}

.feature-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(87, 242, 135, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.rank-card-content {
    width: 80%;
    padding: 24px;
    background: rgba(15, 15, 46, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 0 auto 16px;
}

.rank-name {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px;
    text-align: center;
}

.rank-level {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 16px;
}

.rank-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.register-content,
.giveaway-content,
.voice-content {
    text-align: center;
}

.register-icon,
.giveaway-icon,
.voice-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.register-text,
.giveaway-text,
.voice-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0F0F2E 0%, #0A0A23 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-avatar {
    margin-bottom: 24px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin: 0 auto;
    box-shadow: var(--shadow-glow);
}

.team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.team-role {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 120px 0;
    background: #0A0A23;
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-8px);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
}

.vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.vision-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Bot Features Section */
.bot-features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0A0A23 0%, #0F0F2E 100%);
}

.features-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.feature-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon-large {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label-large {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.command-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 101, 242, 0.3);
}

.category-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.command-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 14px;
    font-family: 'Courier New', monospace;
    transition: var(--transition);
}

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

.command-list li:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(87, 242, 135, 0.1));
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.index-page .footer {
    background: #060614;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--secondary);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--primary);
}

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

.loading-text {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

.why-card,
.feature-showcase {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Hover Effects */
.guild-card,
.feature-showcase,
.why-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Hover Glow */
.guild-card:hover::before {
    opacity: 1;
}

/* Smooth Transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* Selection */
::selection {
    background: rgba(88, 101, 242, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(88, 101, 242, 0.3);
    color: var(--text-primary);
}

/* Flaticon Styling */
.fi {
    font-size: inherit;
    vertical-align: -0.125em;
    display: inline-block;
}

.nav-item .fi,
.logout-btn .fi {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}   

.btn .fi {
    font-size: 18px;
    margin-right: 6px;
}

.btn-hero-primary .fi,
.btn-hero-secondary .fi {
    font-size: 20px;
    margin-right: 8px;
}

.feature-link .fi {
    font-size: 16px;
    margin-left: 4px;
    transition: var(--transition);
}

.feature-link:hover .fi {
    transform: translateX(4px);
}

/* Toast Notifications */
.toast-container {
    max-width: 400px;
}

.toast {
    min-width: 300px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    margin-bottom: 12px;
}

.toast-body {
    font-weight: 500;
    font-size: 14px;
}

.toast-body .fi {
    font-size: 18px;
    flex-shrink: 0;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Flaticon specific adjustments */
.fi-rr-arrow-right,
.fi-rr-sign-out-alt,
.fi-rr-home,
.fi-rr-info,
.fi-rr-user-check,
.fi-rr-user-add,
.fi-rr-shield-check,
.fi-rr-users,
.fi-rr-user-remove,
.fi-rr-search,
.fi-brands-discord {
    line-height: 1;
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.title-gradient,
.badge-text {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* ============================================
   HERO SECTION (Index Page) - OLD
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 0 0 0;
    position: relative;
}

.bot-icon {
    margin: 0 auto 2rem;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #5865F2, #57F287);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(88, 101, 242, 0.3);
    border: 4px solid var(--bg-dark);
    transition: transform 0.3s;
}

.bot-icon:hover {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 12px 50px rgba(88,101,242,0.4);
}

.bot-icon img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.08;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    margin-bottom: 0.45em;
    text-transform: uppercase;
    position: relative;
}

.hero-glow {
    background-image: linear-gradient(90deg, #57F287 0%, #5865F2 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-glow-anim 2s ease-in-out infinite alternate;
}

@keyframes hero-glow-anim {
    to {
        filter: drop-shadow(0 0 16px #57F287);
        text-shadow: 0 0 10px #5865F2, 0 0 30px #57F287;
    }
}

.global-stats {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2.2rem;
    margin: 2.8rem auto 0;
    flex-wrap: wrap;
    max-width: 690px;
}

.stat-card {
    background: rgba(30,24,60,0.9);
    border: 1.6px solid var(--primary-dark);
    border-radius: 18px;
    padding: 1.2em 2em 1em 2em;
    box-shadow: 0 2px 25px rgba(88,101,242,0.09);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    margin-bottom: 8px;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 2px 24px #5865F2aa;
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 0.7em;
}

.stat-label {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.stat-value {
    font-size: 1.35rem;
    font-weight: bolder;
    letter-spacing: 1px;
    color: var(--primary);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    z-index: 2;
}

.scroll-indicator .mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--primary);
    border-radius: 16px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    display: block;
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scroll-mouse 1.7s infinite;
    opacity: 0.6;
}

@keyframes scroll-mouse {
    0% {top:8px; opacity:0.6;}
    30% {top:18px; opacity:1;}
    60% {top:8px; opacity:0.6;}
}

.scroll-indicator .arrow {
    display: block;
    margin-top: 7px;
    width: 18px;
    height: 18px;
    border-left: 4px solid var(--primary);
    border-bottom: 4px solid var(--primary);
    transform: rotate(-45deg);
    animation: bounce-arrow 1.3s infinite;
    opacity: 0.7;
}

@keyframes bounce-arrow {
    0%, 100% {transform: translateY(0) rotate(-45deg);}
    40% {transform: translateY(6px) rotate(-45deg);}
}

/* Navbar for index page */
.navbar {
    background: rgba(10, 10, 35, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #5865F2, #57F287);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--bg-card);
    border-radius: 25px;
    border: 1px solid var(--border);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: rgba(10, 10, 35, 0.5);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-secondary);
}

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

.index-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .index-page .container {
        padding: 0 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .guilds-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 28px;
    }
    
    .content-header {
        flex-direction: column;
    }

    /* Index Page Responsive */
    .index-page .navbar .container {
        padding: 0 20px;
    }

    .index-page .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

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

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .feature-showcase.reverse {
        direction: ltr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .team-grid,
    .vision-content,
    .features-stats,
    .command-categories {
        grid-template-columns: 1fr;
    }

    .feature-stat-card {
        padding: 24px 20px;
    }

    .category-card {
        padding: 24px 20px;
    }
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0F0F2E 0%, #0A0A23 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
}

.team-avatar .avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-avatar .avatar-img {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
}

.team-avatar .avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    border: 4px solid var(--primary);
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.team-role {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Vision Section */
.vision-section {
    padding: 120px 0;
    background: #0A0A23;
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-8px);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
    color: var(--primary);
}

.vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.vision-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Bot Features Section */
.bot-features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0F0F2E 0%, #0A0A23 100%);
}

.features-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 64px;
}

.feature-stat-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.feature-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon-large {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label-large {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.command-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition);
}

.category-card:hover {
    border-color: rgba(88, 101, 242, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.command-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-secondary);
}

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

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(87, 242, 135, 0.1));
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BOT STATS SECTION
   ============================================ */

.bot-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.bot-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(88, 101, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(87, 242, 135, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.stats-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.stats-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
}

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

.stats-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
    position: relative;
}

.stats-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.stats-card:hover .stats-icon::after {
    opacity: 1;
}

.stats-content {
    flex: 1;
}

.stats-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stats-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-update-info {
    text-align: center;
    margin-top: 48px;
    padding: 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stats-update-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.stats-update-info i {
    color: var(--secondary);
    margin-right: 8px;
}

/* Hero Stats Güncellemesi */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

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

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-card {
        padding: 24px 20px;
    }
    
    .stats-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .stats-number {
        font-size: 28px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stat-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .bot-stats-section {
        padding: 60px 0;
    }
    
    .stats-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}

/* Animasyon Efektleri */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-number, .stat-value {
    animation: countUp 0.6s ease-out;
}

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

.stats-loading .stats-number::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

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