* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #fbbf24;
            --dark-gold: #d97706;
            --purple: #6b46c1;
            --dark-purple: #4c1d95;
            --bg-dark: #0a0415;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg-dark) url(/assets/img/background.png) no-repeat fixed center top;
            background-size: 100% auto;
            color: #e5e7eb;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 4, 21, 0.7);
            pointer-events: none;
            z-index: 0;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 14px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
            border-left: 2px solid rgba(251, 191, 36, 0.2);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--gold), var(--dark-gold));
            border-radius: 10px;
            border: 3px solid var(--bg-dark);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #fde047, var(--gold));
            box-shadow: 0 0 10px var(--gold);
        }

        * {
            scrollbar-width: thin;
            scrollbar-color: var(--gold) var(--bg-dark);
        }

        /* Navigation */
        nav {
            position: relative;
            width: 100%;
            background: linear-gradient(135deg, rgb(76 29 149 / 31%) 0%, rgb(107 70 193 / 32%) 50%, rgb(76 29 149 / 31%) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--gold);
            box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

        .nav-links a.active::after {
    width: 100% !important;
}

        .nav-links a:hover {
    color: #fde047;
    text-shadow: 0 0 10px var(--gold);
}

        .nav-links a:hover::after {
    width: 100%;
}

        .nav-auth {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .nav-auth a {
            color: #e5e7eb;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .nav-auth a:hover {
            color: var(--gold);
        }

        .user-welcome {
            color: var(--gold);
            font-weight: 700;
            letter-spacing: 1px;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            padding: 10px 25px;
            border-radius: 50px;
            color: var(--dark-purple) !important;
            font-weight: 800;
            transition: all 0.3s;
        }

        .nav-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(251, 191, 36, 0.5);
        }

        /* Hero Section */
        .hero {
            position: relative;
            text-align: center;
            padding: 30px 0px 0px;
            z-index: 1;
        }

        .hero-logo img {
            /*max-width: 750px;*/
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 40px rgba(251, 191, 36, 0.5));
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--dark-purple);
            padding: 20px 60px;
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(251, 191, 36, 0.6);
            transition: all 0.3s;
            letter-spacing: 2px;
        }

        .hero-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(251, 191, 36, 0.8);
        }

        /* Main Content */
        .main-content {
            position: relative;
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
            z-index: 1;
        }

        /* Sidebar */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .widget {
            background: rgba(26, 19, 48, 0.9);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .widget-header {
            background: linear-gradient(135deg, var(--purple), var(--dark-purple));
            padding: 15px;
            border-bottom: 2px solid var(--gold);
        }

        .widget-header h3 {
            color: var(--gold);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .widget-content {
            padding: 20px;
        }

        .online-count {
            text-align: center;
            padding: 20px;
        }

        .online-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--gold);
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
            margin-bottom: 5px;
        }

        .online-label {
            color: rgba(229, 231, 235, 0.8);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .staff-list, .voter-list {
            list-style: none;
        }

        .staff-item, .voter-item {
            padding: 10px 0;
            border-bottom: 1px solid rgba(107, 70, 193, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .staff-item:last-child, .voter-item:last-child {
            border-bottom: none;
        }

        .staff-rank {
            width: 25px;
            height: 25px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--dark-purple);
            font-weight: 700;
        }

        .voter-rank {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .quick-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .quick-link {
            display: block;
            background: linear-gradient(135deg, rgba(107, 70, 193, 0.4), rgba(76, 29, 149, 0.4));
            border: 1px solid rgba(107, 70, 193, 0.6);
            padding: 12px 15px;
            border-radius: 10px;
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s;
        }

        .quick-link:hover {
            background: linear-gradient(135deg, rgba(107, 70, 193, 0.6), rgba(76, 29, 149, 0.6));
            border-color: var(--gold);
            transform: translateX(5px);
        }

        /* Main Content Area */
        .content-area {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .welcome-section {
            background: rgba(26, 19, 48, 0.9);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .welcome-section h2 {
            color: var(--gold);
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .welcome-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(229, 231, 235, 0.85);
            margin-bottom: 15px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .feature-box {
            background: rgba(26, 19, 48, 0.9);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .feature-box:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .feature-box h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .feature-box p {
            color: rgba(229, 231, 235, 0.8);
            line-height: 1.6;
        }

        /* Media Section */
        .media-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .media-box {
            background: rgba(26, 19, 48, 0.9);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .media-header {
            background: linear-gradient(135deg, var(--purple), var(--dark-purple));
            padding: 15px 20px;
            border-bottom: 2px solid var(--gold);
        }

        .media-header h3 {
            color: var(--gold);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .discord-wrapper {
            height: 450px;
            padding: 20px;
        }

        .discord-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 10px;
        }

        .auth-container {
            position: relative;
            max-width: 660px;
            margin: 60px auto;
            padding: 0 30px;
            z-index: 1;
        }

        .auth-box {
            background: rgba(26, 19, 48, 0.95);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .auth-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .auth-header h1 {
            color: var(--gold);
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
        }

        .auth-header p {
            color: rgba(229, 231, 235, 0.7);
            font-size: 1rem;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .form-group input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(10, 4, 21, 0.8);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 10px;
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
        }

        .form-group input::placeholder {
            color: rgba(229, 231, 235, 0.4);
        }

        .password-wrapper {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(229, 231, 235, 0.5);
            cursor: pointer;
            font-size: 1.2rem;
            transition: color 0.3s;
        }

        .password-toggle:hover {
            color: var(--gold);
        }

        .password-strength {
            margin-top: 10px;
            height: 4px;
            background: rgba(107, 70, 193, 0.3);
            border-radius: 2px;
            overflow: hidden;
        }

        .password-strength-bar {
            height: 100%;
            width: 0%;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .password-strength-text {
            font-size: 0.85rem;
            margin-top: 5px;
            color: rgba(229, 231, 235, 0.6);
        }

        .terms-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 30px;
        }

        .terms-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .terms-checkbox label {
            color: rgba(229, 231, 235, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
            text-transform: none;
            letter-spacing: normal;
            font-weight: normal;
        }

        .terms-checkbox a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .terms-checkbox a:hover {
            color: #fde047;
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(229, 231, 235, 0.8);
            font-size: 0.9rem;
        }

        .remember-me input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .forgot-link {
            color: var(--gold);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .forgot-link:hover {
            color: #fde047;
            text-shadow: 0 0 10px var(--gold);
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            border: none;
            border-radius: 50px;
            color: var(--dark-purple);
            font-size: 1.1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
        }

        .auth-divider {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }

        .auth-divider::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 100%;
            height: 1px;
            background: rgba(107, 70, 193, 0.5);
        }

        .auth-divider span {
            position: relative;
            background: rgba(26, 19, 48, 0.95);
            padding: 0 20px;
            color: rgba(229, 231, 235, 0.6);
            font-size: 0.9rem;
        }

        .auth-switch {
            text-align: center;
            color: rgba(229, 231, 235, 0.8);
            font-size: 1rem;
        }

        .auth-switch a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
        }

        .auth-switch a:hover {
            color: #fde047;
            text-shadow: 0 0 10px var(--gold);
        }

        .error-message {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid #ef4444;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 25px;
            color: #fca5a5;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .success-message {
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid #10b981;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 25px;
            color: #6ee7b7;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-box {
            background: rgba(107, 70, 193, 0.2);
            border: 1px solid rgba(107, 70, 193, 0.5);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 25px;
            color: rgba(229, 231, 235, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .info-box i {
            color: var(--gold);
            margin-right: 8px;
        }

        .download-section {
            background: rgba(26, 19, 48, 0.9);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .download-section h2 {
            color: var(--gold);
            font-size: 2rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 15px;
            justify-content: center;
        }

        .download-section h2 i {
            font-size: 2.5rem;
        }

        .download-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .download-btn {
            background: linear-gradient(135deg, rgba(107, 70, 193, 0.4), rgba(76, 29, 149, 0.4));
            border: 2px solid rgba(107, 70, 193, 0.6);
            border-radius: 15px;
            padding: 30px 20px;
            text-decoration: none;
            color: #fff;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .download-btn:hover {
            background: linear-gradient(135deg, rgba(107, 70, 193, 0.6), rgba(76, 29, 149, 0.6));
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
        }

        .download-btn i {
            font-size: 3rem;
            color: var(--gold);
        }

        .download-btn span {
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .download-btn small {
            font-size: 0.85rem;
            color: rgba(229, 231, 235, 0.7);
        }

        .requirements-section {
            background: rgba(26, 19, 48, 0.9);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .requirements-section h2 {
            color: var(--gold);
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .requirements-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .requirement-box {
            background: rgba(107, 70, 193, 0.2);
            border: 1px solid rgba(107, 70, 193, 0.4);
            border-radius: 10px;
            padding: 25px;
        }

        .requirement-box h3 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .requirement-box ul {
            list-style: none;
            padding: 0;
        }

        .requirement-box li {
            padding: 8px 0;
            color: rgba(229, 231, 235, 0.85);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .requirement-box li i {
            color: #10b981;
            font-size: 0.9rem;
        }

        .steps-section {
            background: rgba(26, 19, 48, 0.9);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            margin-top: 30px;
        }

        .steps-section h2 {
            color: var(--gold);
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .steps-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .step-item {
            background: rgba(107, 70, 193, 0.2);
            border: 1px solid rgba(107, 70, 193, 0.4);
            border-radius: 10px;
            padding: 25px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--dark-purple);
            flex-shrink: 0;
        }

        .step-content h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .step-content p {
            color: rgba(229, 231, 235, 0.85);
            line-height: 1.6;
        }

        .help-section {
            background: linear-gradient(135deg, rgba(107, 70, 193, 0.3), rgba(76, 29, 149, 0.3));
            border: 2px solid var(--gold);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-top: 30px;
        }

        .help-section h3 {
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .help-section p {
            color: rgba(229, 231, 235, 0.85);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .help-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .help-btn {
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--dark-purple);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .help-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, rgb(76 29 149 / 31%) 0%, rgb(107 70 193 / 32%) 50%, rgb(76 29 149 / 31%) 100%);
            backdrop-filter: blur(10px);
            border-top: 2px solid var(--gold);
            padding: 40px 30px;
            text-align: center;
            position: relative;
            z-index: 1;
            margin-top: 60px;
        }

        footer p {
            color: rgba(229, 231, 235, 0.7);
            line-height: 1.8;
        }

        .dashboard-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .dashboard-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .dashboard-title {
            color: var(--gold);
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 800;
            margin-bottom: 10px;
        }
        .dashboard-subtitle {
            color: var(--text-light);
            font-size: 1.2rem;
        }
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        .stat-card {
            background: linear-gradient(135deg, rgba(107, 70, 193, 0.3) 0%, rgba(76, 29, 149, 0.3) 100%);
            border: 2px solid var(--primary-purple);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        .stat-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
        }
        .stat-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 15px;
        }
        .stat-value {
            font-size: 2rem;
            color: var(--text-gold);
            font-weight: 800;
            margin-bottom: 8px;
        }
        .stat-label {
            color: var(--text-light);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .info-card {
            background: linear-gradient(135deg, rgba(107, 70, 193, 0.2) 0%, rgba(76, 29, 149, 0.2) 100%);
            border: 2px solid var(--primary-purple);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
        }
        .info-card-title {
            color: var(--gold);
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-weight: 700;
            border-bottom: 2px solid var(--primary-purple);
            padding-bottom: 10px;
        }
        .info-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(107, 70, 193, 0.3);
        }
        .info-row:last-child {
            border-bottom: none;
        }
        .info-label {
            color: var(--text-gold);
            font-weight: 600;
        }
        .info-value {
            color: var(--text-light);
        }
        .action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .action-btn {
            flex: 1;
            min-width: 150px;
            padding: 12px 25px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
            color: var(--text-gold);
            border: 2px solid var(--gold);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .action-btn:hover {
            background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-purple);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
        }
        .action-btn-danger {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.6) 0%, rgba(153, 27, 27, 0.6) 100%);
            border-color: #dc2626;
        }
        .action-btn-danger:hover {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: #fff;
        }
        .session-list {
            list-style: none;
            padding: 0;
        }
        .session-item {
            background: rgba(26, 19, 48, 0.4);
            border: 1px solid var(--primary-purple);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 10px;
        }
        .session-item.current {
            border-color: var(--gold);
            background: rgba(251, 191, 36, 0.1);
        }
        .session-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .session-details {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .session-badge {
            background: var(--gold);
            color: var(--dark-purple);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* Legal Pages (Terms, Privacy) */
        .legal-container {
            position: relative;
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 30px;
            z-index: 1;
        }

        .legal-box {
            background: rgba(26, 19, 48, 0.95);
            border: 2px solid rgba(107, 70, 193, 0.5);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .legal-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px solid var(--gold);
        }

        .legal-header h1 {
            color: var(--gold);
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
        }

        .legal-header p {
            color: rgba(229, 231, 235, 0.7);
            font-size: 1rem;
        }

        .legal-section {
            margin-bottom: 40px;
        }

        .legal-section h2 {
            color: var(--gold);
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .legal-section h3 {
            color: #fde047;
            font-size: 1.3rem;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .legal-section p {
            color: rgba(229, 231, 235, 0.85);
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .legal-section ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }

        .legal-section ul li {
            color: rgba(229, 231, 235, 0.85);
            line-height: 1.8;
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
        }

        .legal-section ul li::before {
            content: '⚔';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 1.2rem;
        }

        .highlight-box {
            background: rgba(251, 191, 36, 0.1);
            border: 2px solid var(--gold);
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
        }

        .highlight-box p {
            margin-bottom: 0;
            font-weight: 600;
        }

        .last-updated {
            text-align: center;
            color: rgba(229, 231, 235, 0.6);
            font-size: 0.9rem;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(107, 70, 193, 0.5);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }

            .sidebar {
                grid-template-columns: repeat(2, 1fr);
                display: grid;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .media-section {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .auth-box {
                padding: 30px;
            }

            .auth-header h1 {
                font-size: 2rem;
            }

            .remember-forgot {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }

            .download-buttons {
                grid-template-columns: 1fr;
            }

            .requirements-grid {
                grid-template-columns: 1fr;
            }

            .download-section, .requirements-section, .steps-section {
                padding: 25px;
            }

            .nav-container {
                flex-direction: column;
                gap: 15px;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .hero-logo img {
                max-width: 400px;
            }

            .hero-cta {
                font-size: 1.2rem;
                padding: 15px 40px;
            }

            .sidebar {
                grid-template-columns: 1fr;
            }

            .welcome-section h2 {
                font-size: 1.8rem;
            }

            .legal-box {
                padding: 30px 25px;
            }

            .legal-header h1 {
                font-size: 2rem;
            }

            .legal-section h2 {
                font-size: 1.5rem;
            }
        }