:root {
    --bg-color: #0d0e15;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-color: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary-color: #ec4899;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(13, 14, 21, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5%;
    min-height: 80vh;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-glow {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 0 20px var(--primary-glow);
    display: inline-block;
}

.btn-glow:hover {
    box-shadow: 0 0 30px var(--primary-color);
    transform: translateY(-2px);
}

/* Hero Graphics */
.hero-graphics {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    height: 400px;
}

.circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.4;
    top: 50px;
    animation: move 8s infinite alternate ease-in-out;
}

.circle-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--secondary-color);
    filter: blur(100px);
    opacity: 0.3;
    bottom: 0;
    right: 50px;
    animation: move-reverse 10s infinite alternate ease-in-out;
}

@keyframes move {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(-30px) translateX(30px);
    }
}

@keyframes move-reverse {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(30px) translateX(-30px);
    }
}

.glass-card {
    position: relative;
    width: 350px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-10deg) rotateX(10deg);
    transition: transform 0.5s;
}

.glass-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.server-status {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.green {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

.blue {
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

.purple {
    background: #8b5cf6;
    box-shadow: 0 0 10px #8b5cf6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 5%;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.billing-toggle span {
    font-weight: 300;
    transition: color 0.3s;
}

.billing-toggle span.active {
    font-weight: 600;
    color: var(--primary-color);
}

.badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #334155;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Cards */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 350px;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-end;
}

.currency {
    font-size: 1.5rem;
    margin-right: 5px;
    color: var(--text-muted);
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-left: 5px;
    margin-bottom: 10px;
}

.card ul {
    list-style: none;
    margin-bottom: 3rem;
}

.card ul li {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.btn-buy,
.btn-buyglow {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-buy {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-buy:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-buyglow {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.btn-buyglow:hover {
    background: #4f46e5;
}

.popular {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 10px var(--primary-glow);
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 5rem;
    color: var(--text-muted);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    margin: 10% auto;
    padding: 2.5rem;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
}

.form-group {
    margin: 1.5rem 0;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: white;
}

.payment-note {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}