/* Base Styles */
:root {
    --primary: #8AFF78;
    --primary-dark: #6BD95A;
    --secondary: #6c757d;
    --dark: #0D0F16;
    --darker: #0A0C12;
    --light: #f8f9fa;
    --lighter: #ffffff;
    --border-radius: 10px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    overflow-x: hidden;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--light);
}

p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(138, 255, 120, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 217, 90, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: rgba(138, 255, 120, 0.1);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--light);
    color: var(--dark);
}

.btn-light:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.left-align {
    text-align: left;
    margin-left: 0;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--darker);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-bar .badge {
    background: var(--primary);
    color: var(--dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    position: relative;
    z-index: 1000;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: var(--light);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    gap: 1rem;
}

.navbar-toggler {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(138, 255, 120, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.hero-tag {
    margin-bottom: 1.5rem;
}

.hero-tag span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(138, 255, 120, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--light);
}

.hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trustpilot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trustpilot .stars {
    color: #FFC107;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.server-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 15, 22, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(138, 255, 120, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.stat-info {
    flex: 1;
}

.stat-info span {
    color: rgba(255, 255, 255, 0.9);
}

.progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.25rem;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

/* Trust Badges */
.trust-badges {
    padding: 2rem 0;
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.badges-grid img {
    height: 40px;
    opacity: 0.8;
    transition: var(--transition);
}

.badges-grid img:hover {
    opacity: 1;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(138, 255, 120, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 255, 120, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--light);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--primary);
    transition: var(--transition);
}

input:checked + .slider {
    background-color: rgba(138, 255, 120, 0.2);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    background: var(--primary);
    color: var(--dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(138, 255, 120, 0.2);
}

.pricing-card.popular {
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.75rem;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-price .period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features i {
    color: var(--primary);
}

/* Panel Section */
.panel-section {
    padding: 6rem 0;
    background: var(--darker);
}

.panel-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(138, 255, 120, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.85);
}

.panel-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.panel-highlight {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(13, 15, 22, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-content i {
    font-size: 1.5rem;
    color: var(--primary);
}

.highlight-content h5 {
    color: var(--light);
    margin-bottom: 0.25rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.85);
}

/* Locations Section */
.locations-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.locations-map {
    position: relative;
    margin-bottom: 3rem;
}

.locations-map img {
    border-radius: var(--border-radius);
}

.location-marker {
    position: absolute;
    transform: translate(-50%, -50%);
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(138, 255, 120, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.marker-dot:hover {
    transform: scale(1.5);
}

.marker-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 15, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.marker-dot:hover + .marker-info {
    opacity: 1;
    visibility: visible;
    margin-bottom: 0.5rem;
}

.marker-info h5 {
    margin-bottom: 0.25rem;
    color: var(--light);
}

.marker-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.ping {
    display: inline-block;
    background: rgba(138, 255, 120, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Mods Section */
.mods-section {
    padding: 6rem 0;
    background: var(--darker);
}

.mods-slider {
    margin-bottom: 3rem;
}

.mod-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    height: 100%;
}

.mod-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(138, 255, 120, 0.2);
}

.mod-image {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mod-card h4 {
    margin-bottom: 0.5rem;
    color: var(--light);
}

.mod-card p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
}

.reviews-slider {
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(138, 255, 120, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h5 {
    margin-bottom: 0.25rem;
    color: var(--light);
}

.reviewer span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.stars {
    color: #FFC107;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-style: italic;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.review-footer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.review-footer i {
    margin-right: 0.25rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(138, 255, 120, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.stat-info h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--darker);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(138, 255, 120, 0.2);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin-bottom: 0;
    color: var(--light);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-card.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
}

.cta-card {
    background: var(--dark);
    border-radius: var(--border-radius);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./assets/img/cta-pattern.png');
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: var(--light);
}

.cta-content p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-image {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 6rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-about {
    max-width: 300px;
}

.footer-about p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h5 {
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.copyright {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.copyright p:first-child {
    margin-bottom: 0.5rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Splide Overrides */
.splide__arrow {
    background: var(--primary);
    opacity: 1;
    width: 40px;
    height: 40px;
}

.splide__arrow svg {
    fill: var(--dark);
    width: 1rem;
    height: 1rem;
}

.splide__arrow--prev {
    left: -1rem;
}

.splide__arrow--next {
    right: -1rem;
}

.splide__pagination {
    bottom: -2rem;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.3);
    width: 10px;
    height: 10px;
}

.splide__pagination__page.is-active {
    background: var(--primary);
    transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero .lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trustpilot {
        justify-content: center;
    }
    
    .section-header.left-align {
        text-align: center;
        margin-left: auto;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
/* Panel Section Fixes */
.panel-section {
    background: rgba(13, 15, 22, 0.95); /* More opaque background */
}

.panel-section .section-header h2,
.panel-section .section-header p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.panel-features .feature-content h4 {
    color: var(--light) !important;
    font-weight: 600;
}

.panel-features .feature-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
}

.panel-highlight h5 {
    color: var(--light) !important;
    font-weight: 600;
}

.panel-highlight p {
    color: rgba(255, 255, 255, 0.85) !important;
}
/* Panel Section */
.panel-section {
    padding: 6rem 0;
    background: rgba(13, 15, 22, 0.95);
    position: relative;
}

.panel-section .section-header.left-align h2 {
    color: var(--light);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.panel-section .section-header.left-align p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.panel-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(138, 255, 120, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--light);
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.panel-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-highlight {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(13, 15, 22, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-content i {
    font-size: 1.75rem;
    color: var(--primary);
}

.highlight-content h5 {
    color: var(--light);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}
/* COMPLETE FIXED CSS */
:root {
  --primary: #8AFF78;
  --primary-dark: #6BD95A;
  --dark: #0D0F16;
  --darker: #0A0C12;
  --light: #f8f9fa;
  --border-radius: 10px;
  --transition: all 0.3s ease;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* BASE LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

/* SERVER LOCATIONS */
.locations-section {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.locations-map {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  background: var(--darker);
  border-radius: var(--border-radius);
  padding: 20px;
}

.locations-map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.location-marker {
  position: absolute;
  transform: translate(-50%, -50%);
}

.marker-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(138, 255, 120, 0.3);
}

.marker-info {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 23, 32, 0.95);
  padding: 15px;
  border-radius: 8px;
  width: 200px;
  border: 1px solid rgba(138, 255, 120, 0.2);
}

/* MODS SECTION */
.mods-section {
  background: var(--dark);
}

.mods-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.mod-card {
  background: rgba(30, 34, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 0 10px;
  height: 100%;
}

.mod-image {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* REVIEWS SECTION */
.reviews-section {
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.review-card {
  background: rgba(30, 34, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 25px;
  margin: 0 15px;
  height: 100%;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }
}
/* FAQ: Überschrift beim Hover grün färben */
.faq-card .faq-question:hover h4 {
  color: #8AFF78;
  cursor: pointer;
}

/* Neuer Footer */
.footer {
  background: #f8f9fa;
  padding: 40px 0;
}
.footer .footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-logo {
  flex: 0 0 auto;
}
.footer-columns {
  display: flex;
  flex: 1;
  justify-content: space-between;
  margin-left: 40px;
}
.footer-column {
  flex: 1;
}
.footer-column h5 {
  margin-bottom: 1rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 0.5rem;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #6c757d;
}
/* Footer-Grundstruktur */
.footer {
  background-color: #000;      /* komplett schwarz */
  color: #ccc;                 /* helle Grundschrift */
  padding: 50px 0 20px;
  font-size: 0.95rem;
  border-top: 1px solid #222;  /* dezente Trennung zur Seite */
}

/* Logo links */
.footer .footer-logo img {
  width: 180px;
  display: block;
  margin-bottom: 1rem;
}

/* Drei Spalten neben dem Logo */
.footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-left: 2rem;
}
.footer .footer-column h5 {
  color: #8AFF78;              /* grüne Überschriften */
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer .footer-column ul {
  list-style: none;
  padding: 0;
}
.footer .footer-column ul li {
  margin-bottom: 0.5rem;
}
.footer .footer-column ul li a {
  color: #ccc;                 /* Link-Grundfarbe */
  text-decoration: none;
  transition: color .2s;
}
.footer .footer-column ul li a:hover {
  color: #8AFF78;              /* Link-Hover grün */
}

/* Social‑Icons (falls vorhanden) */
.footer .social-links a {
  color: #ccc;
  margin-right: 1rem;
  font-size: 1.2rem;
  transition: color .2s;
}
.footer .social-links a:hover {
  color: #8AFF78;
}

/* Made in Switzerland unten */
.footer .footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: #8AFF78;              /* grüner Akzent */
  font-weight: 500;
}
/* ======================
   FOOTER STYLES
   ====================== */
.footer {
  position: relative;
  background: #000;
  color: #bbb;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* dekorativer radialer Verlaufshintergrund */
.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(138,255,120,0.15), transparent 70%);
  pointer-events: none;
  transform: rotate(30deg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.5fr;
  gap: 2rem;
  padding: 60px 0 40px;
}

/* ---- Brand & Social ---- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo {
  width: 160px;
  transition: transform .3s;
}
.footer-logo:hover {
  transform: scale(1.1);
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ddd;
}
.social-links {
  margin-top: .5rem;
}
.social-links a {
  color: #bbb;
  margin-right: 1rem;
  font-size: 1.3rem;
  transition: color .2s, transform .2s;
}
.social-links a:hover {
  color: #8AFF78;
  transform: translateY(-2px);
}

/* ---- Navigation Columns ---- */
.footer-navs {
  display: flex;
  gap: 3rem;
}
.footer-column h5 {
  color: #8AFF78;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
}
.footer-column h5::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 40px; height: 2px;
  background: #8AFF78;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: .6rem;
}
.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  position: relative;
  transition: color .2s;
}
.footer-column ul li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: #8AFF78;
  transition: width .3s;
}
.footer-column ul li a:hover {
  color: #fff;
}
.footer-column ul li a:hover::after {
  width: 100%;
}

/* ---- Newsletter ---- */
.footer-newsletter h5 {
  color: #8AFF78;
  font-size: 1.1rem;
  margin-bottom: .8rem;
}
.newsletter-form {
  display: flex;
  gap: .5rem;
}
.newsletter-form input {
  flex: 1;
  padding: .6rem 1rem;
  border: 1px solid #333;
  background: #111;
  color: #eee;
  border-radius: 4px;
  transition: border-color .2s;
}
.newsletter-form input:focus {
  outline: none;
  border-color: #8AFF78;
}
.newsletter-form button {
  padding: .6rem 1.2rem;
  background: #8AFF78;
  border: none;
  border-radius: 4px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.newsletter-form button:hover {
  background: #7eda6b;
  transform: translateY(-2px);
}
.footer-newsletter small {
  display: block;
  margin-top: .5rem;
  color: #888;
  font-size: .85rem;
}

/* ---- Bottom Bar ---- */
.footer-bottom {
  border-top: 1px solid #222;
  padding: 15px 0;
  text-align: center;
  font-size: .85rem;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}
.back-to-top {
  color: #bbb;
  font-size: 1rem;
  padding: .4rem;
  border: 1px solid #444;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.back-to-top:hover {
  background: #8AFF78;
  color: #000;
}

