
        :root {
            --bg-color: #151a26;
            --card-bg: #111620;
            --input-bg: rgba(14, 18, 25, 0.75);
            --brand-orange: #FF7A1A;
            --brand-orange-hover: #e0650f;
            --brand-blue: #2563eb;
            --brand-blue-hover: #1d4ed8;
            --text-primary: #ffffff;
            --text-secondary: #9ca3af;
            --text-muted: #6b7280;
            --border-color: rgba(255, 255, 255, 0.05);
            --border-color-hover: rgba(255, 255, 255, 0.1);
            --site-width: 1440px;
        }

        /* Sayfa yüklenirken varsayılan tarayıcı ve Tailwind preflight kenarlık renklerinin beyaz/gri görünmesini engeller */
        html body *, html body ::before, html body ::after {
            border-color: rgba(255, 255, 255, 0.05);
        }

        .site-container {
            width: 100%;
            max-width: var(--site-width);
            margin: 0 auto;
            padding: 0 16px;
        }

        /* 1. Top Bar */
        .top-bar {
            background-color: #0b0e14;
            border-bottom: 1px solid var(--border-color);
            padding: 10px 0;
            font-size: 12px;
        }

        .top-bar .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .firsat-tag {
            background-color: rgba(255, 122, 26, 0.15);
            color: var(--brand-orange);
            font-weight: 800;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 10px;
            letter-spacing: 0.05em;
        }

        .announcement-link {
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

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

        .dot-pulse {
            width: 6px;
            height: 6px;
            background-color: var(--brand-orange);
            border-radius: 50%;
            display: inline-block;
            position: relative;
        }

        .dot-pulse::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--brand-orange);
            border-radius: 50%;
            animation: ping 1.2s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        @keyframes ping {
            75%, 100% {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 20px;
            color: var(--text-secondary);
            flex-wrap: wrap;
        }

        .top-bar-link {
            display: flex;
            align-items: center;
            gap: 6px;
        }

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

        .discord-link:hover {
            color: #5865F2;
        }

        .top-bar-divider {
            color: rgba(255, 255, 255, 0.1);
        }

        /* State Simulator */
        .simulator-toggle {
            display: flex;
            align-items: center;
            gap: 4px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            padding: 2px;
            border-radius: 999px;
        }

        .simulator-btn {
            font-size: 10px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 999px;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }

        .simulator-btn:hover {
            color: var(--text-primary);
        }

        .simulator-btn.active {
            background-color: var(--brand-orange);
            color: var(--text-primary);
        }

        /* 2. Main Header */
        .main-header {
            background-color: var(--card-bg);
            border-bottom: 1px solid var(--border-color);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .main-header .site-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--text-primary);
            user-select: none;
        }

        .logo-orange {
            color: var(--brand-orange);
        }

        .lang-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            background-color: var(--bg-color);
            border: 1px solid var(--border-color);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }

        .lang-btn:hover {
            border-color: var(--border-color-hover);
            color: var(--text-primary);
        }

        .lang-btn img {
            width: 16px;
            border-radius: 2px;
        }

        /* User Header Area */
        .header-right {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        #userPanelLoggedOut, #userPanelLoggedIn {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        #userPanelLoggedOut.hidden, #userPanelLoggedIn.hidden {
            display: none;
        }

        .logged-out-user-group {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .logged-out-avatar-frame {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }

        .logged-out-user-group:hover .logged-out-avatar-frame {
            color: var(--brand-orange);
            border-color: rgba(255, 122, 26, 0.4);
        }

        .logged-out-text {
            display: flex;
            flex-direction: column;
            text-align: left;
            font-size: 12px;
        }

        .logged-out-links {
            font-weight: 700;
            color: var(--text-primary);
        }

        .logged-out-links a:hover {
            color: var(--brand-orange);
        }

        .logged-out-subtext {
            color: var(--text-muted);
            font-size: 10px;
            margin-top: 2px;
            font-weight: 500;
        }

        .cart-icon-wrapper {
            position: relative;
            cursor: pointer;
            padding: 8px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .cart-icon-wrapper:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .header-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            background-color: var(--brand-blue);
            color: white;
            font-size: 9px;
            font-weight: 800;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--card-bg);
        }

        .primary-add-btn {
            background-color: var(--brand-orange);
            color: var(--text-primary);
            font-size: 12px;
            font-weight: 700;
            padding: 10px 16px;
            border-radius: 12px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(255, 122, 26, 0.15);
        }

        .primary-add-btn:hover {
            background-color: var(--brand-orange-hover);
        }

        .primary-add-btn:active {
            transform: scale(0.95);
        }

        /* Logged In User Elements */
        .balance-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 900;
            color: #10b981;
        }

        .icon-btn-header {
            position: relative;
            cursor: pointer;
            padding: 8px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }

        .icon-btn-header:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
        }

        .avatar-btn {
            position: relative;
            cursor: pointer;
        }

        .avatar-btn img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.2s ease;
        }

        .avatar-btn:hover img {
            border-color: var(--brand-orange);
        }

        .avatar-status {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 10px;
            height: 10px;
            background-color: #10b981;
            border: 2px solid var(--card-bg);
            border-radius: 50%;
        }

        .primary-blue-btn {
            background-color: var(--brand-blue);
            color: var(--text-primary);
            font-size: 12px;
            font-weight: 700;
            padding: 10px 16px;
            border-radius: 12px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }

        .primary-blue-btn:hover {
            background-color: var(--brand-blue-hover);
        }

        .primary-blue-btn:active {
            transform: scale(0.95);
        }

        /* 3. Navigation Bar */
        .nav-bar {
            background-color: rgba(17, 22, 32, 0.6);
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
        }

        .nav-bar .site-container {
            display: flex;
            align-items: center;
            overflow-x: auto;
            gap: 24px;
        }

        /* Hide scrollbar for nav */
        .nav-bar .site-container::-webkit-scrollbar {
            display: none;
        }
        .nav-bar .site-container {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .nav-link-main {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            white-space: nowrap;
        }

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

        .nav-link-icon-orange {
            color: var(--brand-orange);
        }

        .nav-bar-divider {
            color: rgba(255, 255, 255, 0.1);
        }

        .nav-chip {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-secondary);
            background-color: rgba(255, 255, 255, 0.05);
            padding: 6px 12px;
            border-radius: 999px;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .nav-chip:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
        }

        /* 5. Footer */
        .footer {
            background-color: var(--card-bg);
            border-top: 1px solid var(--border-color);
            padding: 32px 0;
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: auto;
        }

        .footer .site-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .footer .site-container {
                flex-direction: row;
            }
        }

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

        .footer-links a:hover {
            color: var(--text-primary);
        }

        body {
            background-color: #151a26;
            -webkit-font-smoothing: antialiased;
        }

        /* Scrollbar özelleştirmesi */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #151a26;
        }

        ::-webkit-scrollbar-thumb {
            background: #2d3748;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #4a5568;
        }

        /* Custom sidebar scrollbar styles */
        .custom-sidebar-scroll::-webkit-scrollbar {
            width: 4px;
        }
        .custom-sidebar-scroll::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 99px;
        }
        .custom-sidebar-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 122, 26, 0.15);
            border-radius: 99px;
        }
        .custom-sidebar-scroll::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 122, 26, 0.35);
        }

        /* Sidebar Tree Accordion Animation */
        .tree-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .tree-answer > div {
            overflow: hidden;
            min-height: 0;
            opacity: 0;
            transition: opacity 0.25s ease;
        }
        
        .tree-item.active .tree-answer {
            grid-template-rows: 1fr;
        }
        
        .tree-item.active .tree-answer > div {
            opacity: 1;
        }
        
        .tree-item.active .tree-icon {
            transform: rotate(180deg);
            color: #FF7A1A;
        }
        
        .tree-icon {
            transition: transform 0.3s ease, color 0.3s ease;
        }

        /* Active Question Card Style */
        .q-card-active {
            color: #ffffff !important;
            background-color: rgba(255, 255, 255, 0.04) !important;
            border-left: 2px solid #ffffff !important;
        }

        .faq2-tree-panel.hidden {
            display: none !important;
        }

        .faq2-search-row.is-match:not(.hidden) {
            display: flex;
        }

        /* Glow effects */
        .bg-glow-orange {
            background: radial-gradient(circle at 50% 50%, rgba(255, 122, 26, 0.15) 0%, transparent 70%);
        }
        
        .bg-glow-purple {
            background: radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
        }

        /* Micro animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        /* Category Chips Horizontal Scrollbar Hidden */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Custom styled category tree and sub-menu cards */
        .category-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.03);
            box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.02);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .category-card:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
            border-color: rgba(255, 255, 255, 0.08);
            transform: translateY(-2.5px);
        }

        .question-card {
            background: rgba(255, 255, 255, 0.01);
            border: 1px solid rgba(255, 255, 255, 0.02);
            border-left: 4px solid transparent;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .question-card:hover {
            background: rgba(255, 255, 255, 0.025);
            border-color: rgba(255, 255, 255, 0.05);
            padding-left: 18px;
        }

        .question-card-active {
            border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
            border-right: 1px solid rgba(255, 255, 255, 0.04) !important;
        }

        .search-wrapper {
            background: rgba(14, 18, 25, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .search-wrapper:focus-within {
            border-color: rgba(255, 122, 26, 0.4);
            box-shadow: 0 0 15px rgba(255, 122, 26, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.01);
            background: rgba(14, 18, 25, 0.85);
        }

        /* Premium Interactive Menu and Hover Styles */
        .nav-link-premium {
            position: relative;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 8px 14px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .nav-link-premium:hover {
            background-color: rgba(255, 122, 26, 0.06);
            color: #ffffff !important;
            transform: translateY(-1.5px);
        }

        .nav-link-premium svg {
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link-premium:hover svg {
            color: #FF7A1A !important;
            transform: scale(1.15);
        }

        .search-box-premium {
            background: rgba(14, 18, 25, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .search-box-premium:hover {
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(14, 18, 25, 0.8);
        }

        .search-box-premium:focus-within {
            border-color: rgba(255, 122, 26, 0.5);
            background: rgba(14, 18, 25, 0.95);
            box-shadow: 0 0 20px rgba(255, 122, 26, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.01);
            transform: translateY(-0.5px);
        }

        .discord-btn-premium {
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.12) 0%, rgba(88, 101, 242, 0.06) 100%);
            border: 1px solid rgba(88, 101, 242, 0.25);
            color: #a5b4fc !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 12px rgba(88, 101, 242, 0.05);
        }

        .discord-btn-premium:hover {
            background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
            border-color: #5865F2;
            color: #ffffff !important;
            box-shadow: 0 6px 20px rgba(88, 101, 242, 0.3);
            transform: translateY(-1px);
        }

        .discord-btn-premium svg {
            transition: transform 0.3s ease;
        }

        .discord-btn-premium:hover svg {
            transform: rotate(8deg) scale(1.15);
        }

        .logo-premium {
            transition: all 0.3s ease;
        }

        .logo-premium:hover {
            transform: scale(1.02);
            opacity: 0.95;
        }

        .logo-premium svg {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo-premium:hover svg {
            transform: rotate(-10deg) scale(1.05);
        }

        .user-profile-premium {
            padding: 6px 12px;
            border-radius: 12px;
            background-color: transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid transparent;
        }

        .user-profile-premium:hover {
            background-color: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .user-profile-premium svg {
            transition: all 0.3s ease;
        }

        .user-profile-premium:hover svg {
            color: #FF7A1A;
            transform: scale(1.05);
        }

        .add-btn-premium {
            background: linear-gradient(135deg, #FF7A1A 0%, #ff8f3d 100%);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(255, 122, 26, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .add-btn-premium:hover {
            background: linear-gradient(135deg, #ff8f3d 0%, #FF7A1A 100%);
            box-shadow: 0 6px 20px rgba(255, 122, 26, 0.35);
            transform: translateY(-1.5px) scale(1.02);
        }

        .add-btn-premium:active {
            transform: scale(0.97);
        }

        .add-btn-premium svg {
            transition: transform 0.3s ease;
        }

        .add-btn-premium:hover svg {
            transform: rotate(90deg);
        }
        /* Sayfa ilk yüklendiğinde (F5) border ve geçiş animasyonlarının titremesini/kalınlaşmasını önler */
        .no-transition * {
            transition: none !important;
            animation: none !important;
        }

        /* CKEditor içerik (help tablosundan gelen HTML) */
        .panel-a-body.ck-content,
        .panel-a-body .ck-content {
            line-height: 1.6;
        }

        .panel-a-body .ck-content h1 { font-size: 2rem; font-weight: bold; margin: 15px 0; color: #fff; }
        .panel-a-body .ck-content h2 { font-size: 1.75rem; font-weight: bold; margin: 15px 0; color: #fff; }
        .panel-a-body .ck-content h3 { font-size: 1.5rem; font-weight: bold; margin: 15px 0; color: #f3f4f6; }
        .panel-a-body .ck-content h4 { font-size: 1.25rem; font-weight: bold; margin: 15px 0; color: #f3f4f6; }
        .panel-a-body .ck-content h5 { font-size: 1rem; font-weight: bold; margin: 15px 0; color: #f3f4f6; }
        .panel-a-body .ck-content h6 { font-size: 0.875rem; font-weight: bold; margin: 15px 0; color: #f3f4f6; }
        .panel-a-body .ck-content p { margin: 0 0 0.5rem 0; }
        .panel-a-body .ck-content ul {
            list-style-type: disc;
            margin: 0 0 0.5rem 1.5rem;
            padding-left: initial;
            list-style-position: outside;
        }
        .panel-a-body .ck-content ol {
            list-style-type: decimal;
            margin: 0 0 0.5rem 2.5rem;
            padding-left: initial;
            list-style-position: outside;
        }
        .panel-a-body .ck-content li { margin: 0.25rem 0; }
        .panel-a-body .ck-content ul li ul,
        .panel-a-body .ck-content ol li ol,
        .panel-a-body .ck-content ul li ol,
        .panel-a-body .ck-content ol li ul {
            margin-top: 0.25rem;
            margin-bottom: 0.25rem;
            padding-left: 1.25rem;
        }
        .panel-a-body .ck-content blockquote {
            border-left: 4px solid #FF7A1A;
            padding-left: 1rem;
            color: #9ca3af;
            margin: 0 0 0.5rem 0;
            font-style: italic;
        }
        .panel-a-body .ck-content a {
            color: #FF7A1A;
            text-decoration: none;
        }
        .panel-a-body .ck-content a:hover { text-decoration: underline; }
        .panel-a-body .ck-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0.5rem 0;
        }
