/* Common Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0A0D13;
    --accent-color: #B090F3;
    --secondary-btn-bg: #332D3E;
    --secondary-btn-color: #B090F3;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --gradient-primary: linear-gradient(90deg, rgba(176, 145, 244, 1) 40%, rgba(134, 101, 201, 1) 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: var(--bg-primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(176, 144, 243, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 30px;
    width: auto;
    border-radius: 0;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    padding: 0;
}

.nav-menu li:before {
    display: none;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a.active {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 1280px) {
    .burger-menu {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        display: block;
        width: 100%;
        background: var(--bg-primary);
        pointer-events: none;
        opacity: 0;
        padding: 10px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(176, 144, 243, 0.2);
    }

    .nav-menu {
        gap: 1rem;
        flex-direction: column;
    }
    
    nav.active {
        transform: translateX(0);
        pointer-events: all;
        opacity: 1;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 10px 15px;
        text-align: center;
        display: block;
        border-bottom: 1px solid rgba(176, 144, 243, 0.1);
    }
    
}

@media (max-width: 767px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 25px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .header-buttons .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {

    .header-container {
        flex-wrap: wrap;
    }

    .header-buttons {
        order: 3;
        justify-content: center;
        margin-top: 15px;
        width: 100%;
        gap: 0.5rem;
    }
    
    .header-buttons .btn {
        width: 100%;
    }
}

/* Footer Styles */
footer {
    background-color: #050709;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(176, 144, 243, 0.2);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.5rem 0;
    padding-left: 0;
}

.footer-section ul li:before {
    display: none;
}

.footer-section a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
    border-radius: 0;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.payment-method {
    padding: 0.5rem 1rem;
    background: rgba(51, 45, 62, 0.3);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border: 1px solid rgba(176, 144, 243, 0.2);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 45, 62, 0.3);
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(176, 144, 243, 0.2);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}



.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px;
    line-height: 1.5;
}

.primary-btn {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(176, 144, 243, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 144, 243, 0.5);
    color: #fff;
}

.secondary-btn {
    background-color: var(--secondary-btn-bg);
    color: var(--secondary-btn-color);
    border: 1px solid var(--secondary-btn-color);
}

.secondary-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Cards */
.card {
    background: rgba(51, 45, 62, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(176, 144, 243, 0.2);
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(51, 45, 62, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(176, 144, 243, 0.2);
}

th {
    background: rgba(176, 144, 243, 0.2);
    color: var(--text-primary);
    font-weight: 600;
}

td {
    color: var(--text-secondary);
}

tr:hover {
    background: rgba(176, 144, 243, 0.1);
}

/* Lists */
ul {
    list-style: none;
    margin-bottom: 1rem;
}

ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* FAQ */
.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(51, 45, 62, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.faq-question {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--text-secondary);
}

/* Testimonials */
.testimonial {
    background: rgba(51, 45, 62, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(176, 144, 243, 0.1) 0%, rgba(10, 13, 19, 1) 100%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Content Sections */
.content-section {
    padding: 2rem 0;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    flex: 1;
    min-width: 200px;
}

/* Responsive */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .container {
        padding: 0 40px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.section-image {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(176, 144, 243, 0.2);
}

/* Ordered Lists */
ol {
    list-style: decimal;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

ol li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    padding-left: 0;
}

ol li:before {
    display: none;
}

/* Disclaimer */
.disclaimer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-top: 1px solid rgba(176, 144, 243, 0.2);
    margin-top: 3rem;
}

