/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d9ff;
    --secondary-color: #0066ff;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
    --card-bg: #131a35;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --blue-gradient: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hide scrollbar but keep functionality - All browsers */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body::-webkit-scrollbar {
    display: none;
    width: 0 !important;
    height: 0 !important;
}

html::-webkit-scrollbar {
    display: none;
    width: 0 !important;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 0 0 10px var(--primary-color);
    }
    25% {
        text-shadow: -2px 0 var(--primary-color), 2px 2px var(--secondary-color);
    }
    50% {
        text-shadow: 2px -2px var(--secondary-color), -2px 2px var(--primary-color);
    }
    75% {
        text-shadow: -2px -2px var(--primary-color), 2px 0 var(--secondary-color);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--blue-gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FEATURES ===== */
.features {
    background: rgba(19, 26, 53, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
    text-align: center;
    position: relative;
}

.feature-card.premium {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(19, 26, 53, 1) 100%);
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.feature-card.premium:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card.premium .feature-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card.premium h3 {
    color: #ffd700;
}

.feature-card p {
    color: var(--text-secondary);
}

/* ===== COMMANDS ===== */
.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.command-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.command-card.premium-card {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(19, 26, 53, 1) 100%);
}

.command-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.command-card.premium-card:hover {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.command-header {
    background: var(--blue-gradient);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.command-header.premium-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
}

.command-header i {
    font-size: 2rem;
}

.command-header h3 {
    font-size: 1.3rem;
}

.command-list {
    list-style: none;
    padding: 1.5rem;
}

.command-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.command-list li:last-child {
    border-bottom: none;
}

.command-list code {
    background: rgba(0, 217, 255, 0.1);
    padding: 3px 8px;
    border-radius: 5px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.premium-card .command-list code {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

/* ===== ADD BOT SECTION ===== */
.add-bot {
    background: rgba(19, 26, 53, 0.3);
    text-align: center;
}

.add-bot-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.add-bot-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.add-bot-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.form-container {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.form-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.form-group input::placeholder {
    color: var(--text-secondary);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.response-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    animation: slideIn 0.3s ease-out;
    transition: opacity 0.3s ease;
    white-space: pre-line;
}

.response-message.success {
    display: block;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

.response-message.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
}

.response-message.loading {
    display: block;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--primary-color);
}

.response-message.info {
    display: block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.response-message button {
    margin-top: 1rem;
}

.info-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.info-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.info-box ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-box ol li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.note {
    background: rgba(0, 217, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    gap: 1rem;
    align-items: start;
}

.note i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.note p {
    margin: 0;
    color: var(--text-secondary);
}

.divider {
    margin: 3rem 0;
    position: relative;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 217, 255, 0.2);
}

.divider span {
    position: relative;
    background: var(--dark-bg);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.alternative-method {
    margin-top: 2rem;
}

.alternative-method h3 {
    margin-bottom: 0.5rem;
}

.alternative-method p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.response-message.success {
    animation: slideIn 0.3s ease-out, pulse 0.5s ease-in-out;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.footer p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .add-bot-content h2 {
        font-size: 2rem;
    }

    .add-bot-form {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.command-card,
.contact-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}


/* ===== SUBSCRIPTION CARD ===== */
.subscription-card {
    background: rgba(0, 217, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.subscription-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sub-details {
    display: grid;
    gap: 0.8rem;
}

.sub-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.sub-item:last-child {
    border-bottom: none;
}

.sub-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.sub-value {
    color: var(--text-primary);
    font-weight: 600;
}

.sub-value code {
    background: rgba(0, 217, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--primary-color);
}

.text-warning {
    color: #ffd700 !important;
}

.text-success {
    color: #00ff00 !important;
}

.sub-warning {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #ffd700;
    color: #ffd700;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* ===== CHECK TOKEN STATUS SECTION ===== */
.check-status {
    background: rgba(19, 26, 53, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.status-check-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.status-form-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    height: fit-content;
    width: 100%;
    max-width: 500px;
}

.status-result-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    animation: slideIn 0.3s ease-out;
    width: 100%;
    max-width: 700px;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.status-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.status-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.status-badge.status-active {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    color: #00ff00;
}

.status-badge.status-warning {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    color: #ffd700;
}

.status-badge.status-expired {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
}

.status-details {
    background: rgba(0, 217, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.status-item:last-child {
    border-bottom: none;
}

.status-label {
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-label i {
    color: var(--primary-color);
}

.status-value {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.status-value code {
    background: rgba(0, 217, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.countdown-container {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.countdown-container h4 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    min-width: 80px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.renewal-warning {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.renewal-warning i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.renewal-warning p {
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 500;
}

.renewal-warning .btn {
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .status-check-container {
        flex-direction: column;
        align-items: center;
    }
    
    .status-form-card,
    .status-result-card {
        max-width: 100%;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 0.8rem 1rem;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 0.5rem 0.8rem;
        min-width: 50px;
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}


/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-container {
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.loading-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite, rotate 3s linear infinite;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(0, 217, 255, 0.8);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading-title {
    font-size: 2.5rem;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: bold;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 217, 255, 1);
    }
}

.loading-bar-container {
    margin-bottom: 1rem;
}

.loading-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.loading-bar-fill {
    height: 100%;
    background: var(--blue-gradient);
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.loading-percentage {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.loading-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 1.5rem 0;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading-console {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    margin-top: 2rem;
    max-height: 180px;
    overflow: hidden;
}

.console-line {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInLine 0.5s ease forwards;
}

.console-line:nth-child(1) {
    animation-delay: 0.2s;
}

.console-line:nth-child(2) {
    animation-delay: 0.6s;
}

.console-line:nth-child(3) {
    animation-delay: 1s;
}

.console-line:nth-child(4) {
    animation-delay: 1.4s;
}

.console-line:nth-child(5) {
    animation-delay: 1.8s;
    color: #00ff00;
}

@keyframes fadeInLine {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .loading-logo {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .loading-title {
        font-size: 2rem;
    }
    
    .loading-console {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
}
