:root {
    --bg-dark: #0B1120;
    --bg-card: #1E293B;
    --primary: #00f2ea;
    --primary-glow: rgba(0, 242, 234, 0.5);
    --secondary: #7c3aed;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --gradient-main: linear-gradient(135deg, #00f2ea 0%, #7c3aed 100%);

    --container-width: 1200px;
    --header-height: 80px;
    --radius-lg: 24px;
    --radius-md: 16px;

    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.5);
}

.btn-secondary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 242, 234, 0.5);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Header */
.header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(11, 17, 32, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* Needed for absolute centering of socials */
}

.header-socials {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-social-link {
    font-size: 1.4rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.nav-social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

.social-icon-lg {
    font-size: 1.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.social-icon-lg.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

.social-icon-lg.tiktok:hover {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 0, 80, 0.5));
    transform: scale(1.1);
}

.social-icon-lg.youtube:hover {
    color: #FF0000;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.4));
    transform: scale(1.1);
}

.nav a:not(.btn) {
    color: var(--text-muted);
    font-weight: 500;
}

.nav a:not(.btn):hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(11, 17, 32, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.small-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.hero-actions {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-actions .btn-group {
    justify-content: flex-start;
}

.stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame {
    width: 320px;
    border-radius: 40px;
    border: 10px solid #1e293b;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 234, 0.1);
    background: #000;
    overflow: hidden;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.phone-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Updated Floating Mockup Animation */
/* .floating-mockup class is now on .phone-frame which already has the animation logic */

/* Floating Cards in Hero */
/* Floating Cards in Hero */
.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.95);
    /* Made slightly more opaque to pop */
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Brighter border */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    /* Stronger shadow */
    animation: float-front 5s ease-in-out infinite reverse;
    z-index: 20;
}

.card-1 {
    top: 20%;
    left: -20px;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 1s;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.Netflix {
    background: #E50914;
}

.Spotify {
    background: #1DB954;
}

.card-details {
    display: flex;
    flex-direction: column;
}

.card-details span {
    font-weight: 700;
    font-size: 0.9rem;
}

.card-details small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.price {
    font-weight: 800;
    color: var(--primary);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #0f172a;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 234, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Showcase Section */
.showcase {
    padding: 100px 0;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.phone-frame-flat {
    border-radius: 30px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 400px;
    margin: 0 auto;
}

.chart-image {
    width: 100%;
    display: block;
}

.feature-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.feature-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-list p {
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111827 50%, var(--bg-dark) 100%);
    overflow: hidden;
}

.gallery-marquee {
    width: 100%;
    padding: 40px 0;
    position: relative;
}

/* Fade Edges for Marquee */
.gallery-marquee::before,
.gallery-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.gallery-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.gallery-item {
    height: 500px;
    width: auto;
    border-radius: 24px;
    border: 6px solid #1e293b;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }

    /* Adjust for gap */
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
    background: #080c16;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

.footer-social-link.tiktok:hover {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 0, 80, 0.5));
    transform: scale(1.1);
}

.footer-social-link.youtube:hover {
    color: #FF0000;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.4));
    transform: scale(1.1);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes float-front {
    0% {
        transform: translateY(0) translateZ(50px);
    }

    50% {
        transform: translateY(-20px) translateZ(50px);
    }

    100% {
        transform: translateY(0) translateZ(50px);
    }
}

@keyframes shine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.shine-effect {
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

/* Utilities for Scroll Animation */
[data-animate] {
    opacity: 0;
    transition: all 1s ease;
}

[data-animate="slide-up"] {
    transform: translateY(30px);
}

[data-animate="fade-in"] {
    transform: scale(0.95);
}

.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 900px) {

    .hero-container,
    .showcase-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .stats-row {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .floating-card {
        display: none;
        /* Hide floating cards on tablet for cleaner look */
    }

    .header-socials {
        display: none;
    }

    .showcase-container {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 600px) {
    .nav a:not(.btn) {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Policy Page Styles */
.policy-section {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.policy-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.policy-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.policy-content h2 {
    color: var(--text-main);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.policy-content a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .policy-section h1 {
        font-size: 2.5rem;
    }

    .policy-content {
        padding: 1.5rem;
    }
}