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


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    /* color: #333; */
    background-color: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF5500, #E14B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF5500;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, #FF5500 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #E14B00 0%, transparent 60%),
        radial-gradient(circle at 50% 90%, #FF6B1A 0%, transparent 40%);
    opacity: 0.15;
    animation: lavaFlow 30s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, #FF7722 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, #FF4500 0%, transparent 55%);
    opacity: 0.1;
    animation: lavaFlow2 40s ease-in-out infinite reverse;
    z-index: 1;
}


@keyframes lavaFlow {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(-30px, -20px) scale(1.1) rotate(5deg);
    }
    50% {
        transform: translate(20px, 30px) scale(0.9) rotate(-3deg);
    }
    75% {
        transform: translate(-10px, -25px) scale(1.05) rotate(2deg);
    }
}

@keyframes lavaFlow2 {
    0%, 100% {
        transform: translate(10px, 15px) scale(0.95) rotate(2deg);
    }
    33% {
        transform: translate(25px, -15px) scale(1.08) rotate(-4deg);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.92) rotate(3deg);
    }
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #FF5500, #FF6B1A, #E14B00, #FF7722);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #FF5500, #E14B00);
    color: #eee;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
    justify-content: center;
}

.store-badge svg {
    fill: #eee;
    flex-shrink: 0;
}

.store-text {
    font-weight: 600;
    font-size: 16px;
}

.btn-primary:hover .store-badge {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.3);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: #FF5500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF5500;
}

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

.social-links a {
    padding: 0.5rem 1rem;
    background: #444;
    border-radius: 8px;
}

.social-links a:hover {
    background: #FF5500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

.hero::before {
    animation: lavaMove 20s ease-in-out infinite, pulse 8s ease-in-out infinite;
}

.hero::after {
    animation: lavaMove2 25s ease-in-out infinite reverse, pulse 12s ease-in-out infinite reverse;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Legal page specific styles */
.legal-page {
    padding: 120px 0 80px;
    background: #fff;
    min-height: 100vh;
}

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

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.legal-header .date {
    color: #666;
    font-size: 1rem;
}

.legal-content {
    line-height: 1.8;
    color: #444;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #FF5500;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF5500;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 2rem 0 1rem 0;
}

.legal-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.legal-content ol, .legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #FF5500;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.contact-info {
    background: #FF5500;
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.contact-info a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #FF5500;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #E14B00;
}