:root {
    --primary: #26D0CE;
    /* Teal from screenshot */
    --primary-dark: #1A2980;
    --secondary: #e0f2f1;
    --accent: #FF1493;
    /* deep pink */
    --dark-bg: #0f172a;
    /* slate 900 */
    --darker-bg: #020617;
    /* slate 950 */
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --gradient-main: linear-gradient(135deg, #26D0CE 0%, #1A2980 100%);
    /* Teal gradient */
    --gradient-accent: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--darker-bg);
    background-image: radial-gradient(circle at 50% 0%, #1A2980 0%, var(--darker-bg) 70%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient Background Lights */
.ambient-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
}

.light-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: #26D0CE;
    /* Teal */
}

.light-2 {
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #FF1493;
    /* Deep Pink */
}

/* Typography & Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(30, 11, 75, 0.8);
    border-bottom: var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

.dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(216, 180, 254, 0.5);
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: var(--glass-border);
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    border: var(--glass-border);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #2d2d2d;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    z-index: 2;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    /* Gradient matching the screenshot: Light Purple to Darker Purple */
    background: linear-gradient(180deg, #e9d5ff 0%, #c084fc 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 40px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-logo {
    font-weight: 800;
    color: #7e22ce;
    /* Dark Purple Text */
    font-size: 1.4rem;
}

.coin-badge {
    background: #7e22ce;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-content {
    flex: 1;
    padding: 10px 20px;
    overflow-y: hidden;
}

.verified-title {
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* User List Cards matching screenshot */
.user-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-card {
    background: linear-gradient(90deg, #d8b4fe 0%, #c084fc 100%);
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.user-avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid white;
}

.user-info {
    flex: 1;
}

.user-name {
    color: #000;
    font-weight: 700;
    font-size: 1rem;
}

.user-location {
    color: #333;
    font-size: 0.7rem;
}

.user-lang {
    color: #444;
    font-size: 0.7rem;
}

.call-actions {
    display: flex;
    gap: 8px;
}

.call-btn {
    width: 35px;
    height: 35px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0;
    /* Green Icon */
    font-size: 0.9rem;
}

.app-nav {
    height: 60px;
    background: #7e22ce;
    /* Deep Purple Nav */
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin: 0 10px 10px;
}

.nav-icon {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.nav-icon.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
    padding: 0.8rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?ixlib=rb-1.2.1&auto=format&fit=crop&w=200&q=80') center/cover;
}

.card-text p {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: var(--glass-border);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #d946ef;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Download Section */
.download-section {
    padding: 100px 0;
    text-align: center;
}

.download-container {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    padding: 4rem;
    border-radius: 30px;
    border: var(--glass-border);
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #fff;
}

.link-column a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.link-column a:hover {
    color: #d946ef;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Policy Page Styles */
.policy-content {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #d946ef;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.policy-content ul {
    padding-left: 1.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .nav-links {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* App Screenshot Wrapper */
.app-screenshot-wrapper {
    position: relative;
    width: 300px; /* Match phone width */
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 8px solid #2d2d2d;
    background: #000;
    overflow: hidden;
    z-index: 2;
    margin: 0 auto;
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* Feature Image */
.feature-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.feature-image-container img {
    max-width: 300px;
    border-radius: 30px;
    border: 8px solid #2d2d2d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* New Section Styles */
.bestie-rooms-section {
    padding: 100px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
}

.bestie-rooms-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

@media (max-width: 968px) {
    .bestie-rooms-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .feature-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

