@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700;900&display=swap');

:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #FF2A5F;
    --accent-hover: #e61f4d;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

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

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 42, 95, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 42, 95, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, border-bottom 0.3s ease;
}

nav.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
}

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

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: transparent;
    box-shadow: 0 0 20px rgba(255, 42, 95, 0.4);
    transform: translateY(-2px);
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.text-accent {
    color: var(--accent);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

/* Floating Elements */
.floating-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.fc-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.fc-2 {
    top: 60%;
    right: 10%;
    animation-delay: -3s;
    border-color: rgba(255, 42, 95, 0.3);
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff8a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Marquee */
.marquee-wrapper {
    background: var(--accent);
    padding: 1rem 0;
    transform: rotate(-2deg);
    margin: 4rem 0 6rem;
    width: 105vw;
    margin-left: -2.5vw;
    box-shadow: 0 0 30px rgba(255, 42, 95, 0.2);
    overflow: hidden;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.marquee span {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--bg-color);
    text-transform: uppercase;
    padding: 0 2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Features */
.features {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card.highlight {
    background: linear-gradient(145deg, rgba(255, 42, 95, 0.1) 0%, rgba(20, 20, 20, 0) 100%);
    border-color: rgba(255, 42, 95, 0.3);
}

.feature-card.highlight:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 42, 95, 0.15);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid var(--card-border);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-weight: 300;
}



/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 4rem 5% 2rem;
    text-align: center;
    background: #000;
}

.footer-cta {
    margin-bottom: 4rem;
}

.footer-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: black;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}

.store-icon {
    font-size: 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #444;
    font-size: 0.9rem;
}

/* Utilities for Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Standard Pages */
.page-container {
    padding: 10rem 5% 4rem;
    max-width: 800px;
    margin: 0 auto;
    min-height: 80vh;
}

.page-container h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.page-container .updated {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.page-content {
    color: #ccc;
    font-weight: 300;
    font-size: 1.1rem;
}

.page-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.page-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.page-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.page-content li {
    margin-bottom: 0.6rem;
    line-height: 1.8;
}

.page-content strong {
    color: var(--text-main);
    font-weight: 600;
}

.page-content a {
    color: var(--accent);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-card {
        display: none;
    }



    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        padding: 8rem 5% 2rem;
    }

    .marquee-wrapper {
        margin: 2rem 0 4rem;
    }
}