:root {
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --color-bg: #ffffff;
    --color-text-main: #0c0e12;
    --color-text-muted: #64748b;
    --color-blue: #a855f7;
    --color-blue-hover: #9333ea;
    --color-card-bg: #ffffff;
    
    /* Modern, layered premium shadows */
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.08), 
                      0 1px 3px rgba(0, 0, 0, 0.02),
                      0 0 1px rgba(0, 0, 0, 0.05);
    --shadow-btn: 0 10px 25px -6px rgba(168, 85, 247, 0.35);
    --shadow-btn-hover: 0 14px 30px -4px rgba(168, 85, 247, 0.5);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Subtle Tech/Grid Decorative Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(0, 0, 0, 0.02) 1.5px, transparent 1.5px),
        radial-gradient(rgba(0, 0, 0, 0.015) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    z-index: -1;
    pointer-events: none;
}

/* Minimalist Header */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1200px;
    background: #09090b;
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: none;
    padding: 0.65rem 1.5rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
}

.logo-icon {
    width: 20px;
    height: 20px;
    color: var(--color-blue);
}

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

.nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a0aec0;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-dashboard {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.btn-dashboard:hover {
    background: #f1f5f9;
    border-color: #f1f5f9;
}


.badge-new {
    background-color: #10b981;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 9999px;
    margin-right: 0.4rem;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    letter-spacing: 0.5px;
}

.status-link:hover {
    background-color: #e2e8f0;
    transform: translateY(-1px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981; /* Emerald Green */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #10b981;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(8, 10, 15, 0.75), rgba(8, 10, 15, 0.75)), url('bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 1.5rem 80px 1.5rem;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.05;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.2px;
    margin-bottom: 1.5rem;
}

/* Wavy divider at the bottom of the hero section */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

.hero-btn-about {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: #0c0e12 !important;
    background-color: #ffffff !important;
    border: none;
    border-radius: 12px;
    padding: 0.5rem 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 3rem;
}

.hero-btn-about:hover {
    background-color: #f1f5f9;
    transform: translateY(-1px);
}

.hero-btn-about:active {
    transform: translateY(1px);
}

/* Community Stats Bar styles */
.hero-stats {
    display: flex;
    gap: 6rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 3.5rem;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-numbers {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

/* Hover highlights to pure white and adds shadow glow ONLY for Discord link */
.stat-link-item:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.stat-link-item:hover .stat-numbers {
    color: #ffffff;
}

.stat-link-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateY(3px);
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-main);
}

.scroll-indicator svg {
    color: var(--color-text-main);
    animation: bounce 2s infinite;
}

/* Plans Section */
.plans-section {
    padding: 10rem 1.5rem;
    background-color: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plans-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.75px;
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

/* Hosting Card Styling */
.plan-card {
    background-color: var(--color-card-bg);
    width: 100%;
    max-width: 320px;
    border-radius: 28px;
    padding: 2.2rem 2rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.12), 
                0 2px 8px rgba(0, 0, 0, 0.02),
                0 0 1px rgba(0, 0, 0, 0.08);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.logo-wrapper {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fivem-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.server-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-left: 1rem;
    letter-spacing: -0.5px;
}

/* Specs List */
.specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
}

.specs-list li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.spec-icon {
    width: 42px;
    height: 42px;
    background-color: #f8fafc;
    color: var(--color-text-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    transition: var(--transition-smooth);
}

.plan-card:hover .spec-icon {
    background-color: #f1f5f9;
}

.spec-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.2px;
}

.spec-label {
    color: var(--color-text-muted);
    font-weight: 500;
}

.spec-value {
    margin-left: auto;
    font-weight: 700;
    color: var(--color-text-main);
}

/* Rounded, borderless button with blue background */
.btn-buy {
    width: 100%;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--color-blue);
    border: none;
    border-radius: 9999px; /* Seamless rounded corners */
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.15);
    transition: var(--transition-smooth);
    outline: none;
}

.btn-buy:hover {
    background-color: var(--color-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 82, 255, 0.25);
}

.btn-buy:active {
    transform: translateY(1px);
}

/* Footer styling */
.footer {
    padding: 4rem 1.5rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.7;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    .header {
        padding: 1.5rem;
    }
    .plans-section {
        padding: 6rem 1.5rem;
    }
    .plans-title {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }
}

