* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --dark: #0f172a;
    --dark-lighter: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.auth-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--light);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: var(--light);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--primary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--dark-lighter);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--light);
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.service-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

/* Minecraft Card with Video Background */
.minecraft-card {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.minecraft-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 18, 0.55), rgba(5, 10, 18, 0.88));
    z-index: 1;
    pointer-events: none;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    object-position: center 70%;
    opacity: 0.55;
}

.minecraft-card .service-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: var(--light);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: var(--dark);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon svg {
    color: var(--primary);
}

.advantage-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.advantage-item p {
    color: var(--gray);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-lighter);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    color: var(--light);
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .advantages-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Shop Pages Styles */
.shop-hero {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);
    text-align: center;
}

.shop-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
}

.shop-categories {
    padding: 60px 0;
    background: var(--dark-lighter);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    display: block;
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--light);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.category-video {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, var(--dark) 100%);
}

.category-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon svg {
    color: var(--light);
}

.category-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.category-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: gap 0.3s ease;
}

.category-card:hover .category-cta {
    gap: 1rem;
}

.discord-category,
.uptime-category {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.shop-features {
    padding: 80px 0;
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-lighter);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray);
}

/* Minecraft Shop Hero */
.minecraft-shop-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, var(--dark) 100%);
    z-index: 1;
}

.minecraft-shop-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.minecraft-features,
.discord-features,
.uptime-features {
    padding: 80px 0;
    background: var(--dark-lighter);
}

/* Pricing Plans */
.pricing-plans {
    padding: 80px 0;
    background: var(--dark);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--dark-lighter);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.plan-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.plan-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-price .period {
    color: var(--gray);
}

.plan-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.plan-cta {
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Supported Versions/Languages */
.supported-versions,
.supported-languages {
    padding: 60px 0;
    background: var(--dark-lighter);
}

.versions-list,
.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.version-item,
.language-item {
    background: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(99, 102, 241, 0.1);
    font-weight: 600;
    transition: all 0.3s ease;
}

.version-item:hover,
.language-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* Auth Pages */
.auth-page {
    background: var(--dark);
    min-height: 100vh;
}

.auth-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-box {
    background: var(--dark-lighter);
    border-radius: 20px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--gray);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--dark);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.forgot-password,
.link {
    color: var(--primary);
    text-decoration: none;
}

.forgot-password:hover,
.link:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(99, 102, 241, 0.1);
}

