* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #8b5cf6;
    --bg-dark: #000000;
    --bg-darker: #000000;
    --bg-panel: rgba(0, 0, 0, 0.95);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: rgba(255, 255, 255, 0.2);
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --minimalist-bg: #000000;
    --minimalist-text: #ffffff;
    --minimalist-input-bg: transparent;
    --minimalist-underline: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 40%;
    right: 10%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.login-panel {
    flex: 1;
    max-width: 500px;
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    margin: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--primary-color);
}

.language-selector select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.language-selector select:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.login-content {
    margin-top: 20px;
}

.welcome-text {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 15px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.google-btn svg {
    margin-right: 4px;
}

.apple-btn {
    background: rgba(0, 0, 0, 0.3);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider span {
    padding: 0 16px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.input-group input::placeholder {
    color: var(--text-secondary);
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--text-primary);
}

.forgot-password {
    text-align: right;
    margin-bottom: 24px;
}

.forgot-password a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: var(--primary-light);
}

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.login-btn:active {
    transform: translateY(0);
}

.signup-link {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.signup-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: var(--primary-light);
}

.promo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    max-width: 600px;
    margin: auto;
}

.promo-content {
    text-align: center;
    margin-bottom: 40px;
}

.promo-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-title span {
    color: var(--text-secondary);
}

.promo-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.promo-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    margin-top: 40px;
}

.graphic-3d {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cube {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(139, 92, 246, 0.2));
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
    transform: rotateX(20deg) rotateY(20deg);
    animation: rotate3d 10s infinite linear;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.cube::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--primary-light);
    border-radius: 8px;
    transform: translateZ(20px);
}

.orbit-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: orbit 15s infinite linear;
}

.orbit-ring::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes rotate3d {
    0% {
        transform: rotateX(20deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(20deg) rotateY(360deg);
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Shop Page Styles */
.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.shop-header {
    text-align: center;
    margin-bottom: 50px;
}

.shop-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.buy-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* Admin Dashboard Styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.admin-header h1 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.nav-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-btn.regedit-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(139, 92, 246, 0.2));
    border-color: rgba(124, 58, 237, 0.5);
}

.nav-btn.regedit-link:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(139, 92, 246, 0.4));
    border-color: rgba(124, 58, 237, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.admin-section {
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.admin-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.admin-modal-content {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
}
.admin-modal-content h3 { margin-top: 0; margin-bottom: 1rem; color: var(--text-primary); }
.admin-modal-actions { display: flex; gap: 12px; margin-top: 1.25rem; }
.admin-modal-actions .btn-cancel { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-color); }

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

td {
    color: var(--text-primary);
    font-size: 14px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.status-banned {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error-color);
}

.status-admin {
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-color);
}

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.btn-ban {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error-color);
}

.btn-ban:hover {
    background: var(--error-color);
    color: white;
}

