/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-dark: #020617;
    --bg-card: #1e293b;
    --border-color: #334155;
    --border-light: #475569;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.5);
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #be185d 100%);
    --gradient-accent: linear-gradient(135deg, #0891b2 0%, #0ea5e9 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    --gradient-card: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.founded-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 2rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Discord Button Styling */
.btn-secondary {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    border: 2px solid #5865f2;
    color: white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4752c4 0%, #3c45a5 100%);
    border-color: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.btn-secondary i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Logo Styles */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 140px;
    height: 160px;
    margin: 0.5rem 0;
    overflow: visible;
}

.logo-v {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #581c87 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Arial Black', sans-serif;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    z-index: 3;
    border: 3px solid #e9d5ff;
}

.logo-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    padding: 1rem 0.75rem 0.75rem;
    border-radius: 0 0 1rem 1rem;
    border: 2px solid #e9d5ff;
    border-top: none;
    text-align: center;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    width: 100%;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 0px #000;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 700;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 1px 1px 0px #000;
    white-space: nowrap;
}

.logo-feathers {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    z-index: 2;
}

.logo-feathers::before,
.logo-feathers::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.logo-feathers::before {
    width: 35px;
    height: 50px;
    top: 0;
    left: 5px;
    transform: rotate(-25deg);
}

.logo-feathers::after {
    width: 30px;
    height: 45px;
    top: 5px;
    right: 5px;
    transform: rotate(25deg);
}

/* Logo outline/shield effect */
.logo-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #e9d5ff;
    border-radius: 1rem;
    z-index: 1;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 1rem;
    z-index: 2;
}

