* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Default: Custom cursor için cursor'u gizle */
body:not(.opera-browser) * {
    cursor: none !important;
}

body:not(.opera-browser) {
    cursor: none !important;
}

/* Opera için normal cursor */
body.opera-browser * {
    cursor: auto !important;
}

body.opera-browser .cursor-none {
    cursor: auto !important;
}

body.opera-browser a,
body.opera-browser button,
body.opera-browser .btn,
body.opera-browser [onclick],
body.opera-browser .sponsor-item,
body.opera-browser .contact-card,
body.opera-browser .team-card,
body.opera-browser .feature-card,
body.opera-browser .stat-card,
body.opera-browser .partner-card,
body.opera-browser .discord-login-btn,
body.opera-browser #donate-button,
body.opera-browser #modal-close-btn,
body.opera-browser .group,
body.opera-browser .dropdown-item,
body.opera-browser .announcement-close {
    cursor: pointer !important;
}

/* Modal içindeki tüm Tailwind class'ları için */
body.opera-browser #donate-modal-overlay .cursor-none,
body.opera-browser #profile-modal-overlay .cursor-none {
    cursor: auto !important;
}

body.opera-browser #donate-modal-overlay a,
body.opera-browser #donate-modal-overlay button,
body.opera-browser #donate-modal-overlay .group,
body.opera-browser #profile-modal-overlay a,
body.opera-browser #profile-modal-overlay button {
    cursor: pointer !important;
}

body.opera-browser input,
body.opera-browser textarea {
    cursor: text !important;
}