.btn-unban {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.btn-unban:hover {
    background: var(--success-color);
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.logout-btn {
    padding: 10px 20px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid var(--error-color);
    border-radius: 8px;
    color: var(--error-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: var(--error-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        flex-direction: column;
    }

    .promo-section {
        display: none;
    }

    .login-panel {
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 640px) {
    .login-panel {
        padding: 24px;
    }

    .welcome-text {
        font-size: 28px;
    }

    .promo-title {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.notification.success {
    border-left: 4px solid var(--success-color);
}

.notification.error {
    border-left: 4px solid var(--error-color);
}

.notification.warning {
    border-left: 4px solid var(--warning-color);
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Arch Linux Login Theme */
.arch-login-body {
    background: #0a0a0e;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.arch-login-body .minimalist-body::before {
    opacity: 0.4;
}

.login-page-wrap {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.login-page-wrap .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.login-arch-side {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    background: linear-gradient(145deg, #0a0a0e 0%, #0d0b12 35%, #0a0a0e 70%, #080a12 100%);
    border-right: 1px solid rgba(233, 30, 140, 0.12);
    position: relative;
    overflow: hidden;
}

/* Arkadaki yumuşak ışık halesi */
.login-arch-side::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    left: -20%;
    top: -20%;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(233, 30, 140, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse 50% 80% at 80% 20%, rgba(23, 147, 209, 0.06) 0%, transparent 45%);
    z-index: 0;
    pointer-events: none;
}

/* arch.png şeffaf arka plan */
.login-arch-side::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('arch.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
}

.arch-terminal {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(14, 14, 20, 0.92) 0%, rgba(10, 10, 14, 0.9) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(233, 30, 140, 0.35);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,
                0 8px 32px rgba(0,0,0,0.5),
                0 0 80px rgba(233, 30, 140, 0.1),
                0 0 0 1px rgba(233, 30, 140, 0.15);
}

.arch-terminal-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.14) 0%, rgba(233, 30, 140, 0.06) 100%);
    border-bottom: 1px solid rgba(233, 30, 140, 0.22);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.78);
}

.arch-terminal-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.arch-dot-red { background: #ff5f56; }
.arch-dot-yellow { background: #ffbd2e; }
.arch-dot-green { background: #27c93f; }

.arch-terminal-title {
    margin-left: 12px;
    color: rgba(255,255,255,0.5);
}

.arch-terminal-body {
    padding: 20px 18px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
}

.arch-ascii {
    color: #1793d1;
    line-height: 1.3;
    margin: 0 0 18px;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(23, 147, 209, 0.25);
}

.arch-ascii .arch-label {
    display: block;
    color: rgba(233, 30, 140, 0.95);
    font-size: 10px;
    letter-spacing: 0.25em;
    margin-top: 6px;
    text-shadow: 0 0 24px rgba(233, 30, 140, 0.35);
}

.arch-prompt-line {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.9);
}

.arch-prompt {
    color: #27c93f;
    margin-right: 8px;
}

.arch-cmd {
    color: rgba(255,255,255,0.7);
}

.arch-cursor {
    color: #1793d1;
    animation: arch-blink 1s step-end infinite;
}

@keyframes arch-blink {
    50% { opacity: 0; }
}

.arch-output {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 12px 0 16px;
    padding-left: 0;
}

.arch-line {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
}

.arch-line.arch-accent {
    color: rgba(233, 30, 140, 0.9);
}

.arch-character {
    margin-top: 28px;
    width: 100%;
    max-width: 200px;
    border: 1px solid rgba(233, 30, 140, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.arch-char-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.login-form-side {
    flex: 0 0 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #0a0a0e;
}

.arch-close-btn {
    top: 16px;
    right: 16px;
    border-color: rgba(233, 30, 140, 0.2);
    color: rgba(255,255,255,0.6);
}

.arch-close-btn:hover {
    border-color: rgba(233, 30, 140, 0.4);
    color: #e91e8c;
}

.arch-login-card .minimalist-login-btn {
    background: linear-gradient(135deg, #1793d1, #1a9fd9);
    box-shadow: 0 4px 20px rgba(23, 147, 209, 0.35);
}

.arch-login-card .minimalist-login-btn:hover {
    box-shadow: 0 8px 28px rgba(23, 147, 209, 0.45);
}

.arch-login-card .minimalist-input-wrap:focus-within,
.arch-login-card .minimalist-input-group:not(:has(.minimalist-input-wrap)) .minimalist-input:focus {
    border-color: rgba(23, 147, 209, 0.5);
    box-shadow: 0 0 0 3px rgba(23, 147, 209, 0.15);
}

@media (max-width: 900px) {
    .login-page-wrap {
        flex-direction: column;
    }
    .login-arch-side {
        border-right: none;
        border-bottom: 1px solid rgba(233, 30, 140, 0.15);
        padding: 24px 20px;
        min-height: auto;
    }
    .arch-terminal {
        max-width: 100%;
    }
    .login-form-side {
        flex: 1;
        flex-basis: auto;
        width: 100%;
        padding: 24px 20px;
    }
}

/* Minimalist Black Theme Styles */
.minimalist-body {
    background: var(--minimalist-bg);
    color: var(--minimalist-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.minimalist-container {
    width: 100%;
    max-width: 420px;
    padding: 44px 40px 48px;
    position: relative;
    animation: fadeIn 0.5s ease;
    background: rgba(15, 15, 20, 0.92);
    backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.minimalist-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.minimalist-logo:hover {
    opacity: 1;
}

/* Removed logoFloat animation for cleaner look */

.minimalist-form-container {
    width: 100%;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header-block {
    margin-bottom: 32px;
    text-align: center;
}

.minimalist-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.login-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

.minimalist-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.5;
}

.minimalist-form {
    width: 100%;
}

.minimalist-input-group {
    position: relative;
    margin-bottom: 20px;
}

.minimalist-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-weight: 500;
}

.minimalist-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0 16px;
    transition: all 0.25s ease;
}

.minimalist-input-wrap:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.minimalist-input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    padding: 14px 0;
    outline: none;
    font-family: inherit;
    font-weight: 400;
}

.minimalist-input-group:not(:has(.minimalist-input-wrap)) .minimalist-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    transition: all 0.25s ease;
}

.minimalist-input-group:not(:has(.minimalist-input-wrap)) .minimalist-input:focus {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.minimalist-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.password-toggle-minimal {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    border-radius: 8px;
}

.password-toggle-minimal:hover {
    color: rgba(255, 255, 255, 0.9);
}

.minimalist-login-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 24px;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.minimalist-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.5);
}

.minimalist-login-btn:active {
    transform: translateY(0);
}

.login-divider {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin: 22px 0 14px;
    font-weight: 500;
}

.login-register-link {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
.login-register-link a {
    color: #1793d1;
    text-decoration: none;
}
.login-register-link a:hover {
    text-decoration: underline;
}

.login-register-btn {
    width: 100%;
    padding: 14px 20px;
    margin-top: 0;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    border: 1px solid rgba(23, 147, 209, 0.5);
    background: linear-gradient(135deg, rgba(23, 147, 209, 0.25), rgba(23, 147, 209, 0.15));
    color: #5eb8e6;
}
.login-register-btn:hover {
    background: linear-gradient(135deg, rgba(23, 147, 209, 0.35), rgba(23, 147, 209, 0.25));
    border-color: rgba(23, 147, 209, 0.6);
    transform: translateY(-1px);
}
.login-register-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}
.login-register-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.discord-login-btn {
    width: 100%;
    padding: 14px 20px;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 14px;
    color: #a5b4fc;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.discord-login-btn:hover {
    background: rgba(88, 101, 242, 0.35);
    border-color: rgba(88, 101, 242, 0.6);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.discord-login-btn .discord-icon {
    flex-shrink: 0;
}

/* Removed minimalist-links styles as they are no longer used */

/* Subtle background gradient for depth */
.minimalist-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 80% 80%, rgba(88, 101, 242, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.08) 0%, transparent 45%);
    z-index: 0;
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.premium-login-header {
    position: relative;
    margin-bottom: 50px;
}

.premium-graphic-element {
    position: absolute;
    top: -40px;
    right: -40px;
    opacity: 0.3;
    pointer-events: none;
}

/* Consent Modal Styles */
.consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.consent-modal-content {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.4s ease;
}

.consent-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.consent-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.consent-body {
    padding: 30px;
}

.consent-warning {
    color: #f59e0b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid #f59e0b;
    border-radius: 4px;
}

.consent-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.8;
}

.consent-text p {
    margin-bottom: 15px;
}

.consent-text ul {
    margin: 15px 0 15px 20px;
    padding-left: 10px;
}

.consent-text ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.consent-legal {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 500;
}

.consent-acknowledgment {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.consent-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.consent-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.consent-btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.consent-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.consent-btn-accept {
    background: #ffffff;
    color: #000000;
}

.consent-btn-accept:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.consent-btn-accept:active {
    transform: translateY(0);
}

/* Site message modal (replaces browser alert) – dark theme */
.site-message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: siteMessageFadeIn 0.25s ease;
}
.site-message-overlay[hidden] {
    display: none !important;
}
@keyframes siteMessageFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.site-message-box {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    padding: 24px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    animation: siteMessageSlide 0.3s ease;
}
@keyframes siteMessageSlide {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.site-message-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
}
.site-message-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0 0 20px;
}
.site-message-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: #0d9488;
    color: #fff;
    border: 1px solid rgba(13, 148, 136, 0.5);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    text-align: center;
}
.site-message-btn:hover {
    background: #0f766e;
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.35);
    transform: translateY(-1px);
}
.site-message-btn:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.rotating-circle {
    animation: rotate 20s linear infinite;
    transform-origin: 60px 60px;
}

.pulsing-circle {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Update all pages to use black theme */
body {
    background: #000000 !important;
}

.shop-container,
.admin-container {
    background: #000000;
    color: #ffffff;
}

.product-card,
.admin-section {
    background: rgba(20, 20, 20, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Smooth animations for all interactive elements */
.product-card,
.buy-btn,
.nav-btn,
.action-btn,
.submit-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced hover effects */
.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

/* Crypto payment styles */
.crypto-payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.crypto-payment-content {
    background: rgba(22, 22, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px 40px;
    max-width: 480px;
    width: 100%;
    animation: slideUp 0.4s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.08);
}

.crypto-payment-header {
    text-align: center;
    margin-bottom: 24px;
}

.crypto-payment-header .crypto-payment-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.crypto-payment-header h2 {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
}

.crypto-wallet-option {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.crypto-wallet-option:hover {
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.08);
}

.crypto-address-container {
    margin-bottom: 24px;
}

.crypto-address-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 10px;
}

.crypto-address {
    font-family: 'SF Mono', 'Consolas', monospace !important;
    font-size: 13px !important;
    word-break: break-all;
    color: #e2e8f0 !important;
    flex: 1;
}

.crypto-copy-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 10px;
    color: #a78bfa;
    cursor: pointer;
    transition: all 0.25s ease;
}

.crypto-copy-btn:hover {
    background: rgba(124, 58, 237, 0.35);
    color: #fff;
}

.crypto-product-info {
    margin: 20px 0;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.crypto-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.crypto-payment-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 20px;
}

.crypto-payment-note::before {
    content: '⚠';
    font-size: 18px;
    flex-shrink: 0;
}

.crypto-payment-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.crypto-confirm-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.crypto-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.crypto-cancel-btn {
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.crypto-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* ============================================
   PREMIUM REGEDIT PAGE STYLES
   ============================================ */

.regedit-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
}

.regedit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.regedit-header h1 {
    font-size: 36px;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff, #a0a0b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.back-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-2px);
}

.regedit-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.regedit-section {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.6s ease;
}

.regedit-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #ef4444;
}

.premium-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.premium-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    transform: translateY(-1px);
}

.premium-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -4px;
}

.password-strength {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.password-strength.weak {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.password-strength.medium {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.password-strength.strong {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.premium-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.premium-btn.primary {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.premium-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.premium-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.premium-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.user-search {
    margin-bottom: 24px;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.premium-table thead {
    background: rgba(124, 58, 237, 0.2);
}

.premium-table th {
    padding: 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.premium-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
}

.premium-table tbody tr {
    transition: all 0.3s ease;
}

.premium-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-edit {
    background: rgba(124, 58, 237, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.btn-edit:hover {
    background: #7c3aed;
    color: #ffffff;
    border-color: #7c3aed;
}

.btn-delete {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-delete:hover {
    background: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
}

/* Modal Styles */
.modal-overlay {
    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: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Unauthorized Page Styles */
.unauthorized-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding: 20px;
}

.unauthorized-content {
    text-align: center;
    max-width: 500px;
    animation: fadeIn 0.6s ease;
}

.unauthorized-icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.unauthorized-content h1 {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.unauthorized-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.unauthorized-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px !important;
}

.unauthorized-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Shop Premium Design */
.shop-container {
    background: linear-gradient(135deg, #000000 0%, #0a0a14 100%);
    min-height: 100vh;
}

.shop-header {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    margin-bottom: 50px;
}

.shop-header h1 {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.product-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.product-image {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    border-color: rgba(124, 58, 237, 0.6);
    transform: scale(1.05);
}

/* ============================================
   ANIMATED STARS BACKGROUND
   ============================================ */

.stars-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.star-1 { top: 10%; left: 20%; animation-delay: 0s; }
.star-2 { top: 20%; left: 80%; animation-delay: 0.5s; }
.star-3 { top: 30%; left: 40%; animation-delay: 1s; }
.star-4 { top: 40%; left: 70%; animation-delay: 1.5s; }
.star-5 { top: 50%; left: 15%; animation-delay: 2s; }
.star-6 { top: 60%; left: 90%; animation-delay: 0.3s; }
.star-7 { top: 70%; left: 30%; animation-delay: 0.8s; }
.star-8 { top: 80%; left: 60%; animation-delay: 1.3s; }
.star-9 { top: 15%; left: 50%; animation-delay: 1.8s; }
.star-10 { top: 25%; left: 10%; animation-delay: 2.3s; }
.star-11 { top: 35%; left: 85%; animation-delay: 0.2s; }
.star-12 { top: 45%; left: 25%; animation-delay: 0.7s; }
.star-13 { top: 55%; left: 65%; animation-delay: 1.2s; }
.star-14 { top: 65%; left: 5%; animation-delay: 1.7s; }
.star-15 { top: 75%; left: 95%; animation-delay: 2.2s; }
.star-16 { top: 85%; left: 35%; animation-delay: 0.4s; }
.star-17 { top: 12%; left: 75%; animation-delay: 0.9s; }
.star-18 { top: 22%; left: 45%; animation-delay: 1.4s; }
.star-19 { top: 32%; left: 55%; animation-delay: 1.9s; }
.star-20 { top: 42%; left: 12%; animation-delay: 2.4s; }

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* ============================================
   TRANSPARENT CARDS (Elite Design)
   ============================================ */

.transparent-card {
    background: rgba(20, 20, 20, 0.3) !important;
    backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.transparent-card:hover {
    background: rgba(20, 20, 20, 0.4) !important;
    border-color: rgba(124, 58, 237, 0.3) !important;
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2) !important;
}

/* ============================================
   PREMIUM SHOP STYLES
   ============================================ */

.premium-shop-body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    position: relative;
}

.premium-shop-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
}

.premium-shop-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-shop-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.premium-shop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.premium-shop-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.premium-shop-nav a:hover,
.premium-shop-nav a.active {
    color: #ffffff;
}

.premium-shop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7c3aed, #8b5cf6);
    border-radius: 2px;
}

.premium-user-greeting {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
}

.premium-shop-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.premium-logout-btn {
    padding: 10px 20px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-logout-btn:hover {
    background: #ef4444;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.premium-shop-main {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    min-height: calc(100vh - 80px);
}

.premium-shop-container {
    max-width: 1400px;
    margin: 0 auto;
}

.premium-shop-title-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease;
}

.premium-shop-title {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.premium-shop-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.premium-payment-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.premium-payment-info svg {
    color: #8b5cf6;
}

.premium-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.premium-products-grid .product-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-products-grid .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    transition: left 0.6s ease;
}

.premium-products-grid .product-card:hover::before {
    left: 100%;
}

.premium-products-grid .product-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
    background: rgba(20, 20, 20, 0.5);
}

.premium-products-grid .product-image {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.premium-products-grid .product-card:hover .product-image {
    border-color: rgba(124, 58, 237, 0.6);
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.premium-products-grid .product-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.premium-products-grid .product-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.premium-products-grid .product-price {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.premium-products-grid .buy-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-products-grid .buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* ============================================
   VIP LOGO STYLES (Premium Metallic Design)
   ============================================ */

.vip-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
    animation: vipFloat 6s ease-in-out infinite;
}

.vip-logo-image {
    width: 500px;
    height: auto;
    max-width: 90vw;
    filter: blur(1px);
    opacity: 0.25;
    animation: vipFloat 6s ease-in-out infinite;
    border-radius: 20px;
    object-fit: contain;
}

@keyframes vipFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px) scale(1.05);
    }
}

.vip-logo-3d {
    display: flex;
    align-items: center;
    gap: 20px;
    perspective: 1000px;
}

.vip-letter {
    font-size: 120px;
    font-weight: 700;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(224, 224, 224, 0.8) 25%,
        rgba(192, 192, 192, 0.7) 50%,
        rgba(224, 224, 224, 0.8) 75%,
        rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    transform-style: preserve-3d;
    animation: vipShine 3s ease-in-out infinite;
}

.vip-letter.vip-v {
    font-size: 140px;
    animation-delay: 0s;
}

.vip-letter.vip-i {
    font-size: 120px;
    animation-delay: 0.2s;
}

.vip-letter.vip-p {
    font-size: 120px;
    animation-delay: 0.4s;
}

@keyframes vipShine {
    0%, 100% {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4)) brightness(1.2);
    }
}

.vip-svg {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* VIP Logo for Products */
.vip-product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.05));
}

.vip-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: brightness(0.95) contrast(1.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.premium-products-grid .product-card:hover .vip-product-img {
    opacity: 1;
    filter: brightness(1.1) contrast(1.15);
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.vip-logo-product {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.vip-letter-small {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(224, 224, 224, 0.85) 25%,
        rgba(192, 192, 192, 0.75) 50%,
        rgba(224, 224, 224, 0.85) 75%,
        rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    position: relative;
    animation: vipProductShine 2s ease-in-out infinite;
}

.vip-letter-small.vip-v-small {
    font-size: 56px;
    animation-delay: 0s;
}

.vip-letter-small.vip-i-small {
    font-size: 48px;
    animation-delay: 0.15s;
}

.vip-letter-small.vip-p-small {
    font-size: 48px;
    animation-delay: 0.3s;
}

@keyframes vipProductShine {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4)) brightness(1);
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.5)) brightness(1.3);
        transform: scale(1.05);
    }
}

.premium-products-grid .product-card:hover .vip-logo-product {
    animation: vipProductHover 0.6s ease;
}

@keyframes vipProductHover {
    0%, 100% {
        transform: scale(1) rotateY(0deg);
    }
    50% {
        transform: scale(1.1) rotateY(5deg);
    }
}

/* Responsive Design for Premium Shop */
@media (max-width: 968px) {
    .premium-shop-title {
        font-size: 42px;
    }
    
    .premium-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .premium-shop-header-container {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .premium-shop-header {
        padding: 16px 20px;
    }
    
    .premium-shop-title {
        font-size: 32px;
    }
    
    .premium-shop-subtitle {
        font-size: 16px;
    }
    
    .premium-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-shop-nav {
        gap: 20px;
        font-size: 14px;
    }
}

/* Responsive Design for Regedit */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .regedit-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .premium-table {
        font-size: 12px;
    }
    
    .premium-table th,
    .premium-table td {
        padding: 12px 8px;
    }
}

/* ============================================
   PREMIUM 404 ERROR PAGE STYLES
   ============================================ */

.error-page-body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.error-header {
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.error-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.error-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.error-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.error-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.error-nav a:hover {
    color: #ffffff;
}

.error-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.error-get-started-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.error-get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45);
}

