
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f0c29;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}


body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(-45deg, #302b63, #24243e, #0f0c29, #2b1055);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -2;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
}

.modal-content {
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 350px;
    border: 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.highlight-text {
    color: #38ef7d;
    font-weight: bold;
}

.close-btn {
    margin-top: 20px;
    padding: 10px 30px;
    background: #ffd700;
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.close-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

@keyframes popIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}



.hero {
    margin-bottom: 50px;
}

.app-logo {
    font-size: 4.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

.main-title {
    font-size: 3rem; /* Adjusted for mobile */
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1rem;
    color: #d1d1d1;
    margin-bottom: 30px;
}

.live-count {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #38ef7d;
    font-weight: 500;
}

.pulse {
    animation: pulse 1.5s infinite;
    color: red;
}


.btn-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 320px;
    padding: 12px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-android {
    background: linear-gradient(45deg, #11998e, #38ef7d);
    box-shadow: 0 5px 20px rgba(56, 239, 125, 0.3);
}

.btn-ios {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.btn-icon { font-size: 2.2rem; margin-right: 15px; }
.btn-text { display: flex; flex-direction: column; text-align: left; }
.btn-text small { font-size: 0.8rem; opacity: 0.8; }
.btn-text span { font-size: 1.2rem; font-weight: 700; }


.income-banner {
    background: linear-gradient(to right, #DA22FF, #9733EE);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(151, 51, 238, 0.4);
    color: white;
}

.income-banner h2 { margin-bottom: 10px; font-size: 1.8rem; }
.income-banner p { font-size: 0.95rem; margin-bottom: 20px; opacity: 0.9; }

.stats-row {
    display: flex;
    justify-content: space-around;
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 15px;
}
.stat-item h3 { font-size: 1.5rem; color: #ffd700; }

/* --- Features Grid --- */
.features { margin-bottom: 50px; }
.section-title h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: ''; display: block; width: 50%; height: 3px;
    background: #00c6ff; margin: 5px auto 0; border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.1); }

.icon-box {
    font-size: 2rem; margin-bottom: 15px;
    width: 60px; height: 60px; line-height: 60px;
    border-radius: 50%; margin: 0 auto 15px auto;
    background: rgba(255,255,255,0.1);
}
.color-1 { color: #ff6b6b; }
.color-2 { color: #4ecdc4; }
.color-3 { color: #ffe66d; }


.referral-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    border: 1px solid rgba(255,215,0,0.3);
}

.referral-badge {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 15px;
    animation: pulse 2s infinite;
}


.ios-instruction { margin-top: 40px; }
.ios-card {
    background: #fff; color: #333; padding: 25px;
    border-radius: 20px; text-align: left;
}
.steps li { display: flex; align-items: center; margin-bottom: 10px; font-size: 0.9rem; }
.step-num {
    background: #007aff; color: white; width: 25px; height: 25px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: bold; margin-right: 15px; flex-shrink: 0;
}


footer {
    margin-top: 50px; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-links a { color: #aaa; text-decoration: none; margin: 0 5px; font-size: 0.9rem; }
.copyright { font-size: 0.8rem; color: #666; margin-top: 10px; }


@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }


@media (min-width: 768px) {
    .main-title { font-size: 4.5rem; }
    .btn-group { flex-direction: row; justify-content: center; }
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .container { padding: 20px 15px; }
    .main-title { font-size: 2.5rem; }
    .notification-box { left: 10px; right: 10px; bottom: 10px; justify-content: center; width: auto; }
}





.screenshots-section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.screenshot-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px 5px;
    scroll-behavior: smooth;
    cursor: grab; 
}


.app-header-container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 25px;
    padding: 0 5px;
    text-align: left; 
}


.app-name {
    font-size: 2.2rem;
    font-weight: 800; 
    margin-bottom: 5px;
    line-height: 1.2;
    
   
    color: #ffd700; 
    background: linear-gradient(to right, #ffd700, #ffdb4d); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    
    
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}


.dev-name {
    color: #01875f; 
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}


.app-icon-box img {    
    width: 100px; 
    height: 100px;
    
    border-radius: 22px; 
    
    
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    
    
    border: 3px solid #ffd700; 
    
    
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    object-fit: cover;
    transition: transform 0.3s;
}



/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
    .app-name {
        font-size: 1.5rem; 
    }
    .app-icon-box img {
        width: 60px; 
        height: 60px;
    }
    .dev-name {
        font-size: 0.9rem;
    }
}




.screenshot-container::-webkit-scrollbar {
    height: 8px; 
    display: block; 
}


.screenshot-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 10px;
}


.screenshot-container::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffd700, #fdb931); 
    border-radius: 10px;
    cursor: pointer;
}


.screenshot-container::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}


.screenshot-container {
    scrollbar-width: thin;
    scrollbar-color: #ffd700 rgba(255, 255, 255, 0.1);
}

.screenshot-container img {
    width: 160px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
    flex-shrink: 0;
    
    
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none; 
}


.screenshot-container:active {
    cursor: grabbing;
}

/* --- Ratings & Reviews (Play Store Style) --- */
.reviews-section {
    margin: 40px 0 60px 0;
    text-align: left; 
    padding: 0 10px;
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.rating-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.arrow-icon {
    font-size: 1.2rem;
    color: #ccc;
    cursor: pointer;
}


.rating-container {
    display: flex;
    align-items: flex-start; 
    gap: 30px;
    margin-bottom: 30px;
}


.rating-left {
    text-align: center;
    flex-shrink: 0;
}

.big-rating {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stars-static {
    color: #01875f; 
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.total-count {
    font-size: 0.8rem;
    color: #aaa;
}


.rating-bars {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-label {
    font-size: 0.8rem;
    font-weight: 600;
    width: 10px;
    text-align: right;
}

.progress-track {
    background: rgba(255, 255, 255, 0.1);
    height: 10px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    background-color: #01875f; 
    height: 100%;
    border-radius: 10px;
}


.user-comments {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.u-date {
    font-weight: normal;
    font-size: 0.8rem;
    color: #aaa;
}

.u-stars {
    color: #01875f;
    font-size: 0.7rem;
    margin-bottom: 8px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .rating-container {
        gap: 15px;
    }
    .big-rating {
        font-size: 2.8rem;
    }
}


.floating-bg-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1; 
}


.bg-floating-item {
    position: absolute;    
    opacity: 0.15;    
    mix-blend-mode: overlay;     
    filter: blur(4px);    
    animation: floatBackground 40s linear infinite;
}

.bg-floating-item img {    
    width: 500px;
    height: auto;
    display: block;    
    max-width: 90vw;
    object-fit: cover;
}



.pos-1 {
    top: -10%;
    left: -10%;
    animation-delay: -5s;
}


.pos-2 {
    top: -10%;
    right: -5%;
    animation-duration: 50s;
    animation-delay: -15s;
    animation-direction: reverse;
}


.pos-3 {
    top:  50%;
    left: 50%;
    right: auto;         
    margin-left: -250px; 
    margin-top: -250px; 

    animation-duration: 45s;
    animation-delay: -2s;
}


.pos-4 {
    top: 60%;
    left: -5%;
    animation-duration: 55s;
    animation-delay: -25s;
    animation-direction: reverse;
}


.pos-5 {
    top: 60%;
    right: -5%;
    animation-duration: 50s;
    animation-delay: -15s;
    animation-direction: reverse
}


@keyframes floatBackground {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(30px, 50px) rotate(5deg) scale(1.05);
    }
    66% {
        transform: translate(-30px, 80px) rotate(-5deg) scale(0.95);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .bg-floating-item img {
        
        width: 250px;
    }
    .bg-floating-item {
        
        filter: blur(2px);
        opacity: 0.12;
    }
}


/* --- Lightbox Styles (Fixed for Mobile & Navigation Added) --- */
.lightbox {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    
    
    justify-content: center; 
    align-items: center;     
}

.lightbox-content {
    
    max-width: 90%;
    max-height: 80vh;
    width: auto;
    height: auto;
    
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    
    
    animation: zoomSmooth 0.3s ease-out;
}


@keyframes zoomSmooth {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -25px; 
    color: white;
    font-weight: bold;
    font-size: 25px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0,0,0,0.3); 
}

/* Position */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

/* Hover Effect */
.prev:hover, .next:hover {
    background-color: rgba(255, 215, 0, 0.8); 
    color: black;
}

/* Close Button Position Update */
.close-lightbox {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
}
.close-lightbox:hover {
    color: #ffd700;
}

/* Zoom Animation */
@keyframes zoomIn {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* --- IMPORTANT UPDATE for Screenshots --- */

.screenshot-container img {
    cursor: zoom-in; 
    pointer-events: auto !important; 
}

/* --- Mobile Fix for Logo Position --- */
@media (max-width: 480px) {
    .app-logo {
        margin-top: 60px !important; 
    }
}