:root {
    --primary-dark: #0a1f3b;
    --minecraft-green: #5b7c3a;
    --accent-blue: #1e40af;
    --neon-green: #00ff88;
    --neon-blue: #00a8ff;
}

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

body {
    background-color: #0a1929;
    color: #e2e8f0;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a1f3b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--minecraft-green), var(--neon-blue));
    border-radius: 5px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(#0a1929, #0a1929) padding-box,
                linear-gradient(90deg, var(--neon-green), var(--neon-blue)) border-box;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.5s ease;
}

.toast.show {
    transform: translateX(0);
}

.minecraft-btn {
    background-color: var(--minecraft-green);
    color: white;
    border: 2px solid #3a5c1f;
    border-bottom-width: 4px;
    text-shadow: 1px 1px 0 #3a5c1f;
    transition: all 0.1s ease;
}

.minecraft-btn:hover {
    transform: translateY(-2px);
    border-bottom-width: 6px;
}

.minecraft-btn:active {
    transform: translateY(2px);
    border-bottom-width: 2px;
}

.payment-method {
    transition: all 0.3s ease;
}

.payment-method.selected {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes feature-rectangle {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.feature-rectangle {
    animation: feature-rectangle 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.3s);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.open {
    transform: rotate(45deg);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-rating {
    color: #FFD700;
}