/* ============================================
   ARCH LINUX INDEX THEME
   ============================================ */

.arch-index-body {
    background: linear-gradient(180deg, #0a0a0e 0%, #0d0b12 40%, #0a0a0e 100%);
}

.arch-index-body .error-header {
    border-bottom-color: rgba(233, 30, 140, 0.12);
    background: rgba(10, 10, 14, 0.9);
}

.arch-index-body .error-nav a:hover {
    color: #1793d1;
}

.arch-index-body .error-get-started-btn {
    background: linear-gradient(135deg, #1793d1, #1a9fd9);
    box-shadow: 0 4px 20px rgba(23, 147, 209, 0.35);
}

.arch-index-body .error-get-started-btn:hover {
    box-shadow: 0 8px 28px rgba(23, 147, 209, 0.5);
}

/* Stars: cyan/pink tint */
.arch-index-body .star {
    box-shadow: 0 0 6px rgba(23, 147, 209, 0.5), 0 0 10px rgba(233, 30, 140, 0.2);
}

/* Hero */
.arch-index-body .arch-hero-section {
    position: relative;
}

.arch-index-body .arch-404-bg {
    color: rgba(23, 147, 209, 0.06);
    font-size: 260px;
    letter-spacing: -12px;
}

.arch-hero-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    background-image: url('arch.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.arch-index-body .arch-hero-card,
.arch-index-body .arch-cta-card {
    border-color: rgba(233, 30, 140, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(233, 30, 140, 0.1);
}

.arch-index-body .arch-hero-card:hover,
.arch-index-body .arch-cta-card:hover {
    border-color: rgba(233, 30, 140, 0.35);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 40px rgba(233, 30, 140, 0.08);
}

.arch-index-body .arch-hero-badge {
    background: rgba(23, 147, 209, 0.15);
    border-color: rgba(23, 147, 209, 0.4);
    color: #5eb8e6;
}

.arch-index-body .error-home-btn.arch-cta-btn,
.arch-index-body .error-cta-btn.arch-cta-btn {
    background: linear-gradient(135deg, #1793d1, #1a9fd9);
    box-shadow: 0 4px 20px rgba(23, 147, 209, 0.35);
}

.arch-index-body .error-home-btn.arch-cta-btn:hover,
.arch-index-body .error-cta-btn.arch-cta-btn:hover {
    box-shadow: 0 8px 28px rgba(23, 147, 209, 0.5);
}

.arch-index-body .error-cta-btn.arch-cta-btn::after,
.arch-index-body .error-home-btn.arch-cta-btn::after {
    content: none;
}

/* CTA abstract shapes - cyan/pink */
.arch-index-body .error-abstract-shape {
    background: linear-gradient(135deg, rgba(23, 147, 209, 0.08), rgba(233, 30, 140, 0.05));
}

/* Terminal Arch style */
.arch-index-body .arch-terminal-section {
    margin: 80px 0;
}

.arch-index-body .arch-terminal-index {
    background: linear-gradient(180deg, rgba(14, 14, 20, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
    border: 1px solid rgba(233, 30, 140, 0.35);
    border-radius: 14px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset,
                0 8px 32px rgba(0,0,0,0.5),
                0 0 60px rgba(233, 30, 140, 0.1);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.arch-index-body .arch-terminal-index:hover {
    border-color: rgba(233, 30, 140, 0.45);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,
                0 12px 40px rgba(0,0,0,0.5),
                0 0 80px rgba(233, 30, 140, 0.15);
}

.arch-index-body .arch-terminal-header {
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.14) 0%, rgba(233, 30, 140, 0.06) 100%);
    border-bottom: 1px solid rgba(233, 30, 140, 0.22);
    padding: 10px 16px;
}

.arch-index-body .arch-terminal-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.arch-index-body .arch-terminal-body-index {
    padding: 22px 20px;
    font-family: 'JetBrains Mono', monospace;
}

.arch-index-body .arch-prompt {
    color: #27c93f;
    margin-right: 8px;
}

.arch-index-body .arch-cursor {
    color: #1793d1;
    animation: arch-blink 1s step-end infinite;
}

.arch-index-body .terminal-command {
    color: rgba(255, 255, 255, 0.85);
}

.arch-index-body .arch-terminal-status {
    border-left-color: rgba(23, 147, 209, 0.5);
}

.arch-index-body .arch-status-dot {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

.arch-index-body .arch-phone-line {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.arch-index-body .arch-phone-line:hover {
    border-bottom-color: rgba(23, 147, 209, 0.3);
}

.arch-index-body .phone-value {
    font-family: 'JetBrains Mono', monospace;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.arch-index-body .error-footer {
    border-top-color: rgba(233, 30, 140, 0.1);
    background: rgba(10, 10, 14, 0.9);
}

.arch-index-body .error-footer-column a:hover {
    color: #1793d1;
}

.arch-index-body .error-footer-column a.active {
    color: #5eb8e6;
}

/* Main Content */
.error-main {
    flex: 1;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* 404 Error Section */
.error-404-section {
    position: relative;
    margin-bottom: 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.error-404-bg {
    position: absolute;
    font-size: 280px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -20px;
    z-index: 0;
    user-select: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.6s ease;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 999px;
    color: #a78bfa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.error-404-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.error-404-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 32px;
}

.error-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.error-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.5);
}

.error-home-btn::after {
    content: '→';
    font-size: 18px;
    opacity: 0.9;
}

/* Call to Action Section */
.error-cta-section {
    position: relative;
    margin-bottom: 80px;
    min-height: 300px;
}

.error-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.error-abstract-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.05));
    filter: blur(60px);
    animation: floatAbstract 20s ease-in-out infinite;
}

.error-abstract-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.error-abstract-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.error-abstract-shape.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes floatAbstract {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.error-cta-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s ease;
}

.error-cta-content {
    flex: 1;
}

.error-cta-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.error-cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 500px;
}

.error-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border: none;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.error-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.5);
}

.error-cta-btn::after {
    content: '→';
    font-size: 18px;
    opacity: 0.9;
}

/* Footer */
.error-footer {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px 30px;
    margin-top: auto;
}

.error-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.error-footer-left {
    max-width: 400px;
}

.error-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.error-footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.error-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.error-footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.error-footer-column a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.error-footer-column a:hover {
    color: #ffffff;
}

.error-footer-column a.active {
    color: #8b5cf6;
    font-weight: 500;
}

.error-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.error-footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.error-social-icons {
    display: flex;
    gap: 16px;
}

.error-social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.error-social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design for 404 Page */
@media (max-width: 968px) {
    .error-404-bg {
        font-size: 180px;
    }
    
    .error-404-card {
        padding: 40px 30px;
    }
    
    .error-404-title {
        font-size: 32px;
    }
    
    .error-cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .error-cta-title {
        font-size: 28px;
    }
    
    .error-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .error-footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .error-header {
        padding: 20px;
    }
    
    .error-header-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .error-nav {
        gap: 20px;
    }
    
    .error-main {
        padding: 40px 20px;
    }
    
    .error-404-bg {
        font-size: 120px;
    }
    
    .error-404-card {
        padding: 30px 20px;
    }
    
    .error-404-title {
        font-size: 24px;
    }
    
    .error-cta-card {
        padding: 30px 20px;
    }
    
    .error-cta-title {
        font-size: 24px;
    }
    
    .error-footer {
        padding: 40px 20px 20px;
    }
    
    .error-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   ANIMATED TERMINAL SECTION
   ============================================ */

.terminal-section {
    position: relative;
    margin: 80px 0;
    padding: 0 20px;
}

.terminal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    font-family: 'Courier New', 'Consolas', monospace;
}

.terminal-header {
    background: #000000;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-dot-red {
    background: #ff5f56;
    box-shadow: 0 0 8px rgba(255, 95, 86, 0.5);
}

.terminal-dot-yellow {
    background: #ffbd2e;
    box-shadow: 0 0 8px rgba(255, 189, 46, 0.5);
}

.terminal-dot-green {
    background: #27c93f;
    box-shadow: 0 0 8px rgba(39, 201, 63, 0.5);
}

.terminal-title {
    color: #ffffff;
    font-size: 11px;
    font-weight: 300;
    font-family: 'Courier New', 'Consolas', monospace;
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', 'Consolas', monospace;
    color: #ffffff;
    min-height: 300px;
    background: #000000;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}

.terminal-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 300;
}

.terminal-prompt {
    color: #ffffff;
    margin-right: 8px;
    font-weight: 300;
}

.terminal-command {
    color: #ffffff;
    animation: typing 2s steps(20, end);
    font-weight: 300;
}

.terminal-cursor {
    color: #ffffff;
    animation: blink 1s infinite;
    margin-left: 2px;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.terminal-output {
    margin-top: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: transparent;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.status-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.terminal-phone-number {
    margin-bottom: 15px;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.terminal-phone-number:hover {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.terminal-phone-number.fake-number {
    opacity: 0.6;
}

.phone-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    min-width: 120px;
    text-transform: none;
    letter-spacing: 0.3px;
    font-weight: 300;
}

.phone-value {
    color: #ffffff;
    font-size: 13px;
    font-weight: 300;
    font-family: 'Courier New', 'Consolas', monospace;
    letter-spacing: 0.5px;
    text-shadow: none;
}

/* Responsive Design for Terminal */
@media (max-width: 768px) {
    .terminal-body {
        padding: 20px;
        font-size: 14px;
    }
    
    .terminal-phone-number {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .phone-label {
        min-width: auto;
        font-size: 12px;
    }
    
    .phone-value {
        font-size: 16px;
    }
}

