:root {
    --deep: #000000;
    --card: #111111;
    --border: #444444;
    --white: #ffffff;
    --gray: #2b2b2b;
    --primary: #ffffff;
    --secondary: #bbbbbb;
    --roblox-red: #ff0000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--deep);
    color: var(--white);
    position: relative;
}
html, body {
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    background-repeat: repeat;
    z-index: 0;
}
@keyframes grid {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 64px 64px, 64px 64px; }
}
nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--deep);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav .logo {
    position: absolute;
    left: 1rem;
    height: 120px;
}
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    z-index: 1100;
}
nav ul {
    display: flex;
    list-style: none;
    margin: 0 auto;
    gap: 2rem;
}
nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.05rem;
    opacity: 0.85;
    transition: 0.3s;
}
nav ul li a:hover {
    opacity: 1;
    color: #ccc;
}
.hero, .pricing, .features-section, .testimonials, .faq, footer {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    background: linear-gradient(90deg,#ffffff,#cccccc);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.4rem;
    max-width: 750px;
    opacity: 0.9;
    margin-bottom: 3rem;
}
.hero .buttons { display: flex; gap: 1rem; }
.btn {
    padding: 1.1rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}
.btn:hover { background: var(--white); color: #000; }
.btn-extension { border-color: var(--secondary); color: var(--secondary); }
.btn-extension:hover { background: var(--secondary); color: #000; }
.pricing { padding: 6rem 2rem 4rem 2rem; }
.pricing h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 5rem;
    background: linear-gradient(90deg,#ffffff,#cccccc);
    -webkit-background-clip: text;
    color: transparent;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.card {
    background: rgba(17,17,17,0.85);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.card:hover {
    transform: translateY(-15px);
    border-color: var(--white);
    box-shadow: 0 20px 50px rgba(255,255,255,0.15);
}
.popular { border: 2px solid var(--white); }
.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    color: #000;
    padding: 3px 8px;
    font-weight: 800;
    font-size: 0.65rem;
    border-radius: 4px;
}
.card h3 { font-size: 1.8rem; text-align: center; margin-bottom: 1rem; }
.price { font-size: 2.5rem; font-weight: 900; color: var(--white); text-align: center; margin: 1rem 0; }
.features { list-style: none; margin: 1.5rem 0; padding-left: 0; flex-grow: 1; }
.features li { padding: 0.5rem 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.features-section { padding: 6rem 2rem; display: flex; flex-direction: column; align-items: center; }
.features-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(90deg,#ffffff,#cccccc);
    -webkit-background-clip: text;
    color: transparent;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    width: 100%;
}
.feature-box {
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 2.3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}
.feature-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 60%);
    opacity: 0;
    transition: 0.35s ease;
    z-index: 1;
}
.feature-box:hover::after { opacity: 1; }
.feature-box:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.35); box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
.icon-wrapper {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem auto;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}
.feature-box:hover .icon-wrapper {
    transform: scale(1.1);
    border-color: rgba(255,255,255,0.4);
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.08));
}
.icon-wrapper i { font-size: 2rem; color: #fff; opacity: 0.9; }
.feature-box p { font-size: 1.25rem; font-weight: 700; margin-top: 0.5rem; letter-spacing: 0.5px; }
.feature-box .feature-desc { font-size: 1rem; margin-top: 0.5rem; display: block; }
.testimonials { padding: 6rem 2rem; }
.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(90deg,#ffffff,#cccccc);
    -webkit-background-clip: text;
    color: transparent;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial {
    background: rgba(17,17,17,0.85);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: 0.3s ease;
}
.testimonial:hover { transform: scale(1.03); background: var(--gray); }
.testimonial p { font-size: 1rem; line-height: 1.6rem; margin-bottom: 1rem; }
.faq { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.faq h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(90deg,#ffffff,#cccccc);
    -webkit-background-clip: text;
    color: transparent;
}
.faq-item {
    background: rgba(17,17,17,0.85);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item h4 { margin-bottom: 0.5rem; }
.faq-answer {
    height: auto !important;
    overflow: visible !important;
    padding: 1rem 0;
}
.faq-item.active .faq-answer { padding: 1rem 0; }
#chat-container { position: fixed; bottom: 20px; right: 20px; z-index: 2000; font-family: 'Inter', sans-serif; display: flex; flex-direction: column; align-items: flex-end; }
#chat-bubble {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}
#chat-bubble:hover { transform: scale(1.1); }
#chat-bubble i { color: #000; font-size: 1.5rem; }
#chat-box {
    display: none;
    width: 320px;
    max-height: 400px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    overflow: hidden;
    flex-direction: column;
    margin-top: 10px;
}
#chat-header {
    background: var(--primary);
    color: #000;
    padding: 0.8rem 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}
#chat-header #chat-close { cursor: pointer; font-size: 1.2rem; }
#chat-questions { display: flex; flex-direction: column; padding: 0.8rem; gap: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.chat-question {
    background: rgba(255,255,255,0.05);
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    text-align: left;
    transition: 0.2s;
}
.chat-question:hover { background: rgba(255,255,255,0.15); }
#chat-answer { padding: 0.8rem; font-size: 0.95rem; line-height: 1.3rem; overflow-y: auto; flex-grow: 1; max-height: 200px; }
footer {
    padding: 4rem 2rem;
    background: rgba(0,0,0,0.85);
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}
footer div { min-width: 180px; }
footer h4 { font-weight: 700; margin-bottom: 1rem; }
footer ul { list-style: none; padding-left: 0; display: flex; flex-direction: column; align-items: center; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a { color: #fff; text-decoration: none; opacity: 0.8; }
footer ul li a:hover { opacity: 1; }
.social-icons { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.social-icons a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.05); transition: 0.3s; color: #fff; font-size: 1.2rem; }
.social-icons a:hover { transform: scale(1.1); background: rgba(255,255,255,0.15); }
.footer-copy { width: 100%; text-align: center; margin-top: 2rem; font-size: 0.9rem; color: #64748b; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
.hero p { font-size: clamp(1rem, 2.5vw, 1.4rem); }
.pricing h2, .features-section h2, .testimonials h2, .faq h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 768px) {
    nav { justify-content: space-between; align-items: center; padding: 0.5rem 1rem; }
    nav .logo { position: relative; height: 80px; z-index: 1100; }
    .menu-toggle { display: block; font-size: 1.8rem; cursor: pointer; color: var(--white); z-index: 1100; }
    nav ul { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; max-height: 0; overflow: hidden; background: var(--deep); transition: max-height 0.35s ease-in-out; gap: 1rem; text-align: center; z-index: 1000; }
    nav ul.show { max-height: 500px; }
    nav ul li a { font-size: 1rem; padding: 1rem 0; display: block; }
    .hero .buttons { flex-direction: column; gap: 1rem; width: 100%; }
}
@media (max-width: 480px) {
    .pricing-grid, .feature-grid, .testimonial-grid { grid-template-columns: 1fr; }
    #chat-box { width: 90vw; max-height: 60vh; }
    #chat-bubble { width: 50px; height: 50px; }
}

.subtle-glow {
  color: #ffffff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}
