:root {
            --primary: #9c27b0;
            --primary-dark: #7b1fa2;
            --primary-light: #e1bee7;
            --secondary: #4527a0;
            --dark: #121212;
            --darker: #0a0a1a;
            --light: #f3e5f5;
            --error: #ff5555;
            --success: #55ff55;
            --warning: #ffcc00;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --card-bg: rgba(30, 30, 40, 0.8);
            --card-border: rgba(156, 39, 176, 0.3);
            --card-shadow: 0 0 30px rgba(156, 39, 176, 0.2);
            --text-color: #f3e5f5;
            --bg-gradient: linear-gradient(135deg, var(--darker), var(--dark), var(--secondary));
            --header-bg: rgba(18, 18, 28, 0.9);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background: var(--bg-gradient);
            color: var(--text-color);
            font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            padding: 20px;
            overflow-x: hidden;
            line-height: 1.6;
            background-attachment: fixed;
            position: relative;
            transition: background 0.5s ease, color 0.5s ease;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 10% 20%, rgba(156, 39, 176, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(156, 39, 176, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, rgba(156, 39, 176, 0.03) 0%, transparent 30%);
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Hacker mask */
        .hacker-mask {
            width: 100%;
            max-width: 800px;
            height: 40px;
            background: rgba(10, 0, 16, 0.7);
            border: 2px solid var(--primary);
            border-radius: 8px;
            box-shadow: 0 0 15px var(--primary) inset;
            color: var(--primary);
            font-size: 12px;
            padding: 8px 16px;
            overflow: hidden;
            position: relative;
            margin: 0 auto 30px;
            text-align: left;
            font-family: 'Courier New', Courier, monospace;
            user-select: none;
            animation: pulse-border 3s infinite;
        }

        @keyframes pulse-border {
            0% { box-shadow: 0 0 15px var(--primary) inset; }
            50% { box-shadow: 0 0 25px var(--primary) inset; }
            100% { box-shadow: 0 0 15px var(--primary) inset; }
        }

        .hacker-text {
            position: absolute;
            top: 8px;
            left: 16px;
            animation: typing 3s steps(40) forwards;
            white-space: nowrap;
            overflow: hidden;
            border-right: 2px solid var(--primary);
            padding-right: 5px;
            box-sizing: content-box;
            font-size: 12px;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        /* Header */
        header {
            margin: 20px 0 40px;
            padding: 20px;
            animation: fadeIn 1.5s ease;
            text-align: center;
        }

        h1 {
            color: var(--primary);
            font-size: 4rem;
            text-shadow: 0 0 25px rgba(156, 39, 176, 0.7);
            padding-bottom: 15px;
            animation: glow 2s infinite alternate;
            width: fit-content;
            margin: 0 auto;
            position: relative;
            font-weight: 800;
            letter-spacing: 1px;
        }
       .welcome-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Main buttons */
.main-button {
    background: rgba(112, 12, 110, 0.1);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 12px rgba(73, 9, 93, 0.5);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 250px;
    justify-content: center;
}

.main-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(73, 9, 93, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.main-button:hover {
    background: var(--primary);
    color: var(--darker);
    box-shadow: 0 0 30px var(--primary);
    transform: translateY(-5px);
}

.main-button:hover::before {
    left: 100%;
}

/* Scripts section */
.scripts-section {
    margin: 50px 0;
    padding: 30px;
    animation: fadeIn 1.8s ease;
}

        h1::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            filter: blur(8px);
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px var(--primary), 0 0 5px rgba(156, 39, 176, 0.7); }
            to { text-shadow: 0 0 30px var(--primary), 0 0 15px rgba(156, 39, 176, 0.7), 0 0 40px rgba(156, 39, 176, 0.5); }
        }

        .tagline {
            color: #e1bee7;
            font-size: 1.2rem;
            margin-top: 10px;
            text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
        }

        /* Navigation Buttons */
        .nav-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .nav-btn {
            background: rgba(156, 39, 176, 0.15);
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 15px 30px;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 200px;
            justify-content: center;
        }

        .nav-btn:hover {
            background: var(--primary);
            color: var(--darker);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px var(--primary);
        }

        /* Welcome section */
        .welcome-section {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            margin: 30px auto;
            max-width: 900px;
            border: 1px solid var(--card-border);
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(10px);
            animation: slideUp 1s ease;
            position: relative;
            overflow: hidden;
        }

        .welcome-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), transparent);
            animation: scanline 8s linear infinite;
        }

        @keyframes scanline {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .welcome-section h2 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 0 0 15px var(--primary);
            text-align: center;
        }

        .welcome-section p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 30px;
            text-align: center;
            color: #e1bee7;
        }

        /* Stats Section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .stat-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(156, 39, 176, 0.15);
        }

        .stat-value {
            font-size: 3rem;
            color: var(--primary);
            font-weight: 700;
            margin: 15px 0;
            text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
        }

        .stat-label {
            font-size: 1.2rem;
            color: #e1bee7;
        }

        /* Scripts section */
        .scripts-section {
            margin: 50px 0;
            padding: 30px;
            animation: fadeIn 1.8s ease;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .section-title {
            color: var(--primary);
            font-size: 2.8rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 3px;
        }

        .search-box {
            background: rgba(20, 15, 30, 0.5);
            border: 1px solid var(--primary);
            border-radius: 50px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 400px;
            transition: var(--transition);
        }

        .search-box:focus-within {
            box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
            border-color: var(--primary);
        }

        .search-box input {
            background: transparent;
            border: none;
            color: var(--light);
            font-size: 1.1rem;
            width: 100%;
            padding: 5px 10px;
            outline: none;
        }

        .search-box i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-left: 10px;
        }

        .category-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
            flex-wrap: wrap;
        }

        .category-btn {
            background: rgba(156, 39, 176, 0.1);
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
        }

        .category-btn:hover, .category-btn.active {
            background: var(--primary);
            color: var(--darker);
            box-shadow: 0 0 15px var(--primary);
        }

        .buttons-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 30px;
            margin: 0 auto;
        }

        .script-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 15px;
            padding: 25px 20px;
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(6px);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .script-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(156, 39, 176, 0.2);
            border-color: var(--primary);
        }

        .script-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), transparent);
            opacity: 0.5;
        }

        .script-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            text-align: center;
        }

        .script-name {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
        }

        .script-meta {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 10px 0;
            color: #e1bee7;
            font-size: 0.9rem;
        }

        .script-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .script-description {
            color: #e1bee7;
            font-size: 1rem;
            text-align: center;
            margin: 10px 0 15px;
            flex-grow: 1;
        }

        .link-status {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 10px;
        }

        .link-status.available {
            background: rgba(85, 255, 85, 0.15);
            color: var(--success);
        }

        .link-status.unavailable {
            background: rgba(255, 85, 85, 0.15);
            color: var(--error);
        }

        /* About section */
        .about-section {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            margin: 50px auto;
            max-width: 1200px;
            border: 1px solid var(--card-border);
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(10px);
            animation: slideUp 1.2s ease;
        }

        .about-section h2 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .about-section p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: center;
            color: #e1bee7;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            background: rgba(20, 15, 30, 0.5);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(156, 39, 176, 0.2);
            transition: var(--transition);
            position: relative;
            text-align: center;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(156, 39, 176, 0.2);
        }

        .team-member.boss {
            border: 2px solid gold;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            background: rgba(30, 20, 30, 0.5);
        }

        .team-member.boss::before {
            content: 'BOSS';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: gold;
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
            z-index: 10;
        }

        .member-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(156, 39, 176, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 2px solid var(--primary);
            font-size: 2.5rem;
            color: var(--primary);
        }

        .team-member h3 {
            color: var(--primary);
            margin: 15px 0 5px;
            font-size: 1.8rem;
        }

        .member-role {
            color: #bbb;
            font-style: italic;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(156, 39, 176, 0.1);
            color: var(--primary);
            font-size: 1.2rem;
            transition: var(--transition);
            border: 1px solid var(--primary);
            text-decoration: none;
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--darker);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px var(--primary);
        }

        /* Feedback section */
        .feedback-section {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            margin: 50px auto;
            max-width: 900px;
            border: 1px solid var(--card-border);
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(10px);
            animation: slideUp 1.2s ease;
        }

        .feedback-section h2 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .feedback-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 3px;
        }

        .feedback-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            color: var(--primary);
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            background: rgba(20, 15, 30, 0.5);
            border: 1px solid var(--card-border);
            border-radius: 10px;
            padding: 15px;
            color: var(--text-color);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
        }

        .submit-btn {
            background: rgba(156, 39, 176, 0.2);
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 15px;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }

        .submit-btn:hover {
            background: var(--primary);
            color: var(--darker);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px var(--primary);
        }

        /* Admin Panel */
        .admin-panel {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 350px;
            height: 450px;
            background: var(--darker);
            border: 2px solid var(--primary);
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
            z-index: 1000;
            display: none;
            overflow: hidden;
            flex-direction: column;
        }

        .admin-panel.active {
            display: flex;
        }

        .admin-header {
            background: rgba(20, 15, 30, 0.8);
            padding: 15px;
            border-bottom: 1px solid var(--card-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .admin-header h3 {
            color: var(--primary);
            font-size: 1.5rem;
        }

        .close-admin {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-admin:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .admin-body {
            padding: 15px;
            overflow-y: auto;
            flex-grow: 1;
        }

        .feedback-item {
            background: rgba(20, 15, 30, 0.5);
            border: 1px solid var(--card-border);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
        }

        .feedback-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .feedback-name {
            color: var(--primary);
            font-weight: 600;
        }

        .feedback-date {
            color: #b39ddb;
            font-size: 0.9rem;
        }

        .feedback-message {
            color: #e1bee7;
            line-height: 1.6;
        }

        /* Admin Button */
        .admin-button {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: rgba(156, 39, 176, 0.3);
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
        }

        .admin-button:hover {
            background: var(--primary);
            color: var(--darker);
            transform: scale(1.1);
        }

        .admin-button.active {
            display: flex;
        }

        /* Footer */
        footer {
            margin-top: 60px;
            padding: 40px 30px 20px;
            border-top: 1px solid rgba(156, 39, 176, 0.2);
            animation: fadeIn 2s ease;
            text-align: center;
            background: rgba(10, 8, 18, 0.7);
            border-radius: 20px 20px 0 0;
        }

        .footer-logo {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 0 0 15px var(--primary);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(156, 39, 176, 0.1);
            color: var(--primary);
            font-size: 1.5rem;
            transition: var(--transition);
            border: 1px solid var(--primary);
        }

        .footer-social a:hover {
            background: var(--primary);
            color: var(--darker);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px var(--primary);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #e1bee7;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .footer-links a:hover {
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary);
        }

        .copyright {
            margin-top: 30px;
            color: #b39ddb;
            font-size: 1rem;
            border-top: 1px solid rgba(156, 39, 176, 0.1);
            padding-top: 20px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Preview Modal */
        .preview-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .preview-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--darker);
            border-radius: 15px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow: hidden;
            border: 2px solid var(--primary);
            box-shadow: 0 0 40px rgba(156, 39, 176, 0.5);
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .preview-modal.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            background: rgba(20, 15, 30, 0.7);
            padding: 15px 20px;
            border-bottom: 1px solid rgba(156, 39, 176, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: bold;
        }

        .close-modal {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-modal:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 20px;
            overflow-y: auto;
            max-height: calc(90vh - 130px);
        }

        .preview-content {
            font-family: 'Courier New', monospace;
            font-size: 15px;
            line-height: 1.6;
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 8px;
            max-height: 60vh;
            overflow: auto;
            color: var(--light);
            tab-size: 4;
            position: relative;
        }

        .preview-content::-webkit-scrollbar {
            width: 10px;
        }

        .preview-content::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
        }

        .preview-content::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        .modal-footer {
            padding: 15px 20px;
            background: rgba(20, 15, 30, 0.5);
            border-top: 1px solid rgba(156, 39, 176, 0.2);
            display: flex;
            justify-content: space-between;
            gap: 15px;
            flex-wrap: wrap;
        }

        .modal-btn {
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-download {
            background: var(--primary);
            color: var(--darker);
            border-color: var(--primary);
            font-weight: 700;
            flex: 1;
            justify-content: center;
        }

        .btn-download:hover {
            background: rgba(156, 39, 176, 0.9);
            box-shadow: 0 0 20px var(--primary);
        }

        /* Download Message */
        .download-message {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(20, 15, 30, 0.9);
            border: 2px solid var(--primary);
            border-radius: 10px;
            padding: 15px 25px;
            color: var(--primary);
            font-size: 1.1rem;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transform: translateY(150%);
            transition: transform 0.5s ease;
        }

        .download-message.show {
            transform: translateY(0);
        }

        .download-message.success {
            border-color: var(--success);
            color: var(--success);
        }

        .download-message.error {
            border-color: var(--error);
            color: var(--error);
        }

        /* Theme switcher */
        .theme-switcher {
            position: fixed;
            top: 20px;
            left: 20px;
            display: flex;
            gap: 10px;
            z-index: 1000;
        }

        .theme-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .theme-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .theme-btn.active {
            transform: scale(1.1);
            box-shadow: 0 0 15px currentColor;
        }

        .theme-btn.purple {
            background: var(--primary);
            color: var(--darker);
        }

        .theme-btn.dark {
            background: #333;
        }

        .theme-btn.light {
            background: #f5f5f5;
            color: #333;
        }

        /* Scripts modal */
        .scripts-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .scripts-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .scripts-content {
            background: var(--darker);
            border-radius: 15px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow: hidden;
            border: 2px solid var(--primary);
            box-shadow: 0 0 40px rgba(156, 39, 176, 0.5);
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .scripts-modal.active .scripts-content {
            transform: scale(1);
        }

        .scripts-header {
            background: rgba(20, 15, 30, 0.7);
            padding: 15px 20px;
            border-bottom: 1px solid rgba(156, 39, 176, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .scripts-title {
            color: var(--primary);
            font-size: 1.8rem;
            font-weight: bold;
        }

        .close-scripts {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-scripts:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .scripts-body {
            padding: 20px;
            overflow-y: auto;
            max-height: calc(90vh - 130px);
        }

        .script-box {
            background: rgba(20, 15, 30, 0.5);
            border: 1px solid var(--primary);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            position: relative;
        }

        .script-box-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .script-box-title {
            color: var(--primary);
            font-size: 1.4rem;
            font-weight: 600;
        }

        .copy-btn {
            background: rgba(156, 39, 176, 0.2);
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 6px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
        }

        .copy-btn:hover {
            background: var(--primary);
            color: var(--darker);
        }

        .script-textarea {
            width: 100%;
            height: 150px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(156, 39, 176, 0.1);
            border-radius: 8px;
            padding: 10px;
            color: var(--light);
            font-family: 'Courier New', monospace;
            font-size: 14px;
            resize: none;
        }

        .script-textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        /* Copy message */
        .copy-message {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(20, 15, 30, 0.9);
            border: 2px solid var(--success);
            border-radius: 10px;
            padding: 10px 20px;
            color: var(--success);
            font-size: 1rem;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .copy-message.show {
            opacity: 1;
        }

        /* Light theme */
        body.light-theme {
            --primary: #7b1fa2;
            --primary-dark: #6a1b9a;
            --secondary: #4527a0;
            --dark: #f0f8ff;
            --darker: #e0f0f7;
            --light: #0a1929;
            --card-bg: rgba(240, 248, 255, 0.9);
            --card-border: rgba(123, 31, 162, 0.3);
            --card-shadow: 0 0 20px rgba(123, 31, 162, 0.1);
            --text-color: #0a1929;
            --bg-gradient: linear-gradient(135deg, #e0f0f7, #f0f8ff, #d4e8f0);
            --header-bg: rgba(224, 240, 247, 0.9);
        }

        body.dark-theme {
            --primary: #ab47bc;
            --primary-dark: #8e24aa;
            --secondary: #5e35b1;
            --dark: #121212;
            --darker: #000000;
            --light: #e0e0e0;
            --card-bg: rgba(30, 30, 30, 0.8);
            --card-border: rgba(171, 71, 188, 0.3);
            --card-shadow: 0 0 20px rgba(171, 71, 188, 0.2);
            --text-color: #e0e0e0;
            --bg-gradient: linear-gradient(135deg, #000, #121212, #1a1a1a);
            --header-bg: rgba(18, 18, 18, 0.9);
        }

        /* Responsive */
        @media (max-width: 992px) {
            h1 { font-size: 3rem; }
            .section-title { font-size: 2.3rem; }
            .welcome-section, .about-section, .feedback-section { padding: 30px; }
            .buttons-container { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
            .admin-panel {
                width: 300px;
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .welcome-section h2, .about-section h2, .feedback-section h2 { font-size: 2.2rem; }
            .welcome-section p, .about-section p { font-size: 1.1rem; }
            .nav-btn { padding: 12px 20px; font-size: 1.1rem; min-width: 180px; }
            .script-card { padding: 20px 15px; }
            .script-name { font-size: 1.6rem; }
            .team-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
            .modal-btn { padding: 10px 15px; font-size: 1rem; }
            .admin-panel {
                width: 280px;
                height: 380px;
                right: 10px;
                bottom: 10px;
            }
        }

        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            .section-header { flex-direction: column; }
            .section-title { font-size: 1.8rem; }
            .buttons-container { grid-template-columns: 1fr; }
            .script-card { max-width: 350px; margin: 0 auto; }
            .modal-footer { flex-direction: column; }
            .modal-btn { width: 100%; }
            .footer-links { flex-direction: column; gap: 10px; }
            .nav-buttons { flex-direction: column; gap: 15px; }
            .nav-btn { width: 100%; }
            .admin-panel {
                width: 100%;
                max-width: 95%;
                height: 70vh;
                left: 50%;
                transform: translateX(-50%);
                right: auto;
                bottom: 10px;
            }
        }