.auth-divider span {
    background: var(--dark-lighter);
    padding: 0 1rem;
    color: var(--gray);
    font-size: 0.875rem;
    position: relative;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-discord {
    background: #5865F2;
    color: var(--light);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
}

.btn-google {
    background: #fff;
    color: #333;
}

.btn-google:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

/* Dashboard Styles */
.dashboard-page {
    background: var(--dark);
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.dashboard-sidebar {
    background: var(--dark-lighter);
    border-right: 1px solid rgba(99, 102, 241, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}

.sidebar-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.sidebar-nav ul {
    list-style: none;
    flex: 1;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.sidebar-nav a svg {
    flex-shrink: 0;
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dashboard-main {
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.header-left h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.header-left p {
    color: var(--gray);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.user-info {
    text-align: right;
}

.user-name {
    display: block;
    font-weight: 600;
}

.user-email {
    display: block;
    color: var(--gray);
    font-size: 0.875rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--dark-lighter);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-blue {
    background: rgba(59, 130, 246, 0.1);
}

.stat-blue svg {
    color: #3b82f6;
}

.stat-green {
    background: rgba(34, 197, 94, 0.1);
}

.stat-green svg {
    color: #22c55e;
}

.stat-purple {
    background: rgba(168, 85, 247, 0.1);
}

.stat-purple svg {
    color: #a855f7;
}

.stat-orange {
    background: rgba(249, 115, 22, 0.1);
}

.stat-orange svg {
    color: #f97316;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: var(--gray);
    font-size: 0.875rem;
}

.quick-actions {
    margin-bottom: 2rem;
}

.quick-actions h3 {
    margin-bottom: 1rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-card {
    background: var(--dark-lighter);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon svg {
    color: var(--light);
}

.dashboard-section {
    background: var(--dark-lighter);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    font-size: 1.5rem;
}

.empty-state {
    text-align: center;
    padding: 3rem;
}

.empty-state svg {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.empty-state h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.servers-list,
.tickets-list,
.invoices-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-card,
.ticket-card,
.invoice-card {
    background: var(--dark);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.server-card:hover,
.ticket-card:hover,
.invoice-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.server-info,
.ticket-info,
.invoice-info {
    flex: 1;
}

.server-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.server-icon svg {
    color: var(--light);
}

.server-details h4,
.ticket-info h4,
.invoice-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.server-type,
.ticket-date,
.invoice-date {
    color: var(--gray);
    font-size: 0.875rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.status-suspended {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.status-terminated,
.status-closed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-open {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.status-in_progress {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-resolved,
.status-paid {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.status-pending {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.priority-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.priority-low {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.priority-normal {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.priority-high {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.priority-urgent {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.invoice-amount {
    text-align: right;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.server-actions,
.invoice-actions {
    display: flex;
    gap: 0.5rem;
}

.settings-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--dark);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.setting-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.setting-info p {
    color: var(--gray);
}

/* Responsive Dashboard */
@media (max-width: 1024px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: fixed;
        left: -280px;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .dashboard-sidebar.active {
        left: 0;
    }

    .dashboard-main {
        padding: 1rem;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .user-menu {
        width: 100%;
        justify-content: space-between;
    }

    .server-card,
    .ticket-card,
    .invoice-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .server-status,
    .ticket-status,
    .ticket-priority,
    .invoice-status,
    .invoice-amount {
        width: 100%;
        text-align: left;
    }

    .setting-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .auth-box {
        padding: 2rem;
    }

    .social-login {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ADVANCED ANIMATIONS AND EFFECTS
   ============================================ */

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delay-1 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

/* ============================================
   2026 VISUAL REFRESH
   ============================================ */

:root {
    --bg: #07111f;
    --bg-elevated: rgba(13, 24, 43, 0.82);
    --surface: rgba(17, 30, 52, 0.9);
    --surface-2: rgba(12, 22, 39, 0.92);
    --surface-3: rgba(22, 38, 67, 0.9);
    --line: rgba(148, 163, 184, 0.16);
    --text-main: #f8fbff;
    --text-soft: #c5d3ea;
    --text-muted: #8ea0bc;
    --accent: #7c3aed;
    --accent-2: #22d3ee;
    --accent-3: #60a5fa;
    --success: #34d399;
    --warning: #f59e0b;
    --danger: #f87171;
    --shadow-xl: 0 30px 80px rgba(2, 8, 23, 0.45);
    --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.34);
    --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    --gradient: linear-gradient(135deg, #7c3aed 0%, #22d3ee 55%, #60a5fa 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 32%),
        linear-gradient(180deg, #08101d 0%, #0b1323 52%, #08101b 100%);
    color: var(--text-main);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
    opacity: 0.45;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    padding: 0;
}

.navbar {
    background: rgba(6, 12, 24, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(18px);
}

.nav-content {
    min-height: 82px;
}

.logo h1,
.logo h1 a,
.sidebar-header h1,
.sidebar-header h1 a,
.footer-brand h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.nav-links {
    align-items: center;
    gap: 1rem;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--text-soft);
    padding: 0.8rem 1rem;
    border-radius: 999px;
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.auth-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-btn {
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.mobile-menu-btn span {
    width: 20px;
    border-radius: 999px;
}

.hero,
.shop-hero,
.minecraft-shop-hero,
.discord-shop-hero,
.uptime-shop-hero {
    position: relative;
    isolation: isolate;
}

.hero {
    min-height: 100vh;
    padding: 150px 0 110px;
    background:
        radial-gradient(circle at 50% 10%, rgba(34, 211, 238, 0.18), transparent 24%),
        radial-gradient(circle at 80% 0%, rgba(124, 58, 237, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(5, 10, 19, 0.88), rgba(8, 16, 30, 0.94));
}

.hero-content,
.shop-hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.hero-title,
.shop-title {
    font-size: clamp(2.9rem, 7vw, 5.25rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 1.2rem;
}

.text-gradient-animated,
.shop-title {
    background: linear-gradient(135deg, #ffffff 0%, #92f7ff 35%, #8ea0ff 72%, #d4b4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle,
.shop-subtitle {
    color: var(--text-soft);
    font-size: clamp(1.05rem, 2.2vw, 1.24rem);
    max-width: 760px;
    margin: 0 auto 2rem;
}

.btn,
.btn-outline {
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gradient);
    box-shadow: 0 18px 40px rgba(96, 165, 250, 0.24);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text-main);
}

.hero-feature,
.feature-badge,
.service-card,
.advantage-item,
.contact-item,
.category-card,
.feature-item,
.plan-card,
.stat-card,
.action-card,
.dashboard-section,
.auth-box,
.setting-item,
.server-card,
.ticket-card,
.invoice-card {
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
}

.feature-badge,
.advantage-item,
.contact-item,
.feature-item,
.plan-card,
.stat-card,
.action-card,
.dashboard-section,
.auth-box,
.setting-item,
.server-card,
.ticket-card,
.invoice-card {
    background: var(--glass), var(--surface);
    border: 1px solid var(--line);
}

.feature-badge {
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
}

.services,
.shop-categories,
.minecraft-features,
.discord-features,
.uptime-features,
.supported-versions,
.supported-languages,
.contact {
    background: transparent;
}

.advantages,
.shop-features,
.pricing-plans {
    background: transparent;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.9rem;
    margin-bottom: 3rem;
}

.section-header p,
.feature-item p,
.advantage-item p,
.contact-item p,
.footer-brand p,
.footer-column a,
.plan-features li,
.status-badge,
.priority-badge,
.server-type,
.ticket-date,
.invoice-date,
.setting-info p {
    color: var(--text-muted);
}

.services-grid,
.advantages-grid,
.contact-grid,
.categories-grid,
.features-grid,
.plans-grid,
.dashboard-stats,
.actions-grid {
    gap: 1.35rem;
}

.service-card,
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(18, 31, 54, 0.94), rgba(10, 19, 34, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card:hover,
.category-card:hover,
.plan-card:hover,
.feature-item:hover,
.contact-item:hover,
.action-card:hover,
.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(146, 247, 255, 0.34);
    box-shadow: var(--shadow-xl);
}

.service-card > *,
.category-card > * {
    position: relative;
    z-index: 1;
}

.service-card p,
.service-features li,
.category-card p {
    color: var(--text-soft);
}

.service-features li::before,
.plan-features li::before {
    color: #92f7ff;
}

.category-video,
.hero-video {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-video {
    height: 230px;
}

.category-content {
    padding: 2rem;
}

.discord-category,
.uptime-category {
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(18, 31, 54, 0.94), rgba(10, 19, 34, 0.98));
}

.category-price,
.amount,
.plan-price .price {
    color: #a5f3fc;
}

.shop-hero {
    padding: 150px 0 90px;
}

.minecraft-shop-hero,
.discord-shop-hero,
.uptime-shop-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.discord-shop-hero,
.uptime-shop-hero {
    background:
        radial-gradient(circle at top, rgba(124, 58, 237, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(5, 9, 20, 0.72), rgba(5, 9, 20, 0.92));
}

.discord-shop-hero .hero-content,
.uptime-shop-hero .hero-content,
.minecraft-shop-hero .hero-content {
    max-width: 760px;
    text-align: center;
}

.versions-list,
.languages-list {
    gap: 0.85rem;
}

.version-item,
.language-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
}

.auth-page {
    background:
        radial-gradient(circle at top, rgba(34, 211, 238, 0.12), transparent 26%),
        linear-gradient(180deg, #07101d 0%, #091221 100%);
}

.auth-container {
    padding: 8rem 1rem 2rem;
}

.auth-box {
    max-width: 520px;
    border-radius: 30px;
    padding: 2.4rem;
}

.auth-header h1 {
    font-size: 2.3rem;
}

.form-group input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    color: var(--text-main);
}

.form-group input::placeholder {
    color: #7f91ad;
}

.alert {
    border-radius: 16px;
}

.dashboard-page {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 24%),
        linear-gradient(180deg, #08111f, #091220);
}

.dashboard-layout {
    grid-template-columns: 300px 1fr;
}

.dashboard-sidebar {
    background: rgba(7, 14, 26, 0.9);
    backdrop-filter: blur(20px);
}

.dashboard-main {
    padding: 2rem;
}

.dashboard-header {
    margin-bottom: 1.6rem;
}

.dashboard-section .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-bottom: 1.5rem;
}

.dashboard-section,
.stat-card,
.action-card {
    border-radius: 24px;
}

.user-avatar {
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.28);
}

.status-badge,
.priority-badge {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-active,
.status-open {
    background: rgba(52, 211, 153, 0.12);
    color: #6ee7b7;
}

.status-paid,
.status-resolved {
    background: rgba(124, 58, 237, 0.16);
    color: #c4b5fd;
}

.status-pending,
.status-suspended {
    background: rgba(245, 158, 11, 0.12);
    color: #fcd34d;
}

.status-terminated,
.status-closed {
    background: rgba(248, 113, 113, 0.12);
    color: #fca5a5;
}

.invoice-amount {
    min-width: 110px;
}

.footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    grid-template-columns: minmax(240px, 1.1fr) minmax(0, 1.6fr);
}

.footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 960px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        border-radius: 24px;
        background: rgba(8, 14, 26, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow-xl);
    }

    .nav-links.active,
    .mobile-menu-btn {
        display: flex;
    }

    .auth-links {
        flex-direction: column;
        width: 100%;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: relative;
        height: auto;
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 768px) {
    .hero,
    .shop-hero,
    .minecraft-shop-hero,
    .discord-shop-hero,
    .uptime-shop-hero {
        padding-top: 128px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-main,
    .auth-box {
        padding: 1.35rem;
    }

    .dashboard-section .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .server-card,
    .ticket-card,
    .invoice-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.service-logo-wrap,
.category-logo-shell,
.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-logo-wrap,
.category-logo-shell {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-logo-wrap {
    padding: 0.75rem;
}

.service-logo,
.category-logo,
.hero-brand-logo {
    display: block;
    object-fit: contain;
}

.service-logo {
    width: 100%;
    height: 100%;
}

.category-logo-shell {
    width: 94px;
    height: 94px;
    border-radius: 22px;
    margin-bottom: 1.4rem;
}

.category-logo {
    width: 68px;
    height: 68px;
}

.hero-brand {
    width: 124px;
    height: 124px;
    margin: 0 auto 1.35rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.hero-brand-logo {
    width: 84px;
    height: 84px;
}

/* Site entrance animation */
body.page-enter {
    overflow-x: hidden;
}

body.page-enter .navbar,
body.page-enter main,
body.page-enter section,
body.page-enter footer,
body.page-enter .dashboard-layout,
body.page-enter .auth-container {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

body.page-ready .navbar,
body.page-ready main,
body.page-ready section,
body.page-ready footer,
body.page-ready .dashboard-layout,
body.page-ready .auth-container {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.page-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(34, 211, 238, 0.15), transparent 25%),
        radial-gradient(circle at bottom, rgba(124, 58, 237, 0.2), transparent 30%),
        rgba(5, 10, 18, 0.96);
    backdrop-filter: blur(18px);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-intro__inner {
    min-width: min(420px, 92vw);
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow-xl);
    animation: intro-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-intro__logo {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-intro__bar {
    width: min(260px, 72vw);
    height: 8px;
    margin: 0 auto 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.page-intro__bar span {
    display: block;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background: var(--gradient);
    animation: intro-load 1s ease forwards;
}

.page-intro__text {
    color: var(--text-soft);
    font-size: 0.96rem;
    letter-spacing: 0.04em;
}

.page-intro--hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes intro-pop {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes intro-load {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Dashboard application layout */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.16);
    color: #d8c3ff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dashboard-header {
    gap: 1rem;
}

.dashboard-header .header-left {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.dashboard-header .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.16);
}

.dashboard-hero {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.6rem;
}

.dashboard-hero-main,
.health-card {
    background: var(--glass), var(--surface);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
}

.dashboard-hero-main {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
    gap: 1rem;
    padding: 1.6rem;
}

.dashboard-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-hero-copy h3 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.04;
}

.dashboard-hero-copy p {
    color: var(--text-soft);
    max-width: 58ch;
}

.dashboard-hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.mini-metric {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-metric-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
}

.mini-metric strong {
    font-size: 1.4rem;
}

.dashboard-health-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.health-card {
    padding: 1.25rem;
}

.health-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.84rem;
    margin-bottom: 0.45rem;
}

.health-card strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.55rem;
}

.health-card p,
.section-caption,
.activity-date {
    color: var(--text-muted);
}

.stat-card-accent {
    background:
        radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 32%),
        var(--glass),
        var(--surface);
}

.stat-icon span {
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.action-card {
    align-items: flex-start;
}

.action-card strong {
    font-size: 1rem;
}

.action-card span {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.servers-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.server-card-detailed {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 1rem;
}

.server-main,
.server-side,
.server-heading,
.ticket-meta {
    display: flex;
}

.server-main {
    flex-direction: column;
    gap: 1rem;
}

.server-heading {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.server-side {
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.server-kpi {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.server-kpi span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.server-kpi strong {
    font-size: 1.1rem;
}

.server-resources {
    display: grid;
    gap: 0.85rem;
}

.resource-meter {
    display: grid;
    gap: 0.45rem;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.resource-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.resource-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--gradient);
}

.dashboard-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.ticket-card,
.invoice-card {
    justify-content: space-between;
}

.ticket-meta {
    align-items: center;
    gap: 0.6rem;
}

.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 1rem;
    align-items: flex-start;
}

.activity-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 0.3rem;
    background: var(--gradient);
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.14);
}

.activity-content {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.activity-content strong {
    display: block;
    margin-bottom: 0.35rem;
}

.activity-content p {
    color: var(--text-soft);
    margin-bottom: 0.55rem;
}

@media (max-width: 1100px) {
    .dashboard-hero-main,
    .dashboard-dual-grid,
    .dashboard-health-grid,
    .server-card-detailed {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-header .header-right,
    .server-heading,
    .ticket-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-status-pill {
        width: 100%;
        justify-content: flex-start;
    }
}

.floating-delay-2 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-delay-3 {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.pulse-slow {
    animation: pulse 3s ease-in-out infinite;
}

/* Glow Effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.5),
                    0 0 10px rgba(99, 102, 241, 0.3),
                    0 0 15px rgba(99, 102, 241, 0.1);
    }
    50% {
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.8),
                    0 0 20px rgba(99, 102, 241, 0.5),
                    0 0 30px rgba(99, 102, 241, 0.3);
    }
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

.glow-purple {
    animation: glow 2s ease-in-out infinite;
    animation-name: glow-purple;
}

@keyframes glow-purple {
    0%, 100% {
        box-shadow: 0 0 5px rgba(139, 92, 246, 0.5),
                    0 0 10px rgba(139, 92, 246, 0.3),
                    0 0 15px rgba(139, 92, 246, 0.1);
    }
    50% {
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.8),
                    0 0 20px rgba(139, 92, 246, 0.5),
                    0 0 30px rgba(139, 92, 246, 0.3);
    }
}

/* Gradient Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animated {
    background: linear-gradient(-45deg, #6366f1, #8b5cf6, #ec4899, #06b6d4);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate {
    animation: rotate 20s linear infinite;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* Shake Animation */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.shake:hover {
    animation: shake 0.5s ease-in-out;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 0.6s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.6s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.6s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

/* Slide In Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

/* Scale Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* Particle Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: particle-float 15s infinite;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Enhanced Button Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

/* Enhanced Card Hover Effects */
.service-card:hover,
.category-card:hover,
.plan-card:hover,
.server-card:hover,
.ticket-card:hover,
.invoice-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.3);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Neon Border Effect */
.neon-border {
    position: relative;
    border: 2px solid var(--primary);
    box-shadow: 0 0 5px var(--primary),
                0 0 10px var(--primary),
                0 0 20px var(--primary),
                0 0 40px var(--primary);
}

/* Text Gradient Animation */
@keyframes text-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.text-gradient-animated {
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #06b6d4, #6366f1);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-gradient 4s linear infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* Typing Effect */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typing {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--primary);
    animation: typing 3s steps(40, end), blink 0.75s step-end infinite;
}

/* Morphing Background */
@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.morphing {
    animation: morph 8s ease-in-out infinite;
}

/* Wave Animation */
@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(5px);
    }
}

.wave {
    animation: wave 2s ease-in-out infinite;
}

/* Spotlight Effect */
.spotlight {
    position: relative;
}

.spotlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.spotlight:hover::before {
    opacity: 1;
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Magnetic Button Effect */
.magnetic {
    transition: transform 0.3s ease;
}

/* Glitch Effect */
@keyframes glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

.glitch:hover {
    animation: glitch 0.3s ease-in-out infinite;
}

/* Loading Spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    border: 3px solid rgba(99, 102, 241, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Progress Bar Animation */
@keyframes progress {
    from {
        width: 0;
    }
}

.progress-bar {
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    animation: progress 2s ease-out;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    animation: countUp 0.5s ease-out;
}

/* Parallax Effect */
.parallax {
    transform: translateZ(0);
    transition: transform 0.1s ease-out;
}

/* Scroll Indicator */
@keyframes scroll-down {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

.scroll-indicator {
    animation: scroll-down 2s ease-in-out infinite;
}

/* Icon Bounce */
@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-5deg);
    }
    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.icon-bounce:hover {
    animation: icon-bounce 0.5s ease-in-out infinite;
}

/* Background Pattern Animation */
@keyframes pattern-move {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 50px 50px;
    }
}

.pattern-animated {
    background-image: radial-gradient(circle at 1px 1px, rgba(99, 102, 241, 0.15) 1px, transparent 0);
    background-size: 50px 50px;
    animation: pattern-move 20s linear infinite;
}

/* Glassmorphism Enhanced */
.glass-enhanced {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Apply animations to existing elements */
.hero-title {
    animation: fadeIn 1s ease-out, float 6s ease-in-out infinite;
}

.hero-subtitle {
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-cta {
    animation: fadeIn 1s ease-out 0.6s both;
}

.service-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-badge {
    animation: pulse 2s ease-in-out infinite;
}

.btn-primary {
    animation: fadeIn 0.5s ease-out;
}

.btn-secondary {
    animation: fadeIn 0.5s ease-out 0.2s both;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.logo h1 {
    animation: fadeIn 0.5s ease-out;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.scroll-animate-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scroll-animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation for Grid Items */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

.stagger-6 {
    animation-delay: 0.6s;
}
