body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #121212;
    color: #ffffff;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 255, 136, 0.2);
    box-sizing: border-box;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: filter 0.3s, box-shadow 0.3s;
}

.logo-img:hover {
    filter: brightness(1.2) drop-shadow(0 0 10px #00FF88);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #00FF88;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00cc6e;
}

.cta-button {
    background: #00FF88;
    color: #121212;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
    display: inline-block;
}

.cta-button:hover:not(:disabled) {
    background: #00cc6e;
    transform: scale(1.05);
}

.cta-button:disabled {
    background: #888;
    cursor: not-allowed;
    transform: none;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00FF88;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('media/hero-bg.jpg') no-repeat center/cover;
    opacity: 0.3;
    animation: pulse 10s infinite;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 0.5; }
    100% { opacity: 0.3; }
}

.section {
    padding: 80px 40px;
    text-align: center;
}

.section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    margin: 0 0 40px;
    color: #00FF88;
}

.steps-container, .features-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step, .feature {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step img, .feature img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.step h3, .feature h3 {
    font-size: 24px;
    margin: 0 0 10px;
}

.step:hover, .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.discord-preview {
    margin-top: 40px;
}

.preview-img {
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat h3 {
    font-size: 48px;
    color: #00FF88;
    margin: 0;
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: #00FF88;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 255, 136, 0.3);
}

.dots-container {
    text-align: center;
    padding: 10px 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #888;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot:hover, .dot.active {
    background-color: #00FF88;
}

.testimonials-container, .faq-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial, .faq-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    border-left: 5px solid #00FF88;
}

.testimonial p {
    font-style: italic;
}

.author {
    font-weight: bold;
    color: #00FF88;
    margin-top: 10px;
}

.faq-item h4 {
    font-size: 18px;
    margin: 0 0 10px;
}

.cta-section {
    background: #1a1a1a;
    padding: 60px 40px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.checkout-container {
    max-width: 600px;
    margin: 80px auto 0;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.checkout-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-container input, .checkout-container select {
    padding: 12px;
    background: #121212;
    border: 1px solid #00FF88;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-container input:focus, .checkout-container select:focus {
    outline: none;
    border-color: #00cc6e;
    box-shadow: 0 0 5px #00FF88;
}

.checkout-container input::placeholder {
    color: #888;
}

.toggle-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.toggle-label {
    font-size: 16px;
    color: #00FF88;
    margin-bottom: 10px;
}

.toggle-button {
    display: flex;
    background: #121212;
    border: 1px solid #00FF88;
    border-radius: 25px;
    overflow: hidden;
    width: fit-content;
}

.toggle-button input {
    display: none;
}

.toggle-button label {
    padding: 10px 20px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-button input:checked + label {
    background: #00FF88;
    color: #121212;
}

.checkout-container button {
    background: #00FF88;
    color: #121212;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-container button:hover:not(:disabled) {
    background: #00cc6e;
}

.footer {
    background: #1a1a1a;
    padding: 40px 20px;
    position: relative;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
}

.footer-links a {
    color: #00FF88;
    text-decoration: none;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
}

.social-icon {
    height: 30px;
    width: auto;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('media/matrix-bg.png') repeat;
    opacity: 0.1;
    animation: matrix-fall 20s linear infinite;
}

@keyframes matrix-fall {
    0% { background-position: 0 0; }
    100% { background-position: 0 1000px; }
}

.disclaimer {
    font-size: 12px;
    color: #888;
    margin: 0;
    max-width: 600px;
}

.fade-out {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cta-button {
        margin-top: 10px;
        font-size: 14px;
        padding: 8px 16px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .section {
        padding: 40px 20px;
    }
    .step, .feature, .testimonial, .faq-item {
        width: 100%;
    }
    .stats {
        flex-direction: column;
    }
    .slideshow-container {
        max-width: 100%;
    }
    .checkout-container {
        padding: 20px;
        margin-top: 60px;
    }
    .checkout-container input, .checkout-container select {
        font-size: 14px;
        padding: 10px;
    }
    .toggle-button label {
        padding: 8px 16px;
        font-size: 14px;
    }
    .checkout-container button {
        font-size: 16px;
        padding: 10px;
    }
}