:root {
    --bg-main: #07070E;
    --bg-panel: #0D0D1A;
    --border-color: #461982;
    --accent-light: #822DDC;
    --accent-bright: #AA46FF;
    --text-main: #D7D7E6;
    --text-dim: #6E6E82;
    --success: #32D25A;
    --danger: #DC3737;
    --warning: #DCBE32;
    --btn-hover: #5F19AA;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* TOS Overlay */
.tos-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 7, 14, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.tos-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.tos-modal {
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.tos-modal h2 {
    text-align: center;
    color: var(--text-main);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.tos-content {
    overflow-y: auto;
    padding-right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tos-content::-webkit-scrollbar {
    width: 8px;
}
.tos-content::-webkit-scrollbar-track {
    background: rgba(13, 13, 26, 0.5);
    border-radius: 4px;
}
.tos-content::-webkit-scrollbar-thumb {
    background: var(--accent-light);
    border-radius: 4px;
}

.tos-content h3 {
    color: var(--accent-bright);
    margin-top: 0.5rem;
}

.tos-content ul {
    list-style-position: inside;
    list-style-type: none;
    padding-left: 0.5rem;
}

.tos-content li {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.warning-text {
    color: var(--danger);
    font-weight: 600;
    background: rgba(220, 55, 55, 0.1);
    padding: 1rem;
    border-left: 4px solid var(--danger);
    border-radius: 4px;
}

.tos-footer {
    text-align: center;
    font-weight: bold;
    margin-top: 1rem;
    color: var(--text-main);
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
}

.highlight {
    color: var(--accent-bright);
}

.highlight-gradient {
    background: linear-gradient(90deg, var(--accent-bright), #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass-panel {
    background: rgba(13, 13, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 14, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(70, 25, 130, 0.3);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.fallback-hidden {
    display: none;
}

#main-content {
    display: none;
}

#main-content.visible {
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

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

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

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

.discord-link {
    color: #5865F2 !important; /* Discord blurple */
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.discord-link:hover {
    color: #7289da !important;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-small, .btn-primary-gradient {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-small {
    padding: 0.5rem 1.5rem;
    background-color: var(--accent-light);
    color: white;
}

.btn-primary {
    background-color: var(--accent-light);
    color: white;
    box-shadow: 0 0 15px rgba(130, 45, 220, 0.4);
}

.btn-primary:hover, .btn-primary-small:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(130, 45, 220, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(70, 25, 130, 0.2);
    border-color: var(--accent-bright);
}

.btn-primary-gradient {
    background: linear-gradient(45deg, var(--accent-light), #FF6B6B);
    color: white;
    box-shadow: 0 0 20px rgba(170, 70, 255, 0.5);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(170, 70, 255, 0.7);
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 5% 4rem;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(130, 45, 220, 0.2);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(70, 25, 130, 0.15);
    bottom: -200px;
    right: -100px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(50, 210, 90, 0.1);
    color: var(--success);
    border: 1px solid rgba(50, 210, 90, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.dashboard-preview {
    margin-top: 3rem;
    perspective: 1000px;
}

.dashboard-preview .logo-showcase {
    padding: 20px;
    transform: rotateX(5deg);
    transition: all 0.5s ease;
    display: inline-block;
    border-radius: 50%;
    background: rgba(13, 13, 26, 0.4);
    box-shadow: 0 0 50px rgba(170, 70, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateX(10deg); box-shadow: 0 0 80px rgba(170, 70, 255, 0.4); }
    100% { transform: translateY(0px) rotateX(5deg); }
}

.dashboard-preview .logo-showcase:hover {
    transform: rotateX(0deg) scale(1.05);
    box-shadow: 0 0 100px rgba(170, 70, 255, 0.6);
}

.hero-logo-img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    display: block;
    filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.5));
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-dim);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Reviews Section */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    color: var(--text-dim);
}

.reviewer {
    margin-top: auto;
    font-weight: bold;
    color: var(--accent-light);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-bright);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-dim);
}
/* Status Section */
.status-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(13, 13, 26, 0.5);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.status-badge.safe {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.status-badge.maintenance {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse-green 2s infinite;
}

.pulse-dot-yellow {
    width: 10px;
    height: 10px;
    background-color: #fbbf24;
    border-radius: 50%;
    box-shadow: 0 0 10px #fbbf24;
    animation: pulse-yellow 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@keyframes pulse-yellow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

/* Sections */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-section, .pricing-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

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

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popular {
    transform: scale(1.05);
    border-color: var(--accent-light);
    box-shadow: 0 10px 40px rgba(130, 45, 220, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-light);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.tier {
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1.5rem;
    vertical-align: super;
}

.perks {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.perks li {
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Payment Options */
.payment-options {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.payment-logo {
    display: inline-flex;
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.payment-logo svg {
    width: 48px;
    height: 48px;
}

.payment-logo:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Footer */
footer {
    background-color: var(--bg-panel);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(70, 25, 130, 0.3);
}

.footer-content p {
    color: var(--text-dim);
    margin-top: 1rem;
}

.footer-payments {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(70, 25, 130, 0.15);
}

.footer-pay-label {
    display: inline;
    color: var(--text-dim);
    font-size: 0.75rem;
    margin-right: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    vertical-align: middle;
}

.footer-pay-icons {
    display: inline-flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.pay-icon {
    display: inline-flex;
    line-height: 1;
}

.pay-icon svg {
    display: block;
}

.pay-icon:hover {
    opacity: 0.8;
}

.footer-code {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(70, 25, 130, 0.15);
}

.code-label {
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 0.5rem;
}

.code-value {
    color: var(--accent-bright);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(130, 45, 220, 0.1);
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid rgba(130, 45, 220, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    .nav-links {
        display: none;
    }
    .popular {
        transform: scale(1);
    }
}
