* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --max-width: 1100px;
    --bg-dark: #02040a;
    --accent-blue: #00e1fffa;
    --accent-purple: #7b42ff;
    --text-gray: #a0a0a0;
    --accent-blue-low: #5395f8;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top center, #111827 0, #020309 55%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-left-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    width: 60px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links li:not(:last-child)::after {
    content: "|";
    color: rgba(255, 255, 255, 0.1);
    margin: 0 15px;
    font-size: 14px;
    font-weight: 300;
}

.nav-links a.active, .nav-links a:hover {
    color: white;
}

.login-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
}

.login-btn:hover {
    background: white;
    color: black;
}

.hero {
    padding: 100px 0;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(rgba(30, 40, 55, 0.1) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(30, 40, 55, 0.1) 1px, transparent 1px), 
        radial-gradient(circle at top center, #111827 0, #020309 60%);
    background-size: 40px 40px, 40px 40px, cover;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 50px;
}

.badge-row {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.blue { background: rgba(0, 229, 255, 0.1); color: var(--accent-blue); border: 1px solid var(--accent-blue); }
.badge.glass { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); }

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 10px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 25px;
    color: white;
}

#dynamic-text {
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.text-hidden {
    opacity: 0;
    transform: translateY(10px);
}

.description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 16px;
    max-width: 90%;
}

.cta-section {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 60px;
}

.btn-main {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 18px 35px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-main:hover {
    background: white;
    color: black;
}

.client-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-blue);
    background: rgba(0, 229, 255, 0.1);
}

.stats-text {
    font-size: 14px;
    line-height: 1.2;
}

.stats-text span {
    color: var(--text-gray);
}

.trust-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-gray);
}

.tag {
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 40px rgba(4, 5, 5, 0.2));
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #ffffff; 
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/*SECTION PRODUCTS*/

.products-section {
    padding: 45px 0;
    scroll-margin-top: 30px;
    background-image: 
        linear-gradient(rgba(30, 40, 55, 0.1) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(30, 40, 55, 0.1) 1px, transparent 1px), 
        radial-gradient(circle at bottom center, #111827 0, #020309 60%);
    background-size: 40px 40px, 40px 40px, cover;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 35px;
    text-align: center;
}
.description_products {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 16px;
    text-align: center;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue-low);
    transform: translateY(-10px);
    box-shadow: 0 10px 50px rgba(0, 140, 255, 0.1);
}

.product-status {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-status.online { 
    color: #00ff88;
    background: #00ff8829;
    padding: 5px 10px;
    border-radius: 8px;
}
.product-status.maintenance { 
    color: #338bff; 
    background: #338bff2a;
    padding: 5px 10px;
    border-radius: 8px;
}

.product-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}

.product-game {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 700;
}

.product-features {
    list-style: none;
    margin: 20px 0;
}