/* Modal Overlay: White Glassmorphism styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--color-card-bg);
    width: 90%;
    max-width: 1100px;
    border-radius: 36px;
    padding: 4.5rem 3rem;
    box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.12);
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f8fafc;
    border: none;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background-color: #f1f5f9;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3.5rem;
    letter-spacing: -0.75px;
    color: var(--color-text-main);
}

.modal-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.modal-card {
    background-color: #f8fafc;
    width: 100%;
    max-width: 310px;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.modal-card:hover {
    transform: translateY(-5px);
    background-color: #f1f5f9;
}

.modal-icon {
    width: 54px;
    height: 54px;
    background-color: #ffffff;
    color: var(--color-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.modal-card:hover .modal-icon {
    background-color: var(--color-blue);
    color: #ffffff;
}

.modal-icon svg {
    width: 24px;
    height: 24px;
}

.modal-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
    letter-spacing: -0.2px;
}

.modal-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .modal-content {
        padding: 3rem 2rem;
        border-radius: 28px;
        overflow-y: auto;
        max-height: 90vh;
    }
    .modal-title {
        margin-bottom: 2.5rem;
    }
}

/* Discord Setup Modal Styling */
.discord-setup-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    text-align: left;
}

.setup-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-blue);
    color: #ffffff;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-top: 2px;
}

.step-link {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.step-link:hover {
    text-decoration: underline;
    color: var(--color-blue-hover);
}

.copy-box {
    display: flex;
    align-items: center;
    background-color: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    gap: 1rem;
    width: 100%;
}

.copy-box code {
    font-family: monospace;
    color: var(--color-text-main);
    font-size: 0.9rem;
    word-break: break-all;
    flex-grow: 1;
}

.btn-copy {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-copy:hover {
    background-color: #f1f5f9;
    border-color: #cbd5e1;
}

.discord-input-group {
    margin-bottom: 2rem;
    text-align: left;
}

.discord-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.discord-input:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
}

.discord-modal-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-save-discord {
    background-color: var(--color-blue);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: var(--transition-smooth);
}

.btn-save-discord:hover {
    background-color: var(--color-blue-hover);
    box-shadow: var(--shadow-btn-hover);
    transform: translateY(-2px);
}

.btn-save-discord:active {
    transform: translateY(0);
}

/* User Profile in Header */
.user-avatar-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #f8fafc;
    border: none;
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
    border-radius: 9999px;
    color: var(--color-text-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.user-avatar-pill:hover {
    background-color: #f1f5f9;
}

.user-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #e2e8f0;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    min-width: 140px;
    z-index: 100;
}

.user-dropdown.active {
    display: flex;
}

.dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ef4444;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition-smooth);
    width: 100%;
}

.dropdown-item:hover {
    background-color: #fef2f2;
}

.dropdown-item-info {
    color: var(--color-text-main) !important;
    text-decoration: none;
    display: block;
}

.dropdown-item-info:hover {
    background-color: #f1f5f9 !important;
}

/* Discord Login Button and Modal Links */
.btn-discord-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #5865f2;
    color: #ffffff;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 16px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.btn-discord-login:hover {
    background: #4752c4;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.btn-discord-login:active {
    transform: translateY(0);
}

.discord-settings-link:hover {
    color: var(--color-blue-hover) !important;
    text-decoration: underline !important;
}

/* Guns.lol Style Pricing Section (Light Theme on White Background) */
.plans-section {
    padding: 10rem 1.5rem;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.plans-title-new {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0c0e12;
    text-align: center;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    letter-spacing: -0.2px;
}

.plans-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .plans-grid-new {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.plan-card-new {
    background: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.plan-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.08);
}

.plan-card-new.featured {
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
    border: none;
    box-shadow: 0 15px 45px rgba(168, 85, 247, 0.06);
}

.card-badge-new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #0f0d15;
    border: none;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    letter-spacing: 0.2px;
}

.card-header-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.diamond-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.diamond-svg-icon {
    width: 24px;
    height: 24px;
}

.plan-name-new {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0c0e12;
}

.card-price-new {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.price-amount-new {
    font-size: 2.25rem;
    font-weight: 900;
    color: #0c0e12;
}

.price-period-new {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-left: 0.2rem;
}

.price-subtext-new {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-description-new {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.specs-list-new {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.specs-list-new li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.check-icon-new {
    width: 16px;
    height: 16px;
    color: #10b981;
}

.check-icon-new.purple {
    color: #10b981;
}

.card-footer-new {
    margin-top: auto;
    width: 100%;
}

.btn-action-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-outline-new {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #0c0e12;
}

.btn-outline-new:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.2);
}

.btn-filled-new {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.btn-filled-new:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: #ffffff;
    box-shadow: var(--shadow-btn);
}

/* Wavy divider at the bottom of the hero section */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

/* Status Dot and Pulse animation */
.status-link-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #10b981;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Hero Glow Effects */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* User pill in floating header */
.user-avatar-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.user-avatar-pill:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: #09090b;
    border: none;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    min-width: 160px;
    z-index: 1000;
}

.user-dropdown.active {
    display: flex;
}

.user-dropdown .dropdown-item {
    color: #f83b3b;
}

.user-dropdown .dropdown-item:hover {
    background-color: rgba(239, 68, 68, 0.1);
}

.user-dropdown .dropdown-item-info {
    color: #ffffff !important;
}

.user-dropdown .dropdown-item-info:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}
