:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-glow: rgba(239, 68, 68, 0.4);
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Animations */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239,68,68,0.25) 0%, rgba(0,0,0,0) 70%);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(153,27,27,0.2) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background-color: #000;
    color: #ef4444; 
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 900;
    /* Simulate a bubble letter look */
    font-family: 'Arial Rounded MT Bold', 'Nunito', sans-serif; 
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    border: 3px solid #ef4444;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #ef4444, #fca5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

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

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

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

/* Glass Containers (Cards & Hero) */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 5rem;
    gap: 3rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

button {
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.primary-btn, .cta-btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: linear-gradient(135deg, #b91c1c, #ef4444);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
    text-decoration: none;
    font-family: inherit;
    text-align: center;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2, #7289da) !important;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4) !important;
}

.discord-btn:hover {
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6) !important;
}

.primary-btn:hover, .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

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

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Feature Cards */
.hero-cards {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 30, 0.8);
}

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

.feature-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Games Section */
.games-section {
    padding: 4rem 5% 8rem;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(239, 68, 68, 0.05));
}

.games-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.games-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.game-status {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.status-online {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-updating {
    background: rgba(234, 179, 8, 0.1);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.status-coming-soon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-offline {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
}

.cheat-features {
    list-style: none;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.cheat-features li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.small-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.95rem;
    margin-top: auto;
}

button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent;
}

/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {
    .glass-nav {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 0;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .cta-btn {
        display: none;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding-top: 10rem;
    }
    
    .hero-cards {
        flex-direction: column;
    }
    
    .button-group {
        flex-direction: column;
    }
}

/* New Home Sections */
.features-section, .testimonials-section, .faq-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

/* Features Grid */
.features-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
}

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

.feature-box h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-box p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(10,10,10,0.9));
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.05);
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.reviewer {
    font-weight: 700;
    color: #ef4444;
}

.testimonials-cta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.testimonials-cta .primary-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ef4444;
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.faq-answer p {
    margin: 0;
}

/* Footer */
.site-footer {
    background: #030303;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
    margin-top: 5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.footer-desc {
    font-size: 0.95rem;
    max-width: 400px;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.footer-links a:hover {
    color: #ef4444;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .features-section, .testimonials-section, .faq-section {
        padding: 4rem 5%;
    }
}

/* Stats Counter Grid */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    width: 100%;
}

.stat-box {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.stat-box h2 {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-box p {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Showcase Placeholder */
.video-showcase {
    margin-top: 5rem;
    text-align: center;
    width: 100%;
    max-width: 800px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Live Status Table */
.status-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-primary);
}

.status-table th, .status-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.status-table th {
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.status-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
}

.status-badge.safe {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.updating {
    background: rgba(234, 179, 8, 0.1);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border-color: #ef4444;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.05), rgba(20, 20, 20, 0.8));
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.15);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--text-primary);
}

.pricing-card .price span {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: super;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Leave a review page */
.review-page {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.review-page-card {
    max-width: 560px;
    width: 100%;
    text-align: left;
}

.review-page-card h1 {
    text-align: center;
}

.review-page-lead {
    text-align: center;
    margin-bottom: 2rem;
    max-width: none;
}

.review-form {
    text-align: left;
}

.review-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

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

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-optional {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    margin-bottom: 0;
}

.star-rating {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.star-rating-btn {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.15rem;
    transition: color 0.15s ease, transform 0.15s ease;
}

.star-rating-btn:hover {
    color: #fbbf24;
    transform: scale(1.08);
}

.star-rating-btn.is-active {
    color: #fbbf24;
}

.star-rating-hint {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.35rem;
    margin-bottom: 0;
}

.review-form-status {
    min-height: 1.5rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.review-form-status.is-success {
    color: #4ade80;
}

.review-form-status.is-error {
    color: #f87171;
}

.review-form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.review-form-actions .primary-btn {
    width: 100%;
    max-width: 280px;
}

.review-discord-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.review-discord-link:hover {
    color: #ef4444;
}

.review-fallback {
    margin-top: 2rem;
    text-align: center;
    padding: 2rem !important;
    border-color: rgba(239, 68, 68, 0.25);
}

.review-fallback[hidden] {
    display: none !important;
}

.review-fallback-title {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.review-fallback-text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    max-width: 400px;
    margin-inline: auto;
}

/* Shopping Cart Styles */
.cart-floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #10b981;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    transition: transform 0.2s ease;
}

.cart-floating-btn:hover {
    transform: scale(1.1);
}

.cart-floating-btn span {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.cart-modal.show {
    display: flex;
}

.cart-items.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.cart-empty-message {
    color: var(--text-secondary);
    text-align: center;
    font-weight: 600;
    padding: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 0;
}

.cart-qty-btn:hover {
    background: rgba(255,255,255,0.2);
}