.product-features li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.product-features li span {
    color: white;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.buy-btn {
    font-family: 'Rajdhani', sans-serif;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.buy-btn:hover {
    background: white;
    color: black;
}

/*STATUS*/
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: linear-gradient(145deg, #0f172a, #020309);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: modalSlide 0.4s ease;
}

@keyframes modalSlide {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    color: white; font-size: 30px; cursor: pointer;
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    text-align: center; margin-bottom: 30px;
}

.status-list { display: grid; gap: 15px; }

.status-item {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge {
    font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
}

.status-badge.online { color: #00ff88; background: rgba(0, 255, 136, 0.1); }
.status-badge.maintenance { color: #ff3333; background: rgba(255, 51, 51, 0.1); }

.modal-footer-text {
    text-align: center; font-size: 12px; color: #64748b; margin-top: 25px;
}


/*CHECKOUT*/

.checkout-section {
    padding: 120px 0;
    min-height: 80vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.order-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.order-info { display: flex; align-items: center; gap: 15px; }
.order-img { width: 50px; height: 50px; object-fit: contain; }

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.detail-row.total {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.methods-grid { display: grid; gap: 15px; margin: 25px 0; }

.method-option input { display: none; }

.method-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.method-box img { width: 30px; }

.method-option input:checked + .method-box {
    border-color: var(--accent-blue-low);
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.checkout-form input[type="email"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    color: white;
    margin-bottom: 20px;
}

.btn-pay {
    width: 100%;
    background: #0e489e;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
   
}

.btn-pay:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(0, 140, 255, 0.3);
}

.selector-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); 
    gap: 10px; 
    margin: 20px 0; 
}
.plan-option input { display: none; }
.plan-box { 
    background: rgba(255,255,255,0.02); 
    border: 1px solid rgba(255,255,255,0.1); 
    padding: 10px; 
    text-align: center; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: 0.3s; 
    font-size: 11px; 
    font-weight: 700; 
    color: #94a3b8;
}
.plan-option input:checked + .plan-box { 
    border-color: var(--accent-blue-low); 
    background: rgba(0, 132, 255, 0.1); 
    color: white; 
    box-shadow: 0 0 10px rgba(0, 174, 255, 0.2);
}
.license-selector h3 { font-size: 14px; color: #64748b; margin-top: 20px; text-transform: uppercase; letter-spacing: 1px; }

.policy-check{
    margin-bottom: 10px;
}

/*DASHBOARD*/

.dashboard-wrapper {
    padding: 120px 0 60px;
    background: radial-gradient(circle at top right, #0a101d 0%, #020309 100%);
    min-height: 100vh;
}

.dash-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.dash-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.user-info {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: #000;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    margin: 0 auto 15px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
}

.user-avatar img {
    width: 100%;  
    height: 100%;  
    object-fit: contain; 
}

.user-info h3 { font-family: 'Orbitron', sans-serif; font-size: 16px; margin-bottom: 5px; }
.user-status { font-size: 10px; color: #00ff88; font-weight: bold; letter-spacing: 1px; }

.dash-menu { display: flex; flex-direction: column; gap: 10px; }

.menu-item {
    padding: 15px 20px;
    border-radius: 12px;
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-item:hover, .menu-item.active {
    background: rgba(0, 229, 255, 0.05);
    color: #fff;
    border-left: 3px solid var(--accent-blue);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.server-status {
    font-size: 12px;
    color: #64748b;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.online-text { color: #00ff88; font-weight: bold; }

.license-display {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 10px;
}

.dash-card-product {
    background: linear-gradient(145deg, #0f172a, #020309);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.product-header img { width: 45px; }
.product-title h4 { font-size: 18px; margin: 0; }
.game-tag { font-size: 11px; color: var(--accent-blue); font-weight: 700; }

.time-badge {
    margin-left: auto;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-blue);
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hwid-box small { color: #64748b; display: block; }
.hwid-box p { font-size: 12px; font-family: monospace; }

.btn-dash-action {
    background: transparent;
    border: 1px solid #475569;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.btn-dash-action:hover { border-color: var(--accent-blue); background: rgba(0, 229, 255, 0.05); }

.dash-card-empty {
    border: 2px dashed rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    transition: 0.3s;
}

.dash-card-empty:hover { border-color: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.01); }

.tab-content { display: none; animation: fadeIn 0.4s ease; }
.tab-content.active { display: block; }
.dash-card-empty a {text-decoration: none; color: #3f5363fa;}
.key-box { 
    background: rgba(0,0,0,0.2); 
    padding: 15px; 
    border-radius: 10px; 
    margin-bottom: 20px; 
    border: 1px solid rgba(255,255,255,0.05); 
}

.key-box small { color: #64748b; font-weight: bold; font-size: 10px; display: block; margin-bottom: 8px; }
.key-input-group { display: flex; gap: 10px; }
.key-input-group input { background: transparent; border: none; color: var(--accent-blue); font-family: monospace; font-size: 12px; width: 100%; outline: none; }

.btn-copy { 
    background: rgba(0, 229, 255, 0.1); 
    border: 1px solid var(--accent-blue); 
    color: var(--accent-blue); 
    padding: 5px 12px; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 10px; 
    font-weight: bold; 
    transition: 0.3s; 
}
.btn-copy:hover { background: var(--accent-blue); color: #000; }

.downloads-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; }

.download-card { 
    background: rgba(255,255,255,0.02); 
    border: 1px solid rgba(255,255,255,0.05); 
    padding: 30px; 
    border-radius: 15px; 
    text-align: center; 
    transition: 0.3s; 
}

.download-card:hover { border-color: var(--accent-blue); transform: translateY(-5px); }
.download-card img { width: 50px; height: 50px; margin-bottom: 15px; object-fit: contain; }
.download-card h3 { font-size: 16px; margin-bottom: 5px; }
.download-card p { font-size: 12px; color: #64748b; margin-bottom: 20px; }

.warning-box { 
    margin-top: 30px; 
    background: rgba(255, 166, 0, 0.05); 
    border-left: 4px solid #ffa600; 
    padding: 20px; 
    color: #d1d1d1; 
    font-size: 14px; 
    border-radius: 4px; 
}

.settings-form { max-width: 600px; display: flex; flex-direction: column; gap: 20px; }
.input-row { display: flex; gap: 20px; }
.input-group { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.input-group label { font-size: 12px; color: #64748b; }
.input-group input { background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); padding: 12px; border-radius: 8px; color: white; outline: none; }

.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }

.toast { 
    background: #0a0f1d; 
    border: 1px solid var(--accent-blue); 
    color: white; 
    padding: 15px 25px; 
    border-radius: 8px; 
    font-family: 'Orbitron', sans-serif; 
    font-size: 12px; 
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2); 
    animation: slideIn 0.3s ease forwards;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.reseller-table small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 2px;
}

.time-badge-inline {
    background: rgba(0, 132, 255, 0.1);
    color: #00b7ff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* BUSCADOR Y TABLA PARA RESELLERS */
.search-box {
    position: relative;
}

.search-box input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    width: 250px;
    transition: 0.3s;
}

.search-box input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.license-table-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.reseller-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.reseller-table th {
    background: rgba(0, 229, 255, 0.05);
    padding: 15px;
    color: var(--accent-blue);
    text-align: left;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
}

.reseller-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.reseller-table tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.key-text {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: monospace;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-locked { color: #ffab00; font-weight: bold; font-size: 11px; }
.time-badge-inline { color: var(--accent-blue); font-weight: bold; }

.btn-table-action {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    transition: 0.3s;
}

.btn-table-action:hover {
    background: var(--accent-blue);
    color: #000;
}
.game-tag{
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 700; 
}
/*AUTH STYLES (SIGNIN / SIGNUP)*/
.auth-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, #0a101d 0%, #020309 100%);
    position: relative;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 1;
    box-sizing: border-box;
}

.auth-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--accent-blue, #00e5ff);
    filter: blur(120px);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    width: 60px;
    margin-bottom: 15px;
}

.auth-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 5px;
}

.auth-header p {
    color: #64748b;
    font-size: 13px;
}

.auth-form .input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form label {
    font-size: 11px;
    font-weight: bold;
    color: var(--accent-blue, #00e5ff);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auth-form input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    border-radius: 10px;
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    border-color: var(--accent-blue, #00e5ff);
    background: rgba(0, 229, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.input-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.input-row .input-group {
    flex: 1;
    min-width: 0;
}

.btn-auth {
    width: 100%;
    background: var(--accent-blue, #00e5ff);
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-auth:hover {
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
    background: #fff;
}

.auth-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

.auth-link {
    color: var(--accent-blue, #00e5ff);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.auth-link:hover {
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.back-home {
    display: block;
    margin-top: 20px;
    color: #475569;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
}


.dashboard-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    transition: 0.3s;
    text-decoration: none;
}

.dashboard-btn:hover {
    background: white;
    color: black;
}
.admin-mode {
    background: radial-gradient(circle at top right, #050a14 0%, #010206 100%) !important;
}

.admin-card {
    border: 1px solid rgba(0, 229, 255, 0.1) !important;
    background: linear-gradient(145deg, #0a1324, #020309) !important;
}

.admin-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 12px;
    border-radius: 8px;
    color: white;
    width: 100%;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}

.admin-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.btn-table-action {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--accent-blue);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-table-action:hover {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.search-box input {
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    width: 300px;
    outline: none;
    transition: 0.3s;
}

.search-box input:focus {
    border-color: var(--accent-blue);
    width: 350px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

/*FOOTER*/

.main-footer {
    background-color: #02040a;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-content {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3c3f46;
    font-size: 13px;
    font-family: 'Rajdhani', sans-serif;
}

.footer-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-nav a {
    color: #757d85;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

.separator {
    color: #333;
}

.floating-socials {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon img {
    width: 20px;
}

.social-icon:hover {
    background: #1a1a1a;
    transform: scale(1.1);
}

/*Cloudflare Verification Catchat v2*/
.cf-turnstile {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}