/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00e5ff;
    --secondary: #9d00ff;
    --accent: #ff00ff;
    --dark: #0a0a1a;
    --dark-light: #1a1a2e;
    --darker: #050510;
    --text: #ffffff;
    --text-light: #b8c2cc;
    --success: #00ff9d;
    --warning: #ffb300;
    --danger: #ff4757;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    --gradient-horizontal: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    --glow: 0 0 15px rgba(0, 229, 255, 0.5);
    --glow-strong: 0 0 25px rgba(0, 229, 255, 0.8);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
    background: radial-gradient(ellipse at top, var(--dark) 0%, var(--darker) 70%);
    min-height: 100vh;
}

/* Enhanced Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Enhanced Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, var(--dark), var(--dark-light));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
    border: 2px solid var(--dark);
    box-shadow: var(--glow);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-horizontal);
    box-shadow: var(--glow-strong);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Navigation - COMPACT SIZE */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text);
}

.logo i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 1.5rem;
}

.logo-text {
    font-weight: 900;
}

.logo-highlight {
    color: var(--primary);
    text-shadow: var(--glow);
}

.nav-menu {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--text);
    background: rgba(0, 229, 255, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.nav-btn {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section - COMPACT SIZE */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 3rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.stat i {
    font-size: 1.8rem;
    color: var(--primary);
}

.stat h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    text-align: left;
}

.stat p {
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: left;
}

/* Sections - COMPACT SIZE */
section {
    padding: 3rem 1.5rem;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features - COMPACT SIZE */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--glow-strong);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: var(--glow);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

/* Plans Section - COMPACT SIZE */
.plans-section {
    background: rgba(10, 10, 26, 0.5);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--glow-strong);
}

.plan-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}

.plan-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 15px;
    box-shadow: var(--glow);
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.plan-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.plan-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.plan-desc {
    color: var(--text-light);
    font-size: 0.85rem;
}

.plan-features {
    margin-bottom: 1.5rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-feature i {
    color: var(--primary);
    width: 18px;
    font-size: 0.9rem;
}

.plan-feature span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-plan {
    display: block;
    text-align: center;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
    cursor: pointer;
    border: none;
    width: 100%;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-strong);
}

.plan-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.plan-card:hover .plan-glow {
    opacity: 1;
}

/* CTA Section - COMPACT SIZE */
.cta {
    background: var(--gradient);
    text-align: center;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Footer - COMPACT SIZE */
.footer {
    background: var(--dark);
    padding: 3rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.footer-logo i {
    color: var(--primary);
}

.footer-logo span span {
    color: var(--primary);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Order Modal - COMPACT SIZE */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.order-modal-content {
    background: var(--dark-light);
    border-radius: 15px;
    padding: 2rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 1px solid var(--primary);
    box-shadow: var(--glow-strong);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-order-modal {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.close-order-modal:hover {
    color: var(--primary);
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.order-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.order-modal-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-modal {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-modal:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-strong);
}

.modal-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* Admin Panel Styles */
.admin-panel {
    min-height: 100vh;
    background: var(--darker);
    position: relative;
}

.admin-container {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-title h1 {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.admin-actions {
    display: flex;
    gap: 1rem;
}

.admin-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-nav-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-family: inherit;
}

.admin-nav-btn:hover, .admin-nav-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.admin-section {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.admin-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.3rem;
    color: var(--text);
}

.btn-admin {
    padding: 0.7rem 1.2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-admin:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.admin-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.admin-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.admin-form .form-group {
    margin-bottom: 1.2rem;
}

.admin-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table th {
    color: var(--text-light);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.action-btns {
    display: flex;
    gap: 0.5rem;
}

.btn-action {
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-edit {
    background: rgba(0, 229, 255, 0.2);
    color: var(--primary);
}

.btn-delete {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.btn-action:hover {
    transform: translateY(-2px);
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active {
    background: rgba(0, 255, 157, 0.2);
    color: #00ff9d;
}

.status-pending {
    background: rgba(255, 179, 0, 0.2);
    color: #ffb300;
}

.status-inactive {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
}

.logout-btn {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.logout-btn:hover {
    background: rgba(255, 71, 87, 0.3);
}

.message {
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
    font-size: 0.9rem;
}

.message.success {
    background: rgba(0, 255, 157, 0.2);
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: #00ff9d;
}

.message.error {
    background: rgba(255, 71, 87, 0.2);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

/* Admin Login */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--darker);
    position: relative;
}

.login-container {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 2.5rem;
    width: 100%;
    max-width: 380px;
    border: 1px solid var(--primary);
    box-shadow: var(--glow-strong);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.login-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.login-form .form-group {
    margin-bottom: 1.2rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.login-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2);
}

.btn-login {
    width: 100%;
    padding: 0.8rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: var(--glow);
    font-family: inherit;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.login-error-message {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
    font-size: 0.9rem;
}

/* Admin Plan Modal */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.admin-modal-content {
    background: var(--dark-light);
    border-radius: 15px;
    padding: 2rem;
    max-width: 550px;
    width: 100%;
    position: relative;
    border: 1px solid var(--primary);
    box-shadow: var(--glow-strong);
    animation: modalSlideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.close-admin-modal {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.close-admin-modal:hover {
    color: var(--primary);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-strong);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        padding: 0.8rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        gap: 0.5rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    /* Mobile Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat {
        width: 100%;
        max-width: 280px;
    }
    
    /* Mobile Sections */
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Mobile Admin Panel */
    .admin-nav {
        flex-direction: column;
    }
    
    .admin-nav-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .action-btns {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-actions {
        width: 100%;
        justify-content: center;
    }
    
    .admin-modal-content {
        padding: 1.5rem 1rem;
    }
    
    .admin-table {
        font-size: 0.8rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .plan-card {
        padding: 1.2rem;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
    
    /* Mobile Admin Panel */
    .admin-container {
        padding: 1rem;
    }
    
    .admin-section {
        padding: 1rem;
    }
    
    .admin-card {
        padding: 1rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .btn-admin {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .login-container {
        padding: 2rem 1.5rem;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
}