* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9c27b0;
    --secondary-color: #e91e63;
    --accent-color: #673ab7;
    --gradient-primary: linear-gradient(135deg, #9c27b0, #e91e63);
    --gradient-secondary: linear-gradient(135deg, #673ab7, #9c27b0);
    --gradient-purple: linear-gradient(135deg, #9c27b0, #673ab7);
    --gradient-pink: linear-gradient(135deg, #e91e63, #ff4081);
    --text-primary: #ffffff;
    --text-secondary: #b39ddb;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #2a2a2a;
    --border-color: #9c27b0;
    --shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
    --shadow-hover: 0 20px 40px rgba(156, 39, 176, 0.4);
    --glow: 0 0 20px rgba(156, 39, 176, 0.5);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.floating-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.2), transparent);
    transition: left 0.8s ease;
}

.floating-card:hover::before {
    left: 100%;
}

.floating-card:nth-child(2) {
    animation-delay: -1s;
}

.floating-card:nth-child(3) {
    animation-delay: -2s;
}

.floating-card:nth-child(4) {
    animation-delay: -3s;
}

.floating-card:nth-child(5) {
    animation-delay: -4s;
}

.floating-card:nth-child(6) {
    animation-delay: -5s;
}

.floating-card:nth-child(7) {
    animation-delay: -6s;
}

.floating-card:nth-child(8) {
    animation-delay: -7s;
}

.floating-card:nth-child(odd) {
    animation-delay: calc(-1s * var(--card-index, 1));
}

.floating-card:nth-child(even) {
    animation-delay: calc(-1.5s * var(--card-index, 1));
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

.card-content {
    text-align: center;
}

.card-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(103, 58, 183, 0.1) 0%, transparent 50%);
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 71, 87, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover), var(--glow);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stats {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--glow);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Exo 2', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.how-it-works {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    min-width: 200px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--glow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
}

.step-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.testimonials {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.testimonial-content {
    position: relative;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(156, 39, 176, 0.1);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.live-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover), var(--glow);
}

