
:root {
    --primary-color: #5CD6C6;
    --primary-glow: rgba(92, 214, 198, 0.5);
    --secondary-color: #FFC940;
    --background-color: #121212;
    --surface-color: #1e1e1e;
    --surface-light: #2a2a2a;
    --text-color: #e0e0e0;
    --text-muted-color: #a0a0a0;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 16px;
    --transition-speed: 0.3s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 120px 0; position: relative; overflow-x: hidden; }
.section-title { font-size: clamp(2.2rem, 5vw, 2.8rem); font-weight: 800; text-align: center; margin-bottom: 20px; color: #fff; }
.section-subtitle { text-align: center; font-size: 1.1rem; color: var(--text-muted-color); max-width: 600px; margin: 0 auto 60px auto; }

.animate-on-scroll { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.animate-on-scroll[data-animation="fade-in-up"] { transform: translateY(50px); }
.animate-on-scroll[data-animation="fade-in-left"] { transform: translateX(-50px); }
.animate-on-scroll[data-animation="fade-in-right"] { transform: translateX(50px); }
.animate-on-scroll[data-animation="zoom-in"] { transform: scale(0.9); }
.animate-on-scroll.is-visible { opacity: 1; transform: none; }

.main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 15px 0; background: rgba(18, 18, 18, 0.7); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: background var(--transition-speed) ease; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-size: 1.8rem; font-weight: 800; color: #fff; text-decoration: none; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 35px; }
.nav-link { color: var(--text-muted-color); text-decoration: none; font-weight: 600; transition: color var(--transition-speed) ease; }
.nav-link:hover { color: var(--primary-color); }
.nav-link-button { background-color: var(--primary-color); color: #111; padding: 8px 20px; border-radius: 12px; transition: all var(--transition-speed); }
.nav-link-button:hover { background-color: #4FB8A9; transform: scale(1.05); }

.hero { min-height: 90vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background-image: linear-gradient(to top, rgba(18,18,18,1) 10%, rgba(18,18,18,0.7) 50%), url('https://i.redd.it/nz9igbkdiaz61.jpg'); background-size: cover; background-position: center; padding: 120px 20px; }
.hero-content { max-width: 800px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; margin-bottom: 20px; line-height: 1.2; color: #fff; }
.hero p { font-size: 1.25rem; margin-bottom: 40px; color: var(--text-muted-color); max-width: 600px; margin-left: auto; margin-right: auto; }
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--border-radius); text-decoration: none; font-weight: 600; transition: all var(--transition-speed) ease; border: none; cursor: pointer; }
.btn-primary { background-color: var(--primary-color); color: #111; box-shadow: 0 4px 20px var(--primary-glow); }
.btn-primary:hover { background-color: #4FB8A9; transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px var(--primary-glow); }
.btn-secondary { background-color: var(--surface-light); color: var(--text-color); border: 2px solid #444; }
.btn-secondary:hover { background-color: #333; border-color: #666; transform: translateY(-2px); }
.hero-trust-badges { display: flex; justify-content: center; gap: 40px; margin-top: 60px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 10px; color: var(--text-muted-color); font-weight: 600; }
.badge svg { width: 24px; height: 24px; stroke: var(--primary-color); stroke-width: 2; fill: none; }

.panel-showcase-section { background-color: var(--background-color); }
.panel-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.panel-image-wrapper img { width: 100%; border-radius: var(--border-radius); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.panel-features .section-title { text-align: left; }
.panel-features p { margin-bottom: 30px; color: var(--text-muted-color); }
.feature-list { list-style: none; margin-bottom: 40px; }
.feature-list li { padding-left: 35px; position: relative; margin-bottom: 20px; font-weight: 400; color: var(--text-muted-color); }
.feature-list li::before { content: '?'; position: absolute; left: 0; color: var(--primary-color); font-size: 1.2rem; font-weight: bold; }
.feature-list li span { display: block; color: var(--text-color); font-weight: 600; }

.plans-section { background-color: var(--surface-color); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.plan-card { background-color: var(--surface-light); padding: 40px 30px; border-radius: var(--border-radius); border: 1px solid #333; text-align: center; transition: all var(--transition-speed) ease; position: relative; overflow: hidden; }
.plan-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); border-color: #555;}
.plan-card.featured { border: 2px solid var(--primary-color); transform: scale(1.05); box-shadow: 0 0 30px var(--primary-glow); }
.plan-badge { position: absolute; top: 15px; right: -45px; background: var(--primary-color); color: #111; padding: 5px 40px; transform: rotate(45deg); font-size: 0.9rem; font-weight: 700; }
.plan-icon { margin-bottom: 20px; height: 80px; display: flex; justify-content: center; align-items: center; }
.minecraft-svg { width: 70px; height: 70px; image-rendering: pixelated; }
.plan-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.plan-price { font-size: 2.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 20px; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted-color); }
.plan-card.ultimate .plan-price { color: var(--secondary-color); }
.plan-card ul { list-style: none; margin-bottom: 30px; text-align: left; display: inline-block; }
.plan-card ul li { margin-bottom: 12px; padding-left: 25px; position: relative; }
.plan-card ul li::before { content: '?'; color: var(--secondary-color); position: absolute; left: 0; font-weight: bold; }

.locations-section { background: var(--background-color); }
.map-container { position: relative; max-width: 1000px; margin: 0 auto; }
.map-container .country { fill: #2a2a2a; stroke: var(--background-color); stroke-width: 1; }
.location-dot { fill: var(--primary-color); cursor: pointer; transition: all 0.2s ease-in-out; animation: pulse 2s infinite; }
.location-dot:hover { r: 12; animation-play-state: paused; }
.map-tooltip { position: absolute; background: #111; color: #fff; padding: 8px 12px; border-radius: 8px; font-size: 0.9em; pointer-events: none; opacity: 0; transition: opacity 0.2s; white-space: nowrap; z-index: 1001; transform: translate(-50%, -150%); box-shadow: 0 4px 12px rgba(0,0,0,0.4); }

@keyframes pulse { 0% { r: 6; opacity: 1; } 50% { r: 10; opacity: 0.7; } 100% { r: 6; opacity: 1; } }

/* --- Testimonials & FAQ --- */
.testimonials-section { background: var(--surface-color); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: var(--surface-light); padding: 30px; border-radius: var(--border-radius); border: 1px solid #333; border-left: 4px solid var(--primary-color); }
.testimonial-card blockquote { font-style: italic; color: var(--text-color); margin: 0 0 15px 0; }
.testimonial-card cite { font-weight: 600; color: var(--text-muted-color); font-style: normal; }

.faq-section { background: var(--background-color); }
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--surface-color); border-radius: 12px; border: 1px solid #333; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px; font-size: 1.1rem; font-weight: 600; color: #fff; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-icon { font-size: 1.5rem; transition: transform var(--transition-speed) ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--primary-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; }
.faq-answer p { padding: 0 20px 20px 20px; color: var(--text-muted-color); }
.faq-item.active .faq-answer { max-height: 200px; }

.main-footer { background-color: #1a1a1a; padding: 60px 0 30px; border-top: 1px solid #333; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-column h4 { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; }
.footer-column h5 { font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; color: #fff; }
.footer-column p, .footer-column ul li a { color: var(--text-muted-color); }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { text-decoration: none; transition: color var(--transition-speed); }
.footer-column ul li a:hover { color: var(--primary-color); }
.footer-bottom { border-top: 1px solid #333; padding-top: 30px; text-align: center; font-size: 0.9rem; }

@media (max-width: 992px) {
    .panel-showcase-grid { grid-template-columns: 1fr; }
    .panel-features .section-title { text-align: center; }
    .plan-card.featured { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-column:first-child { grid-column: span 2; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-column:first-child { grid-column: span 1; }
    .panel-showcase-grid { gap: 40px; }
    .section-title { font-size: 2rem; }
}