:root {
    --primary: #ff3e6d;
    --primary-glow: rgba(255, 62, 109, 0.5);
    --secondary: #7000ff;
    --bg-dark: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    background: rgba(255, 62, 109, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 62, 109, 0.2);
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

/* Play Store Style Dashboard */
.technical-hero-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px !important;
    padding: 1.5rem !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.technical-hero-card .info-row {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0.5rem;
}

.technical-hero-card i {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0;
    opacity: 0.9;
}

.technical-hero-card strong {
    font-size: 0.95rem;
    color: #fff;
}

.technical-hero-card span {
    font-size: 0.65rem;
    color: var(--text-dim);
    font-weight: 500;
}

.app-logo-main {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.app-logo-main::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--primary);
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
}

.app-logo-main img {
    width: 110px;
    height: 110px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.1);
}

.marketing-hook {
    padding: 6rem 5% 4rem;
    text-align: center;
}

.hero-badge {
    background: rgba(255, 62, 109, 0.15);
    color: var(--primary);
    border: 1px solid rgba(255, 62, 109, 0.3);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.technical-hero-card i {
    color: var(--primary);
    margin-right: 5px;
    font-size: 0.9rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #00d2ff;
    top: 40%;
    left: 20%;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 5% 4rem; /* Reduced from 6rem */
    text-align: center;
}

@media (min-width: 992px) {
    .hero {
        grid-template-columns: 1.2fr 0.8fr;
        text-align: left;
    }
}

.hero-content {
    padding-right: 0;
}

@media (min-width: 992px) {
    .hero-content {
        padding-right: 2rem;
    }
}

.app-logo-main {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

@media (min-width: 992px) {
    .app-logo-main {
        justify-content: flex-start;
    }
}

.app-logo-main img {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(255, 62, 109, 0.3), 0 0 20px rgba(255, 62, 109, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

@media (min-width: 992px) {
    .app-logo-main img {
        width: 120px;
        height: 120px;
    }
}

.badge {
    background: rgba(255, 62, 109, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 62, 109, 0.2);
}

h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 992px) {
    h1 {
        font-size: 4.5rem;
        letter-spacing: -2px;
    }
}

p {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    p {
        font-size: 1.2rem;
        margin-left: 0;
    }
}

.download-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

@media (min-width: 576px) {
    .download-container {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .download-container {
        justify-content: flex-start;
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 992px) {
    .hero-stats {
        justify-content: flex-start;
        gap: 2.5rem;
    }
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background: #1a1a1e;
    border-radius: 40px;
    padding: 10px;
    border: 8px solid #2a2a2e;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Screenshots Section */
.screenshots-section {
    padding: 4rem 5%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 800;
}

.slider-container {
    width: 100vw;
    margin-left: -5%;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    display: flex;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 1rem;
    padding: 0 5%;
    scroll-snap-type: x mandatory;
}

.slider-item {
    flex: 0 0 115px; /* Smaller width for mobile to show 3 items */
    height: 200px; /* Adjusted height for better aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    scroll-snap-align: start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

/* Larger screens */
@media (min-width: 768px) {
    .slider-item {
        flex: 0 0 280px;
        height: 500px;
    }
    .slider-track {
        gap: 2rem;
    }
}

.slider-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.slider-item img, .slider-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

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

.info-card ul {
    list-style: none;
}

.info-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

.info-card ul li span {
    color: var(--text-dim);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
}

/* RATINGS & REVIEWS */
.rating-big {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
}

@media (max-width: 600px) {
    .rating-big {
        flex-direction: column;
        text-align: center;
    }
}

.rating-score .score {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.rating-score .out-of {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 5px;
}

.rating-bars {
    flex: 1;
    width: 100%;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
}

.review-name {
    font-weight: 700;
    font-size: 1rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.review-stars {
    color: #f59e0b;
    letter-spacing: 2px;
    margin-left: auto;
}

.review-text {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* WRITE REVIEW */
.write-review {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.review-input, .review-name-input {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 12px;
    color: #fff;
    margin-bottom: 1rem;
    outline: none;
}

.review-input:focus, .review-name-input:focus {
    border-color: var(--primary);
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 4rem;
    }
    
    p { margin-left: auto; margin-right: auto; }
    
    .download-container { justify-content: center; }
    
    .hero-stats { justify-content: center; }
    
    h1 { font-size: 3rem; }
    
    .nav-links { display: none; }
}
