* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            -webkit-tap-highlight-color: transparent;
        }
        :root {
            --primary-black: #000000;
            --dark-black: #1a1a1a;
            --medium-black: #2d2d2d;
            --light-black: #3d3d3d;
            --primary-red: #dc2626;
            --light-red: #ef4444;
            --very-light-red: #fecaca;
            --dark-red: #991b1b;
            --white: #ffffff;
            --light-gray: #f3f4f6;
        }
        body {
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-black) 50%, var(--dark-red) 100%);
            color: var(--white);
            min-height: 100vh;
            overflow-x: hidden;
            max-width: 100vw;
            direction: rtl;
        }

        /* ===== HEADER - مطابق 100% للداشبورد ===== */
        header {
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--dark-red);
            direction: ltr;
            transition: transform 0.3s ease;
        }
        header.hidden {
            transform: translateY(-100%);
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
        }
        .logo-text {
            color: var(--white);
            font-weight: 700;
            background: linear-gradient(45deg, var(--white), var(--very-light-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hamburger {
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            background: transparent;
            border: none;
            transition: all 0.3s ease;
        }
        .hamburger-line {
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 5px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        .hamburger:hover .hamburger-line { background: var(--primary-red); }
        .hamburger.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: var(--primary-red);
        }
        .hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
        .hamburger.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            background: var(--primary-red);
        }

        /* ===== SIDEBAR ===== */
        .main-sidebar {
            position: fixed;
            top: 0;
            right: -280px;
            width: 280px;
            height: 100vh;
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(20px);
            padding: 5rem 1.5rem 2rem;
            transition: right 0.4s ease-in-out;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            border-left: 1px solid var(--dark-red);
            z-index: 999;
            overflow-y: auto;
        }
        .main-sidebar.active { right: 0; }
        .user-profile {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(220, 38, 38, 0.3);
        }
        .profile-image {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            border: 3px solid var(--primary-red);
            overflow: hidden;
        }
        .profile-image img { width: 100%; height: 100%; object-fit: cover; }
        .profile-name { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.3rem; }
        .main-nav { list-style: none; margin-bottom: 2rem; }
        .main-nav li {
            margin: 0.5rem 0;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.4s ease;
        }
        .main-sidebar.active .main-nav li { opacity: 1; transform: translateX(0); }
        .main-nav li:nth-child(1) { transition-delay: 0.05s; }
        .main-nav li:nth-child(2) { transition-delay: 0.1s; }
        .main-nav li:nth-child(3) { transition-delay: 0.15s; }
        .main-nav li:nth-child(4) { transition-delay: 0.2s; }
        .main-nav li:nth-child(5) { transition-delay: 0.25s; }
        .main-nav li:nth-child(6) { transition-delay: 0.3s; }
        .main-nav li:nth-child(7) { transition-delay: 0.35s; }
        .main-nav a {
            color: var(--white);
            text-decoration: none;
            font-size: 1rem;
            padding: 0.8rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            cursor: pointer;
        }
        .main-nav a:hover { background: rgba(220, 38, 38, 0.1); border-color: var(--primary-red); transform: translateX(-5px); }
        .main-nav .active { background: rgba(220, 38, 38, 0.2); border-color: var(--primary-red); }
        .nav-icon { width: 20px; text-align: center; color: var(--primary-red); }
        .home-nav-item { border-bottom: 1px solid rgba(220, 38, 38, 0.3); margin-bottom: 0.5rem; }
        .logout { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(220, 38, 38, 0.3); }
        .logout a { color: var(--light-red); }
        .auth-btn {
            display: block;
            width: 100%;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
            border: none;
            background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
            color: var(--white);
        }
        .auth-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(220,38,38,0.4); }

        /* ===== PARTICLES ===== */
        .particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; }
        .particle {
            position: absolute;
            width: 3px; height: 3px;
            background: var(--primary-red);
            border-radius: 50%;
            animation: float 8s infinite linear;
            opacity: 0;
        }
        @keyframes float {
            0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
            10% { opacity: 0.7; }
            90% { opacity: 0.3; }
            100% { transform: translateY(-100vh) translateX(100px) rotate(360deg); opacity: 0; }
        }

        /* ===== HERO ===== */
        .hero {
            width: 100%;
            box-sizing: border-box;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
        }
        .hero-content { max-width: 800px; width: 100%; box-sizing: border-box; }
        .vortex-title {
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary-red), var(--light-red), var(--dark-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--white), var(--very-light-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
        }
        .hero p { font-size: 1.3rem; margin-bottom: 2.5rem; color: var(--light-gray); line-height: 1.6; }
        .cta-button {
            background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
            color: var(--white);
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
            font-weight: 600;
        }
        .cta-button:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5); }

        /* ===== FEATURES ===== */
        .features { padding: 6rem 2rem; background: rgba(0, 0, 0, 0.3); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .feature-card {
            background: rgba(45, 45, 45, 0.7);
            backdrop-filter: blur(10px);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            border: 1px solid rgba(220, 38, 38, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
            text-align: center;
        }
        .feature-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
        @media (prefers-reduced-motion: reduce) { .feature-card { opacity: 1; transform: none; } }
        .feature-card:hover { transform: translateY(-10px); border-color: var(--primary-red); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15); }
        .feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--white); font-weight: 600; }
        .feature-card p { color: var(--light-gray); line-height: 1.7; }

        /* ===== SECTIONS ===== */
        .view-section { display: none; }
        .view-section.active { display: block; }
        .section-title { text-align: center; font-size: 2rem; font-weight: 800; margin-bottom: 0.8rem; background: linear-gradient(45deg, var(--white), var(--very-light-red)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .section-subtitle { text-align: center; color: var(--light-gray); margin-bottom: 2.5rem; }
        .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
        .about-card { background: rgba(45,45,45,0.7); backdrop-filter: blur(10px); padding: 2rem; border-radius: 15px; border: 1px solid rgba(220,38,38,0.15); text-align: center; }
        .about-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
        .about-card h3 { margin-bottom: 0.8rem; }
        .about-card p { color: var(--light-gray); line-height: 1.6; font-size: 0.95rem; }
        .faq-item { background: rgba(45,45,45,0.7); backdrop-filter: blur(10px); border: 1px solid rgba(220,38,38,0.2); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; max-width: 800px; margin-left: auto; margin-right: auto; }
        .faq-question { padding: 1.2rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; transition: background 0.3s ease; gap: 1rem; }
        .faq-question:hover { background: rgba(220,38,38,0.1); }
        .faq-question span { display: flex; align-items: center; gap: 0.6rem; }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--light-gray); line-height: 1.7; padding: 0 1.5rem; }
        .faq-answer-inner { padding: 0.5rem 0 1.2rem; }
        .faq-item.open .faq-answer { max-height: 200px; }
        .faq-icon { transition: transform 0.3s ease; color: var(--primary-red); flex-shrink: 0; }
        .faq-item.open .faq-icon { transform: rotate(180deg); }
        .contact-card { max-width: 600px; margin: 0 auto; background: rgba(45,45,45,0.7); backdrop-filter: blur(10px); border: 1px solid rgba(220,38,38,0.3); border-radius: 20px; padding: 3rem 2rem; text-align: center; }
        .contact-card .discord-icon { font-size: 3rem; color: #5865F2; margin-bottom: 1rem; display: block; }
        .contact-card h2 { color: var(--light-red); margin-bottom: 1rem; }
        .contact-card p { color: var(--light-gray); margin-bottom: 2rem; line-height: 1.6; }
        .discord-btn { background: #5865F2; color: white; padding: 0.9rem 2rem; border-radius: 10px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 0.8rem; transition: all 0.3s ease; }
        .discord-btn:hover { background: #4752c4; transform: translateY(-2px); }

        /* ===== FOOTER - مطابق 100% للداشبورد ===== */
        footer {
            background: transparent;
            padding: 1.5rem 2rem;
            text-align: center;
            border-top: 1px solid var(--dark-red);
            margin-top: 3rem;
            display: block !important;
        }
        .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
        .footer-links a { color: var(--light-gray); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
        .footer-links a:hover { color: var(--light-red); }
        footer p { color: var(--light-gray); font-size: 0.9rem; }

        /* ===== TOAST ===== */
        .toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 99999; display: flex; flex-direction: column; gap: 0.8rem; }
        .toast { background: rgba(26,26,26,0.97); backdrop-filter: blur(10px); border-right: 4px solid var(--primary-red); border-radius: 10px; padding: 1rem 1.5rem; color: var(--white); font-size: 0.95rem; display: flex; align-items: center; gap: 1rem; box-shadow: 0 5px 20px rgba(0,0,0,0.4); animation: toastIn 0.3s ease; max-width: 320px; }
        .toast.success { border-right-color: #10b981; }
        .toast.success i { color: #10b981; }
        @keyframes toastIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .vortex-title { font-size: 3.5rem; }
            .hero p { font-size: 1.1rem; }
            .features-grid { grid-template-columns: 1fr; gap: 2rem; }
            .feature-card { padding: 2rem 1.5rem; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .vortex-title { font-size: 2.8rem; }
            .hero p { font-size: 1rem; }
            .cta-button { padding: 1rem 2rem; font-size: 1.1rem; }
        }