:root {
    /* Minecraft Inspired Color Palette */
    --bg-base: #141414; /* Deep Stone/Obsidian */
    --bg-surface: rgba(33, 33, 33, 0.85); /* Dark Stone Slab */
    
    --accent-green: #55FF55; /* Minecraft Emerald/XP Green */
    --accent-green-dark: #00AA00;
    
    --accent-gold: #FFAA00; /* Minecraft Gold */
    --accent-gold-glow: rgba(255, 170, 0, 0.3);
    
    --accent-blue: #55FFFF; /* Minecraft Diamond */
    --accent-purple: #AA00AA; /* Nether Portal / Enchantment */
    
    --text-main: #F0F0F0;
    --text-muted: #AAAAAA;
    
    --border-light: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1100px;
    --section-pad: 4rem 0; /* Reduced padding for less scrolling */
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Custom Promotional Elements */
.top-banner {
    background: linear-gradient(90deg, var(--accent-gold), #FFB732);
    color: #000;
    text-align: center;
    padding: 0.6rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1001;
    position: relative;
    box-shadow: 0 2px 10px rgba(255, 170, 0, 0.4);
}

.top-banner a {
    color: #000;
    text-decoration: underline;
    font-weight: 800;
    margin-left: 0.5rem;
}

.top-banner a:hover {
    color: #fff;
}

.trial-badge {
    display: inline-block;
    background: rgba(85, 255, 85, 0.15);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Background Effects */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--bg-base);
}

.ambient-glow {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(85, 255, 85, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

/* Typography Classes */
.text-green { color: var(--accent-green); text-shadow: 0 0 15px rgba(85, 255, 85, 0.4); }
.text-gold { color: var(--accent-gold); text-shadow: 0 0 15px rgba(255, 170, 0, 0.4); }

.title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-pad);
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Glassmorphism */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-green);
    color: #000;
    box-shadow: 0 4px 15px rgba(85, 255, 85, 0.2);
}

.btn-primary:hover {
    background: #66FF66;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(85, 255, 85, 0.4);
}

.btn-glow {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 15px var(--accent-gold-glow);
}

.btn-glow:hover {
    background: #FFB732;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 170, 0, 0.5);
}

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

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.full-width {
    width: 100%;
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.logo-text {
    color: var(--text-main);
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--accent-green);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

/* Layout Wrapper */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* Tighter spacing between sections */
}

/* Hero Section */
.hero {
    padding-top: 4rem;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(85, 255, 85, 0.1);
    border: 1px solid rgba(85, 255, 85, 0.2);
    color: var(--accent-green);
    border-radius: 4px; /* Blockier look */
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2rem auto;
}

/* Compact Features Grid */
.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-block {
    padding: 2rem 1.5rem;
    transition: transform 0.2s ease;
}

.feature-block:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    padding: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.icon-blue { color: var(--accent-blue); }
.icon-green { color: var(--accent-green); }
.icon-purple { color: var(--accent-purple); }
.icon-gold { color: var(--accent-gold); }

.feature-block h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.feature-block p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-section {
    width: 100%;
    padding-top: 2rem;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.glow-border {
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 170, 0, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tier-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-main);
}

.period {
    font-size: 0.9rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.tier-features i {
    color: var(--text-muted);
    font-size: 0.8rem;
    width: 15px;
    text-align: center;
}

.tier-features i.text-gold {
    color: var(--accent-gold);
}

/* Footer */
.footer {
    width: 100%;
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: var(--text-main);
}

/* Server IP Box */
.server-ip-box {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-highlight);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.server-ip-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-green);
}

.server-ip-box .ip-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-green);
    letter-spacing: 1px;
}

.server-ip-box .ip-address {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--text-main);
}

.server-ip-box i {
    color: var(--text-muted);
}

.server-ip-box:hover i {
    color: var(--accent-green);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--accent-blue);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-main);
    background: var(--bg-surface);
    border: 1px solid var(--border-highlight);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

.discord-float {
    left: 30px;
    color: #5865F2; /* Discord brand color */
    border-color: rgba(88, 101, 242, 0.3);
}

.discord-float:hover {
    background: #5865F2;
    color: #FFF;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.5);
}

.back-to-top {
    right: 30px;
    background: var(--accent-green);
    color: #000;
    border: none;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #66FF66;
    box-shadow: 0 4px 20px rgba(85, 255, 85, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding-top: 2rem; }
    .hero h1 { font-size: 2.5rem; }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}