.chat-toggle i {
    color: white;
    font-size: 1.5rem;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    display: none;
    flex-direction: column;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.message.support .message-avatar {
    background: var(--gradient-primary);
    color: white;
}

.message.user .message-avatar {
    background: var(--gradient-secondary);
    color: white;
}

.message-content {
    background: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    max-width: 70%;
}

.message.user .message-content {
    background: var(--primary-color);
    color: white;
}

.message-content p {
    margin: 0 0 0.2rem 0;
    font-size: 0.9rem;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.chat-input {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.chat-input input {
    flex: 1;
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.send-btn {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .live-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-window {
        width: 300px;
        height: 350px;
    }
}

.pricing {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-purple);
    animation: gradientShift 3s ease-in-out infinite;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.amount {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 900;
    font-family: 'Exo 2', sans-serif;
}

.period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.contact {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.discord-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover), var(--glow);
}

.discord-link i {
    font-size: 1.1rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-visual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .amount {
        font-size: 3rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background: var(--gradient-purple); }
    50% { background: var(--gradient-pink); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: var(--shadow); }
    50% { box-shadow: var(--shadow), var(--glow); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-card {
    animation: pulse 4s ease-in-out infinite;
}

.hero-title {
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-description {
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: slideInRight 1s ease-out 0.9s both;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover), var(--glow);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow);
}

.navbar {
    border-bottom: 1px solid transparent;
    background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* EXE Modal Styles */
.exe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.exe-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.exe-modal-content {
    background: #1a1a1a;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(156, 39, 176, 0.4);
    animation: exeSlideIn 0.3s ease-out;
}

@keyframes exeSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.exe-header {
    background: #2a2a2a;
    border-bottom: 1px solid var(--border-color);
    border-radius: 8px 8px 0 0;
}

.exe-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.exe-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.exe-title i {
    color: var(--primary-color);
}

.exe-controls {
    display: flex;
    gap: 5px;
}

.exe-controls button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 5px;
    background: #333;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.exe-controls button:hover {
    background: #444;
    color: var(--text-primary);
}

.exe-close:hover {
    background: #e74c3c !important;
    color: white !important;
}

.exe-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.exe-sidebar {
    width: 200px;
    background: #2a2a2a;
    border-right: 1px solid var(--border-color);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.exe-sidebar-header {
    background: #1a1a1a;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.exe-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.exe-menu-item:hover {
    background: rgba(156, 39, 176, 0.1);
    color: var(--text-primary);
}

.exe-menu-item.active {
    background: rgba(156, 39, 176, 0.2);
    color: #e74c3c;
    border-left-color: #e74c3c;
}

.exe-menu-item i {
    width: 20px;
    text-align: center;
}

.exe-user-info {
    margin-top: auto;
    padding: 15px 20px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
}

.exe-user-info i {
    color: var(--primary-color);
}

.exe-main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background: #1a1a1a;
}

.exe-tab {
    display: none;
}

.exe-tab.active {
    display: block;
}

.exe-tab h2 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exe-tab h2 i {
    color: #e74c3c;
}

/* Dashboard Styles */
.exe-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.exe-stat-card {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.exe-stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
}

.exe-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.exe-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.exe-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.exe-status {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
}

.exe-status h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.exe-status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.exe-status-item:last-child {
    border-bottom: none;
}

.exe-status-label {
    color: var(--text-secondary);
}

.exe-status-value {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.exe-status-value.online {
    background: #4CAF50;
    color: white;
}

/* Generator Interface Styles */
.exe-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.exe-info-card {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.exe-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.2);
}

.exe-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.exe-info-content h3 {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.exe-info-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.exe-purchase-section {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.exe-purchase-section h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.exe-purchase-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.exe-purchase-btn {
    padding: 15px 30px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.exe-purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

/* Games Styles */
.exe-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.exe-game-item {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exe-game-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.exe-game-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.exe-game-item span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Settings Styles */
.exe-settings-form {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
}

.exe-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.exe-setting-item:last-child {
    border-bottom: none;
}

.exe-setting-item label {
    color: var(--text-primary);
    font-weight: 500;
}

.exe-setting-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

/* Support Styles */
.exe-support-content {
    display: grid;
    gap: 20px;
}

.exe-support-item {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.exe-support-item i {
    color: var(--primary-color);
    font-size: 2rem;
}

.exe-support-item h3 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.exe-support-item p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.exe-discord-btn {
    padding: 8px 16px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.exe-discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
}

/* Navigation button styling */
.exe-btn {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
}

.exe-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .exe-modal-content {
        width: 95%;
        height: 90vh;
    }
    
    .exe-sidebar {
        width: 150px;
    }
    
    .exe-menu-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .exe-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .exe-games-grid {
        grid-template-columns: 1fr;
    }
}

/* Home Tab Styles */
.exe-home-title {
    color: #e74c3c;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.exe-home-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.exe-home-form {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.exe-steam-input {
    flex: 1;
    padding: 15px 20px;
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.exe-steam-input:focus {
    outline: none;
    border-color: #e74c3c;
}

.exe-download-btn {
    padding: 15px 25px;
    background: #e74c3c;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.exe-download-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.exe-home-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.exe-home-card {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.exe-home-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.exe-home-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.exe-review-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-align: center;
}

/* Bypasses Tab Styles */
.exe-bypass-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    min-height: 400px;
}

.exe-bypass-icon {
    width: 80px;
    height: 80px;
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.exe-bypass-icon i {
    font-size: 2rem;
    color: #e74c3c;
}

.exe-bypass-placeholder h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.exe-bypass-placeholder p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.exe-bypass-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    color: #e74c3c;
    font-size: 0.9rem;
}

.exe-bypass-note i {
    font-size: 1rem;
}

/* DLC Installer Tab Styles */
.exe-dlc-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.exe-dlc-instructions {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.exe-dlc-instructions h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.exe-dlc-instructions ol {
    color: var(--text-secondary);
    padding-left: 20px;
}

.exe-dlc-instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.exe-extract-btn {
    width: 100%;
    padding: 18px;
    background: #e74c3c;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.exe-extract-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Game Search Tab Styles */
.exe-search-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.exe-search-form {
    display: flex;
    gap: 15px;
}

.exe-game-search-input {
    flex: 1;
    padding: 15px 20px;
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.exe-game-search-input:focus {
    outline: none;
    border-color: #e74c3c;
}

.exe-search-btn {
    padding: 15px 25px;
    background: #e74c3c;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exe-search-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Settings Tab Styles */
.exe-settings-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.exe-settings-section {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.exe-settings-section h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exe-settings-section h3 i {
    color: #e74c3c;
}

.exe-theme-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.exe-theme-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.exe-theme-option:hover {
    background: rgba(231, 76, 60, 0.1);
}

.exe-theme-option.active {
    background: rgba(231, 76, 60, 0.2);
}

.exe-theme-preview {
    width: 60px;
    height: 40px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
}

.exe-theme-preview.crimson {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.exe-theme-preview.purple {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.exe-theme-preview.blue {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.exe-theme-option span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.exe-theme-option.active span {
    color: #e74c3c;
}

.exe-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exe-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.95rem;
}

.exe-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e74c3c;
}

.exe-advanced-settings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exe-select-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.exe-select-group label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    min-width: 80px;
}

.exe-select-group select {
    padding: 8px 12px;
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.exe-about-section {
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.exe-about-info {
    margin-bottom: 20px;
}

.exe-about-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.exe-about-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.exe-about-details div {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.exe-about-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exe-about-btn {
    padding: 12px 20px;
    background: #e74c3c;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.exe-about-btn:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

 