/* Enhanced logo for larger displays */
@media (min-width: 768px) {
    .logo-container {
        width: 160px;
        height: 180px;
        margin: 0.75rem 0;
    }
    
    .logo-v {
        width: 80px;
        height: 80px;
        font-size: 3.5rem;
        top: 0;
    }
    
    .logo-banner {
        padding: 1.25rem 1rem 1rem;
        min-height: 70px;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 1rem;
    }
    
    .logo-feathers {
        top: 88px;
        width: 90px;
        height: 45px;
    }
    
    .logo-feathers::before {
        width: 40px;
        height: 55px;
    }
    
    .logo-feathers::after {
        width: 35px;
        height: 50px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

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

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

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

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

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 70px;
}

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

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #f472b6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.hero-skin-image {
    position: absolute;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.skin-img {
    max-width: 500px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.skin-img:hover {
    transform: scale(1.05);
}

.hero-card {
    position: relative;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    color: white;
    max-width: 280px;
    box-shadow: var(--shadow-xl);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #7c3aed, #be185d, #0891b2, #0ea5e9);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.2;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

.vbucks-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 70px;
    height: 70px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

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

/* Features Section */
.features {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

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

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Prices Section */
.prices {
    padding: 3rem 0;
    background: var(--bg-primary);
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(6, 280px);
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    margin: 2rem auto 0 auto;
    margin-left: 25%;
}

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

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-light);
}

.price-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.price-header {
    margin-bottom: 1.5rem;
}

.price-header h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.price-features {
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    text-align: left;
    font-size: 0.875rem;
}

.feature i {
    color: var(--success-color);
    font-size: 1rem;
}

.feature span {
    color: var(--text-secondary);
}

/* How It Works Section */
.how-it-works {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(5, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* Rules Section */
.rules {
    padding: 3rem 0;
    background: var(--bg-primary);
}

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

.rules-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.rules-section h3 i {
    font-size: 1.25rem;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.rule-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.rule-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.125rem;
}

.rule-text p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Reviews Section */
.reviews {
    padding: 3rem 0;
    background: var(--bg-secondary);
}

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

.review-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.review-card:hover::before {
    transform: scaleX(1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.reviewer-details h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.verified-badge {
    background: var(--success-color);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
}

.review-card p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 3rem 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin-bottom: 0.75rem;
    font-size: 2rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: white;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 2rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h4 {
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.footer-logo .logo-container {
    transform: scale(0.8);
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 0;
    font-size: 0.875rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* AI Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.875rem;
}

.chatbot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.chatbot-toggle i {
    font-size: 1.25rem;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

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

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

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.chatbot-title i {
    font-size: 1.125rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.bot-message {
    flex-direction: row;
}

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

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

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

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

.message-content {
    background: var(--bg-secondary);
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    max-width: 80%;
    border: 1px solid var(--border-color);
}

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

.message-content p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.message-content li {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

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

.chatbot-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: var(--primary-color);
}

.chatbot-input input::placeholder {
    color: var(--text-light);
}

#chatbotSend {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chatbotSend:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Modal Buttons Styling */
.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-buttons .btn {
    min-width: 200px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-buttons .btn i {
    margin-right: 0.5rem;
}

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

.modal-buttons .btn-secondary:hover {
    background: var(--text-secondary);
    color: var(--bg-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .rules-content {
        grid-template-columns: 1fr;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .price-card {
        padding: 1.25rem;
    }
    
    .step {
        padding: 1.25rem;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .logo-container {
        transform: scale(0.9);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Logo Text Styles */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    display: flex;
        flex-direction: column;
    line-height: 1;
    position: relative;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    text-shadow: 
        0 0 15px rgba(124, 58, 237, 0.7),
        0 0 25px rgba(124, 58, 237, 0.4),
        1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.2rem;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 
        0 0 10px rgba(124, 58, 237, 0.5),
        0 0 20px rgba(124, 58, 237, 0.3),
        1px 1px 2px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

/* Enhanced logo for larger displays */
@media (min-width: 768px) {
    .nav-logo {
        gap: 1.25rem;
    }
    
    .logo-main {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .logo-sub {
        font-size: 0.85rem;
        letter-spacing: 1.75px;
    }
}

/* Logo Image Styles */
.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.lang-btn i {
    font-size: 1rem;
}

.footer-logo .logo-image {
    height: 50px;
    width: auto;
}

/* Fallback Logo Styles */
.logo-fallback {
    display: flex;
        flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo-text-fallback {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.logo-sub-fallback {
    font-size: 0.875rem;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced logo for larger displays */
@media (min-width: 768px) {
    .logo-image {
        height: 70px;
    }
    
    .footer-logo .logo-image {
        height: 60px;
    }
    
    .logo-text-fallback {
        font-size: 1.75rem;
    }
    
    .logo-sub-fallback {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

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

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-primary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.05);
}

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

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    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, padding 0.3s ease;
    background: rgba(124, 58, 237, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

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

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq-container {
        margin-top: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Terms and Privacy Policy Sections */
.terms, .privacy {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.legal-section {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.legal-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.legal-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Legal Sections Responsive */
@media (max-width: 768px) {
    .terms, .privacy {
        padding: 3rem 0;
    }
    
    .legal-content {
        margin-top: 2rem;
    }
    
    .legal-section {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
    
    .legal-section p {
        font-size: 0.9rem;
    }
}

/* Hide Section Button */
.hide-section-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hide-section-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.hide-section-btn i {
    font-size: 0.875rem;
}

/* Footer Link Buttons */
.btn-link {
    background: none;
    border: none;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Chatbot Logo Styling */
.chatbot-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 0.75rem;
    border-radius: 0.25rem;
}

.chatbot-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: white;
}

/* Bot Avatar Logo Styling */
.bot-avatar-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

/* Chatbot Toggle Logo Styling */
.chatbot-toggle-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

.chatbot-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: transparent;
    color: white;
    padding: 0;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.3s ease;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

/* Chatbot Popup Styling */
.chatbot-popup {
    position: fixed;
    bottom: 7rem;
    right: 2rem;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.chatbot-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.popup-content {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.popup-arrow {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-color);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.mobile-menu-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--bg-card);
}

.mobile-menu-links {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--bg-card);
    color: var(--primary-color);
}

/* Show mobile menu toggle on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Fix mobile layout issues */
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 1rem;
    }
    
    .hero-card {
        margin: 0 auto;
        max-width: 300px;
    }
    
    .prices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto 0 auto;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .rules-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .faq-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-header {
        text-align: center;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Language Switcher */
    .language-switcher {
        display: none;
    }
    
    /* Chatbot */
    .chatbot-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 60px;
        height: 60px;
    }
    
    .chatbot-window {
        width: calc(100vw - 2rem);
        height: calc(100vh - 4rem);
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .chatbot-popup {
        bottom: 5rem;
        right: 1rem;
        left: 1rem;
    }
    
    .popup-content {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .price-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .step {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .rules-section {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .chatbot-window {
        width: calc(100vw - 1rem);
        height: calc(100vh - 2rem);
        bottom: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
    }
    
    .chatbot-toggle {
        bottom: 0.5rem;
        right: 0.5rem;
        width: 55px;
        height: 55px;
    }
    
    .mobile-menu-header {
        padding: 1rem 1.5rem;
    }
    
    .mobile-nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
