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

:root {
    --primary-cyan: #00d9ff;
    --primary-magenta: #ff006e;
    --primary-yellow: #ffbe0b;
    --secondary-purple: #8338ec;
    --dark-bg: #0a0e27;
    --darker-bg: #030712;
    --text-color: #ffffff;
    --text-secondary: #b8bcc8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(0, 217, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-cyan);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .highlight {
    color: var(--primary-yellow);
    text-shadow: 0 0 20px var(--primary-yellow);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-cyan);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-cyan);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    color: var(--primary-magenta);
    transform: scale(1.1);
}

.nav-toggle:hover i {
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.6);
}

.nav-toggle i {
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.nav-toggle i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.nav-toggle.active i {
    color: var(--primary-magenta);
    text-shadow: 0 0 15px rgba(255, 0, 110, 0.8);
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(0, 217, 255, 0.08) 50%, rgba(255, 0, 110, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%), 
                radial-gradient(ellipse at 80% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title .word {
    display: block;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.hero-title .word:nth-child(1) { animation-delay: 0.1s; color: var(--primary-cyan); text-shadow: 0 0 20px var(--primary-cyan); }
.hero-title .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .word:nth-child(3) { animation-delay: 0.3s; background: linear-gradient(135deg, var(--primary-magenta), var(--primary-yellow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--primary-cyan);
}

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

.cta-button,
.btn {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    color: var(--darker-bg);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
    text-transform: uppercase;
    border-radius: 5px;
    animation: slideInUp 0.8s ease-out;
    text-decoration: none;
    display: inline-block;
}

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

.cta-button:hover,
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 15px rgba(255, 0, 110, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-yellow));
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.8), 0 0 15px rgba(255, 190, 11, 0.4);
}

.hero-image {
    animation: slideInRight 0.8s ease-out;
    position: relative;
}

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

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neon-flask {
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse at 30% 30%, rgba(0, 217, 255, 0.3), transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(255, 0, 110, 0.3), transparent 50%);
    border: 3px solid var(--primary-cyan);
    border-radius: 50% 50% 40% 40%;
    box-shadow: 0 0 50px var(--primary-cyan), 
                inset 0 0 50px rgba(255, 0, 110, 0.2),
                0 0 100px rgba(255, 190, 11, 0.2);
    animation: floatFlask 3s ease-in-out infinite;
}

@keyframes floatFlask {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.preview-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.5),
                0 0 15px rgba(255, 0, 110, 0.3),
                inset 0 0 20px rgba(0, 217, 255, 0.1);
    border: 2px solid var(--primary-cyan);
    animation: floatImage 3s ease-in-out infinite;
    object-fit: cover;
    aspect-ratio: 16/10;
}

/* Stats Section */
.stats-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.02), rgba(255, 0, 110, 0.02));
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

/* Page Header */
.page-header {
    margin-top: 80px;
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(0, 217, 255, 0.1) 50%, rgba(255, 0, 110, 0.05) 100%);
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    animation: cardAppear 0.6s ease-out forwards;
    opacity: 0;
}

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

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.1s; }
.feature-card:nth-child(5) { animation-delay: 0.2s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }

.feature-card:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
    border-color: var(--primary-magenta);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3), 0 0 15px rgba(255, 0, 110, 0.2);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Detailed Features */
.detailed-features {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.02), rgba(255, 0, 110, 0.02));
}

.detailed-features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-cyan);
}

.feature-row {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-row:hover {
    border-color: var(--primary-magenta);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.feature-row h3 {
    font-size: 1.8rem;
    color: var(--primary-magenta);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-row p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-list li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

/* Features Included Section */
.features-included {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
}

.features-included h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.included-features {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-magenta);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-magenta);
    min-width: 30px;
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 2rem;
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
    border: 2px solid rgba(0, 217, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    animation: cardAppear 0.6s ease-out forwards;
    opacity: 0;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card.featured {
    transform: scale(1.08);
    border-color: var(--primary-magenta);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.4);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-yellow));
    color: var(--darker-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.badge-lifetime {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-cyan));
    color: var(--darker-bg);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.duration-info {
    font-size: 0.85rem;
    color: var(--primary-magenta);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.period {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.pricing-card .features-list li {
    text-align: left;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.pricing-card .btn {
    width: 100%;
}

/* Comparison Table */
.comparison-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.02), rgba(255, 0, 110, 0.02));
}

.comparison-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-cyan);
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    color: var(--primary-cyan);
    font-weight: 700;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    color: var(--text-secondary);
}

.comparison-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    color: var(--darker-bg);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: var(--darker-bg);
    color: var(--primary-cyan);
    box-shadow: none;
}

.cta-buttons .btn-primary {
    background: var(--darker-bg);
    color: var(--primary-cyan);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--darker-bg);
    color: var(--darker-bg);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-magenta);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-cyan);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-magenta);
    font-size: 1.2rem;
}

.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: 500px;
}

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

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-container.discord-focus {
    grid-template-columns: 1fr;
}

.discord-welcome {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
    border: 2px solid var(--primary-cyan);
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.discord-icon-large {
    font-size: 4rem;
    color: #5865F2;
    margin-bottom: 1.5rem;
}

.discord-welcome h2 {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

.discord-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
    border-radius: 10px;
}

.discord-feature i {
    font-size: 2rem;
    color: var(--primary-magenta);
}

.discord-feature span {
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.4);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    margin: 2rem 0;
}

.discord-btn:hover {
    background: linear-gradient(135deg, #7289DA, #5865F2);
    box-shadow: 0 0 40px rgba(88, 101, 242, 0.8);
}

.discord-info {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 0, 110, 0.05));
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--text-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-magenta);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: var(--primary-magenta);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
    border-radius: 50%;
}

.info-content h4 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

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

.info-content a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-magenta);
    text-decoration: underline;
}

/* Social Section */
.social-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.02), rgba(255, 0, 110, 0.02));
    text-align: center;
}

.social-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.social-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    color: var(--primary-cyan);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    color: var(--darker-bg);
    border-color: var(--primary-magenta);
    transform: translateY(-5px) scale(1.1);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--primary-cyan);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--primary-cyan);
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--primary-magenta);
    text-shadow: 0 0 10px var(--primary-magenta);
}

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

.social-links a {
    font-size: 1.3rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    body.nav-open { overflow: hidden; }

    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(0, 217, 255, 0.08) 100%);
        flex-direction: column;
        gap: 0;
        padding: 6rem 0 2rem 0;
        z-index: 1500;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 217, 255, 0.1);
        list-style: none;
    }

    .nav-menu li a {
        font-size: 1.2rem;
        display: block;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1501;
    }

    /* Close button overlay when menu is open */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .hero-content { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: 2.2rem; }
    .page-header h1 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .logo-text { font-size: 1.3rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .nav-container { padding: 0.8rem; }
    .logo-text { font-size: 1.1rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .nav-menu li { padding: 0.5rem 1.5rem; }
}