:root {
            --primary: #a855f7;
            --primary-dark: #7c3aed;
            --secondary: #ec4899;
            --accent: #f472b6;
            --dark: #0a0a0f;
            --dark-light: #1a1a2e;
            --dark-lighter: #252538;
            --text: #e5e7eb;
            --text-muted: #9ca3af;
            --success: #10b981;
            --warning: #f59e0b;
        }

        /* Opera Browser Optimizations */
        @supports (-o-transform: none) {
            /* Opera için custom cursor'u gizle */
            #custom-cursor,
            #cursor-glow {
                display: none !important;
            }
            
            /* Opera için normal cursor göster */
            * {
                cursor: auto !important;
            }
            
            body {
                cursor: auto !important;
            }
            
            /* Opera için animasyonları basitleştir */
            .particle,
            .snowflake {
                animation-duration: 1.5s !important;
            }
            
            /* Opera için will-change kaldır */
            * {
                will-change: auto !important;
            }
            
            /* Opera için backdrop-filter'ı kaldır (performans) */
            .donate-modal-container,
            .auth-box,
            nav {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: rgba(26, 26, 46, 0.98) !important;
            }
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            cursor: none;
        }

        body.logged-in .auth-overlay {
            display: none;
        }

        /* Custom Cursor - EN YÜKSEK Z-INDEX */
        #custom-cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999999;
            transition: all 0.1s ease;
            transform: translate(-50%, -50%);
            left: 0;
            top: 0;
        }
        
        /* Modal açıkken cursor'u gizle */
        #donate-modal-overlay[style*="display: flex"] ~ #custom-cursor,
        #donate-modal-overlay[style*="display: flex"] ~ #cursor-glow {
            display: none !important;
        }

        #cursor-glow {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 99999999;
            transition: all 0.05s ease;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 20px var(--primary);
            left: 0;
            top: 0;
        }

        /* Particle Effect */
        .particle {
            position: fixed;
            width: 4px;
            height: 4px;
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0;
            animation: particleFade 0.8s ease-out forwards;
        }

        @keyframes particleFade {
            0% { opacity: 1; transform: translate(0, 0) scale(1); }
            100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
        }

        /* Snow Effect */
        .snowflake {
            position: fixed;
            top: -10px;
            color: rgba(168, 85, 247, 0.3);
            font-size: 1em;
            font-family: Arial, sans-serif;
            text-shadow: 0 0 5px rgba(168, 85, 247, 0.5);
            pointer-events: none;
            z-index: 9997;
            animation: fall linear infinite;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh) rotate(360deg);
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Auth Overlay - CURSOR'DAN DÜŞÜK Z-INDEX */
        .auth-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .auth-box {
            background: var(--dark-light);
            border: 2px solid rgba(168, 85, 247, 0.3);
            border-radius: 24px;
            padding: 3rem;
            max-width: 450px;
            width: 90%;
            text-align: center;
            animation: slideUp 0.6s ease;
            position: relative;
            overflow: hidden;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .auth-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 60%);
            pointer-events: none;
        }

        .auth-box h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .auth-box p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        .discord-login-btn {
            width: 100%;
            padding: 1.2rem;
            background: #5865F2;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .discord-login-btn:hover {
            background: #4752C4;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
        }

        .auth-features {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            position: relative;
            z-index: 1;
        }

        .auth-feature {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .auth-feature i {
            color: var(--success);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(168, 85, 247, 0.1);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(10, 10, 15, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary);
        }

        .user-name {
            font-weight: 600;
            color: var(--text);
        }

        .logout-btn {
            padding: 0.5rem 1rem;
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid #ef4444;
            border-radius: 8px;
            color: #ef4444;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: none;
            transition: all 0.3s ease;
        }

        .logout-btn:hover {
            background: #ef4444;
            color: white;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: none;
        }

        /* User Profile in Navbar */
        .user-profile {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 1rem;
            background: rgba(168, 85, 247, 0.08);
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            cursor: none;
        }

        .user-profile:hover {
            background: rgba(168, 85, 247, 0.15);
            border-color: rgba(168, 85, 247, 0.4);
            transform: translateY(-2px);
            cursor: none;
            box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
        }

        .user-avatar-wrapper {
            position: relative;
            width: 40px;
            height: 40px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .user-profile:hover .user-avatar {
            border-color: var(--secondary);
            transform: scale(1.05);
        }

        .user-status-dot {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 12px;
            height: 12px;
            background: var(--success);
            border: 2px solid var(--dark);
            border-radius: 50%;
            animation: pulse-dot 2s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { 
                box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
            }
            50% { 
                box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
            }
        }

        .user-info {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .user-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            max-width: 120px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .user-status {
            font-size: 0.75rem;
            color: var(--success);
            font-weight: 500;
        }

        .dropdown-btn {
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dropdown-btn:hover {
            color: var(--primary);
            transform: rotate(180deg);
        }

        .user-dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 1rem);
            right: 0;
            background: var(--dark-light);
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 12px;
            padding: 0.5rem;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--text);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }

        .dropdown-item:hover {
            background: rgba(168, 85, 247, 0.1);
            color: var(--primary);
            transform: translateX(5px);
        }

        .dropdown-item.logout {
            color: #ef4444;
        }

        .dropdown-item.logout:hover {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .dropdown-divider {
            height: 1px;
            background: rgba(168, 85, 247, 0.1);
            margin: 0.5rem 0;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1)),
                        url('bg.png') center/cover;
            filter: brightness(0.3);
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.15), transparent 70%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(168, 85, 247, 0.2);
            border: 1px solid var(--primary);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            border: none;
            cursor: none;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text);
            border: 2px solid rgba(168, 85, 247, 0.3);
        }

        .btn-secondary:hover {
            background: rgba(168, 85, 247, 0.1);
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        /* Section Styles */
        section {
            padding: 6rem 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            background: rgba(168, 85, 247, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Server Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            background: linear-gradient(135deg, var(--dark-light), var(--dark-lighter));
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .stat-value {
            font-family: 'Poppins', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        .status-badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid var(--success);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--success);
            margin-top: 1rem;
        }

        .status-badge.offline {
            background: rgba(239, 68, 68, 0.2);
            border-color: #ef4444;
            color: #ef4444;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--dark-light);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .feature-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            color: var(--text-muted);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .team-card {
            background: var(--dark-light);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
        }

        .team-card:hover::before {
            opacity: 1;
        }

        .team-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--primary);
            overflow: hidden;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
            position: relative;
            z-index: 1;
        }

        .team-role {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: rgba(168, 85, 247, 0.2);
            border: 1px solid var(--primary);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .team-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Partners Section */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .partner-card {
            background: var(--dark-light);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .partner-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
        }

        .partner-logo {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: 800;
        }

        .partner-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .partner-card p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .partner-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .partner-link:hover {
            gap: 0.8rem;
        }

        /* Partners Section */
        #partners {
            background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 50%, var(--dark) 100%);
            position: relative;
            overflow: hidden;
        }

        #partners::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Sponsor Carousel */
        .sponsors-carousel-wrapper {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
            padding: 2rem 0;
            overflow: hidden;
        }

        /* Fade efektleri - sağ ve sol kenar */
        .sponsors-carousel-wrapper::before,
        .sponsors-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 2;
            pointer-events: none;
        }

        .sponsors-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
        }

        .sponsors-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
        }

        .sponsors-carousel {
            display: flex;
            gap: 2rem;
            overflow: visible;
            padding: 1rem 0;
            animation: scrollLeft 30s linear infinite;
            width: max-content;
        }

        .sponsors-carousel:hover {
            animation-play-state: paused;
        }

        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .sponsors-carousel::-webkit-scrollbar {
            display: none;
        }

        .sponsor-item {
            flex: 0 0 auto;
            width: 250px;
            height: 140px;
            background: var(--dark-light);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 16px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            transition: all 0.4s ease;
            cursor: none;
            position: relative;
            overflow: hidden;
            user-select: none;
        }

        .sponsor-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .sponsor-item:hover::before {
            opacity: 1;
        }

        .sponsor-item:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(168, 85, 247, 0.3);
        }

        .sponsor-logo {
            width: 100%;
            height: 70px;
            object-fit: contain;
            transition: transform 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .sponsor-item:hover .sponsor-logo {
            transform: scale(1.05);
        }

        .sponsor-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text);
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .carousel-btn {
            display: none;
        }

        .prev-btn {
            left: 0;
        }

        .next-btn {
            right: 0;
        }

        /* Loading Animation */
        .sponsor-item.loading {
            background: linear-gradient(90deg, var(--dark-light) 25%, var(--dark-lighter) 50%, var(--dark-light) 75%);
            background-size: 200% 100%;
            animation: loading 1.5s ease-in-out infinite;
            border: 1px solid rgba(168, 85, 247, 0.1);
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .loading-shimmer {
            width: 100%;
            height: 100%;
            border-radius: 12px;
        }

        /* Donate Section */
        .donate-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--dark-light);
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 24px;
            padding: 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .donate-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent 60%);
        }

        .donate-icon {
            font-size: 4rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .donate-container h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
            position: relative;
            z-index: 1;
        }

        .donate-container p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .donate-container .btn {
            position: relative;
            z-index: 10;
            pointer-events: auto !important;
        }

        .donate-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .donate-btn {
            padding: 1.5rem 2rem;
            border-radius: 16px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            border: 2px solid rgba(168, 85, 247, 0.3);
            background: rgba(168, 85, 247, 0.05);
            color: var(--text);
            cursor: none;
            position: relative;
            overflow: hidden;
        }

        .donate-btn:active {
            transform: scale(0.95);
        }

        /* Modal Styles - Modern & Minimal */
        #donate-modal-overlay {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            background: rgba(0, 0, 0, 0.65) !important;
            backdrop-filter: blur(12px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
            z-index: 999999 !important;
            display: none !important;
            align-items: center !important;
            justify-content: center !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
            opacity: 1 !important;
            pointer-events: auto !important;
        }
        
        /* Opera için overlay cursor */
        body:not(.opera-browser) #donate-modal-overlay {
            cursor: pointer !important;
        }
        
        body.opera-browser #donate-modal-overlay {
            cursor: pointer !important;
        }

        #donate-modal-overlay[style*="display: flex"] {
            display: flex !important;
            animation: overlayFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
        }

        /* Modal açıkken body ve modal cursor düzeltmesi */
        body:not(.opera-browser):has(#donate-modal-overlay[style*="display: flex"]) {
            cursor: pointer !important;
        }
        
        body.opera-browser:has(#donate-modal-overlay[style*="display: flex"]) {
            cursor: pointer !important;
        }
        
        #donate-modal-overlay:not(.opera-browser *) * {
            cursor: none !important;
        }
        
        body.opera-browser #donate-modal-overlay * {
            cursor: pointer !important;
        }
        
        #donate-modal-overlay:not(.opera-browser *) a,
        #donate-modal-overlay:not(.opera-browser *) button,
        #donate-modal-overlay:not(.opera-browser *) [onclick] {
            cursor: none !important;
        }
        
        body.opera-browser #donate-modal-overlay a,
        body.opera-browser #donate-modal-overlay button,
        body.opera-browser #donate-modal-overlay [onclick],
        body.opera-browser #donate-modal-overlay .group {
            cursor: pointer !important;
        }
        
        /* Modal Content Spacing */
        .donate-modal-container > div {
            padding: 2.5rem !important;
        }

        .donate-modal-container p {
            color: rgba(229, 231, 235, 0.8) !important;
            line-height: 1.7 !important;
            font-weight: 400 !important;
        }

        .donate-modal-container .grid {
            gap: 1rem !important;
        }

        /* Modal Buttons */
        .donate-modal-container button {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        .donate-modal-container button:hover {
            transform: translateY(-2px) !important;
        }

        .donate-modal-container button:active {
            transform: translateY(0) !important;
        }

        /* Modal Icons */
        .donate-modal-container svg {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        .donate-modal-container .bg-white\/5:hover svg {
            transform: scale(1.08) !important;
        }

        /* Modal Responsive */
        @media (max-width: 640px) {
            .donate-modal-container {
                max-width: calc(100% - 2rem) !important;
                margin: 1rem !important;
                border-radius: 20px !important;
            }

            .donate-modal-container > div {
                padding: 2rem !important;
            }

            .donate-modal-container h2 {
                font-size: 1.5rem !important;
            }

            .donate-modal-container .grid {
                grid-template-columns: 1fr !important;
                gap: 0.875rem !important;
            }
            
            #modal-close-btn {
                width: 36px !important;
                height: 36px !important;
            }

            /* Sponsor Carousel Extra Small Screens */
            .sponsors-carousel-wrapper {
                padding: 1.5rem 0;
            }

            .sponsors-carousel-wrapper::before,
            .sponsors-carousel-wrapper::after {
                width: 50px;
            }

            .sponsor-item {
                width: 180px;
                height: 100px;
                padding: 0.75rem;
                cursor: default;
            }

            .sponsor-logo {
                height: 50px;
            }

            .sponsor-name {
                font-size: 0.8rem;
            }

            .sponsors-carousel {
                animation: scrollLeft 20s linear infinite;
            }
        }

        #donate-modal-overlay.hidden {
            display: none !important;
            opacity: 0;
            pointer-events: none;
        }

        .donate-modal-container {
            position: relative !important;
            width: 100% !important;
            max-width: 480px !important;
            background: rgba(17, 17, 27, 0.92) !important;
            backdrop-filter: blur(24px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
            border-radius: 24px !important;
            box-shadow: 
                0 24px 48px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.03) inset,
                0 8px 16px rgba(168, 85, 247, 0.1) !important;
            overflow: hidden !important;
            display: flex !important;
            flex-direction: column !important;
            animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
            margin: 1rem !important;
            z-index: 1000000 !important;
            pointer-events: auto !important;
        }
        
        /* Opera için modal cursor */
        body:not(.opera-browser) .donate-modal-container {
            cursor: pointer !important;
        }
        
        body.opera-browser .donate-modal-container {
            cursor: auto !important;
        }

        .donate-modal-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(168, 85, 247, 0.3), 
                rgba(236, 72, 153, 0.3), 
                transparent);
            pointer-events: none;
        }

        .donate-modal-container::after {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            background: radial-gradient(
                ellipse at top, 
                rgba(168, 85, 247, 0.05), 
                transparent 60%
            );
            pointer-events: none;
        }

        /* Modal Close Button */
        #modal-close-btn {
            background: rgba(255, 255, 255, 0.04) !important;
            border: 1px solid rgba(255, 255, 255, 0.06) !important;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
            width: 40px !important;
            height: 40px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 12px !important;
            cursor: none !important;
            pointer-events: auto !important;
        }

        #modal-close-btn:hover {
            background: rgba(239, 68, 68, 0.12) !important;
            border-color: rgba(239, 68, 68, 0.25) !important;
            transform: scale(1.05) rotate(90deg) !important;
        }

        #modal-close-btn:active {
            transform: scale(0.95) rotate(90deg) !important;
        }

        /* Modal Header Badge */
        .donate-modal-container .bg-primary\/10 {
            background: rgba(168, 85, 247, 0.06) !important;
            border: 1px solid rgba(168, 85, 247, 0.15) !important;
            box-shadow: 0 2px 8px rgba(168, 85, 247, 0.08) !important;
            backdrop-filter: blur(8px) !important;
        }

        /* Modal Cards */
        .donate-modal-container .bg-white\/5 {
            background: rgba(255, 255, 255, 0.04) !important;
            border: 1px solid rgba(255, 255, 255, 0.06) !important;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
            backdrop-filter: blur(8px) !important;
            cursor: none !important;
            pointer-events: auto !important;
        }

        .donate-modal-container .bg-white\/5:hover {
            background: rgba(168, 85, 247, 0.1) !important;
            border-color: rgba(168, 85, 247, 0.3) !important;
            transform: translateY(-3px) !important;
            box-shadow: 
                0 12px 24px rgba(168, 85, 247, 0.15),
                0 0 0 1px rgba(168, 85, 247, 0.1) inset !important;
        }
        
        /* Modal içindeki tüm interaktif elemanlar */
        .donate-modal-container a,
        .donate-modal-container button,
        .donate-modal-container [onclick] {
            cursor: none !important;
            pointer-events: auto !important;
        }

        /* Modal Title */
        .donate-modal-container h2 {
            background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700 !important;
            letter-spacing: -0.03em !important;
            text-shadow: 0 2px 8px rgba(168, 85, 247, 0.1);
        }

        /* Modal Footer Badge */
        .donate-modal-container .bg-white\/5.border {
            background: rgba(168, 85, 247, 0.05) !important;
            border-color: rgba(168, 85, 247, 0.12) !important;
        }

        @keyframes modalSlideIn {
            0% {
                opacity: 0;
                transform: translateY(-30px) scale(0.92);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-card {
            background: var(--dark-light);
            border: 1px solid rgba(168, 85, 247, 0.15);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            text-decoration: none;
            color: var(--text);
            display: block;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
        }

        .contact-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }

        .contact-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Palestine Support */
        .palestine-support {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
            border: 2px solid rgba(16, 185, 129, 0.3);
            border-radius: 20px;
            padding: 2rem 3rem;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
        }

        .palestine-support::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 60%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .palestine-support p {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            color: var(--success);
            font-weight: 700;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
            font-family: 'Poppins', sans-serif;
        }

        .palestine-support .flag {
            font-size: 2rem;
            animation: wave 2s ease-in-out infinite;
        }

        @keyframes wave {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            75% { transform: rotate(10deg); }
        }

        /* Footer */
        footer {
            background: var(--dark-light);
            border-top: 1px solid rgba(168, 85, 247, 0.1);
            padding: 3rem 0 1.5rem;
            margin-top: 6rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(168, 85, 247, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(168, 85, 247, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Admin Panel */
        .admin-panel {
            position: fixed;
            top: 80px;
            right: 20px;
            background: var(--dark-light);
            border: 2px solid rgba(168, 85, 247, 0.3);
            border-radius: 16px;
            padding: 1.5rem;
            min-width: 320px;
            z-index: 999;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            display: none;
        }

        .admin-panel.show {
            display: block;
            animation: slideInRight 0.4s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .admin-panel h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .admin-stat {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            margin-bottom: 0.8rem;
            background: rgba(168, 85, 247, 0.05);
            border: 1px solid rgba(168, 85, 247, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .admin-stat:hover {
            background: rgba(168, 85, 247, 0.1);
            border-color: rgba(168, 85, 247, 0.3);
            transform: translateX(-5px);
        }

        .admin-stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .admin-stat-label i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .admin-stat-value {
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
        }

        .admin-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: none;
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            animation: adminPulse 2s infinite;
        }

        @keyframes adminPulse {
            0%, 100% { box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4); }
            50% { box-shadow: 0 10px 40px rgba(168, 85, 247, 0.6); }
        }


        #opera-warning-modal {
            position: fixed !important;
            z-index: 999999 !important;
        }

        #opera-warning-modal button:hover {
            transform: translateY(-2px) !important;
        }

        .admin-toggle:hover {
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
            
            .user-profile {
                padding: 0.4rem 0.75rem;
                gap: 0.5rem;
            }
            
            .user-info {
                display: none;
            }
            
            .dropdown-btn {
                padding: 0.25rem;
            }

            /* Announcement Banner Mobile */
            .announcement-banner {
                padding: 0.5rem 1rem;
            }

            .announcement-icon {
                font-size: 1rem;
            }

            .announcement-text {
                font-size: 0.85rem;
            }

            .announcement-close {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .donate-container {
                padding: 2rem;
            }

            .auth-box {
                padding: 2rem;
            }

            .admin-panel {
                right: 10px;
                left: 10px;
                min-width: auto;
            }

            .stats-grid,
            .features-grid,
            .team-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            /* Sponsor Carousel Mobile */
            .sponsors-carousel-wrapper {
                padding: 2rem 0;
            }

            .sponsors-carousel-wrapper::before,
            .sponsors-carousel-wrapper::after {
                width: 80px;
            }

            .sponsor-item {
                width: 200px;
                height: 120px;
                padding: 1rem;
                cursor: default;
            }

            .sponsor-logo {
                height: 60px;
            }

            .sponsor-name {
                font-size: 0.85rem;
            }

            .sponsors-carousel {
                animation: scrollLeft 25s linear infinite;
            }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Announcement Banner */
        .announcement-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            padding: 0.75rem 2rem;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.95), rgba(124, 58, 237, 0.95));
            backdrop-filter: blur(10px);
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            animation: slideDownIn 0.5s ease forwards;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        @keyframes slideDownIn {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes slideUpOut {
            from {
                transform: translateY(0);
                opacity: 1;
            }
            to {
                transform: translateY(-100%);
                opacity: 0;
            }
        }

        .announcement-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .announcement-icon {
            font-size: 1.2rem;
            color: white;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .announcement-text-wrapper {
            flex: 1;
            overflow: hidden;
        }

        .announcement-text {
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            margin: 0;
            white-space: nowrap;
            animation: scrollText 20s linear infinite;
            display: inline-block;
            padding-left: 100%;
        }

        @keyframes scrollText {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        .announcement-close {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .announcement-close:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
        }

        /* Announcement Types */
        .announcement-info {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.95));
        }

        .announcement-success {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.95), rgba(5, 150, 105, 0.95));
        }

        .announcement-warning {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(217, 119, 6, 0.95));
        }

        .announcement-error {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.95));
        }

        .announcement-mor {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.95), rgba(124, 58, 237, 0.95));
            box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
        }

        /* ========== PROFILE MODAL STYLES ========== */
        #profile-modal-overlay {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100vw !important;
            height: 100vh !important;
            background: rgba(0, 0, 0, 0.65) !important;
            backdrop-filter: blur(12px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
            z-index: 999999 !important;
            display: none !important;
            align-items: center !important;
            justify-content: center !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
            opacity: 1 !important;
            pointer-events: auto !important;
        }
        
        /* Opera için profile overlay cursor */
        body:not(.opera-browser) #profile-modal-overlay {
            cursor: none !important;
        }
        
        body.opera-browser #profile-modal-overlay {
            cursor: auto !important;
        }

        #profile-modal-overlay[style*="display: flex"] {
            display: flex !important;
            animation: overlayFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
        }

        body:not(.opera-browser):has(#profile-modal-overlay[style*="display: flex"]) {
            cursor: none !important;
        }
        
        body.opera-browser:has(#profile-modal-overlay[style*="display: flex"]) {
            cursor: auto !important;
        }
        
        #profile-modal-overlay:not(.opera-browser *) * {
            cursor: none !important;
        }
        
        body.opera-browser #profile-modal-overlay * {
            cursor: auto !important;
        }
        
        #profile-modal-overlay:not(.opera-browser *) a,
        #profile-modal-overlay:not(.opera-browser *) button,
        #profile-modal-overlay:not(.opera-browser *) [onclick] {
            cursor: none !important;
        }
        
        body.opera-browser #profile-modal-overlay a,
        body.opera-browser #profile-modal-overlay button,
        body.opera-browser #profile-modal-overlay [onclick] {
            cursor: pointer !important;
        }

        #profile-modal-overlay .donate-modal-container {
            cursor: auto !important;
        }

