:root {
    --dark-purple: #1a052b;
    --purple: #6a0dad;
    --light-purple: #9b59b6;
    --accent: #c39bd3;
    --text-primary: #f5e6ff;
    --text-secondary: #d8bfd8;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0615, #1e0d38);
    color: var(--text-primary);
    min-height: 100vh;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    background: rgba(26, 5, 43, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(154, 89, 182, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    text-decoration: none;
}

.nav-brand .icon {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--light-purple));
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(154, 89, 182, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(154, 89, 182, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    background: linear-gradient(to right, #9b59b6, #c39bd3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--purple), var(--light-purple));
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(154, 89, 182, 0.3);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--light-purple);
    color: var(--text-primary);
}

.cta-secondary:hover {
    background: rgba(154, 89, 182, 0.1);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: rgba(26, 5, 43, 0.5);
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    color: var(--accent);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #6a0dad, #9b59b6);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(42, 15, 73, 0.7);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(154, 89, 182, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(154, 89, 182, 0.2);
    border-color: rgba(154, 89, 182, 0.6);
}

.card-header {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.3), rgba(42, 15, 73, 0.7));
    border-bottom: 1px solid rgba(154, 89, 182, 0.2);
}

.card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    opacity: 0.8;
}

.card-body {
    padding: 25px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.features-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: var(--text-secondary);
}

.features-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.buy-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #6a0dad, #9b59b6);
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(154, 89, 182, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: rgba(26, 5, 43, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(42, 15, 73, 0.5);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(154, 89, 182, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '""';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    color: rgba(154, 89, 182, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.stars {
    color: gold;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 10px;
}

.discord-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.discord-avatar.purple {
    background: #7289da;
}

.discord-avatar.blue {
    background: #5865F2;
}

.discord-avatar.green {
    background: #3BA55C;
}

/* Executor Safety Info */
.safety-section {
    padding: 80px 0;
}

.safety-info {
    background: rgba(42, 15, 73, 0.7);
    padding: 30px;
    border-radius: 15px;
    margin: 0 auto;
    max-width: 800px;
    border: 1px solid rgba(154, 89, 182, 0.3);
}

.safety-info h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.safety-list {
    list-style-type: none;
    padding: 0;
}

.safety-list li {
    padding: 12px 15px;
    border-bottom: 1px dashed rgba(154, 89, 182, 0.2);
    display: flex;
    justify-content: space-between;
}

.safety-list li:last-child {
    border-bottom: none;
}

.executor-name {
    font-weight: 600;
}

.detected {
    color: #e74c3c;
}

.mid {
    color: #f39c12;
}

.safe {
    color: #00ff6a;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: rgba(26, 5, 43, 0.3);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(42, 15, 73, 0.5);
    border: 1px solid rgba(154, 89, 182, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: rgba(42, 15, 73, 0.7);
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(42, 15, 73, 0.8);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* Discord CTA */
.discord-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #0a0615, #1e0d38);
}

.discord-cta h2 {
    color: var(--accent);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.discord-cta p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.discord-btn {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Footer */
.footer {
    background: rgba(26, 5, 43, 0.9);
    padding: 50px 0 20px;
    text-align: center;
    border-top: 1px solid rgba(154, 89, 182, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0615, #1e0d38);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  transform: translateY(-10%);
}

.loading-text {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.letter {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(to right, #9b59b6, #c39bd3);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  transform: translateY(20px);
  animation: letterAppear 0.5s forwards;
}

.space {
  width: 20px;
}

.loading-bar {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 auto;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #6a0dad, #9b59b6);
  border-radius: 2px;
  animation: progressLoad 2.5s ease-in-out forwards;
}

@keyframes letterAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressLoad {
  to {
    width: 100%;
  }
}

/* Letter animation delays */
.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.2s; }
.letter:nth-child(3) { animation-delay: 0.3s; }
.letter:nth-child(4) { animation-delay: 0.4s; }
.letter:nth-child(5) { animation-delay: 0.5s; }
.letter:nth-child(6) { animation-delay: 0.6s; }
.letter:nth-child(7) { animation-delay: 0.7s; }
.letter:nth-child(8) { animation-delay: 0.8s; }
.letter:nth-child(9) { animation-delay: 0.9s; }
.space { animation-delay: 1.0s; }
.letter:nth-child(11) { animation-delay: 1.1s; }
.letter:nth-child(12) { animation-delay: 1.2s; }
.letter:nth-child(13) { animation-delay: 1.3s; }
.letter:nth-child(14) { animation-delay: 1.4s; }
.letter:nth-child(15) { animation-delay: 1.5s; }
.letter:nth-child(16) { animation-delay: 1.6s; }

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 5, 43, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .loading-text {
        flex-wrap: wrap;
        justify-content: center;
    }

    .letter {
        font-size: 2rem;
    }

    .loading-bar {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .letter {
        font-size: 1.5rem;
    }
}