/* ========================================
   Play Store Mod APK - Mobile First Design
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00C853;
    --primary-dark: #00A045;
    --secondary: #1a1a2e;
    --dark: #0f0f1a;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --accent: #FFD700;
    --gradient: linear-gradient(135deg, #00C853 0%, #00A045 50%, #007B33 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(180deg, #00C853 0%, #007B33 100%);
    padding: 30px 20px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
}

.hero-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* Content Sections - Plain text, no box */
.content-section {
    padding: 20px 0;
    margin-bottom: 15px;
}

.section-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: "▶";
    color: var(--accent);
}

/* Article Content */
.article-content {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: justify;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content strong {
    color: var(--text);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 120, 51, 0.1) 100%);
    border-left: 4px solid var(--primary);
    padding: 15px;
    border-radius: 0 10px 10px 0;
    margin: 15px 0;
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 15px;
    background: rgba(0, 200, 83, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(0, 200, 83, 0.15);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.3rem;
    min-width: 30px;
}

.feature-text strong {
    color: var(--primary);
    display: block;
    margin-bottom: 3px;
}

/* Steps */
.steps-list {
    counter-reset: step;
    list-style: none;
}

.steps-list li {
    position: relative;
    padding: 20px 20px 20px 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.steps-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

/* FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 200, 83, 0.1);
}

.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-answer {
    padding: 0 20px 18px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    padding: 20px 30px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 25px 0;
    animation: glow 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 200, 83, 0.5);
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    }

    50% {
        box-shadow: 0 8px 35px rgba(0, 200, 83, 0.6);
    }
}

.cta-button.secondary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
}

/* Ad Placeholder */
.ad-container {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(0, 200, 83, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 25px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-container span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Verification Page */
.verify-container {
    text-align: center;
    padding: 40px 20px;
}

.verify-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    height: 20px;
    overflow: hidden;
    margin: 30px 0;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 25px;
    width: 0%;
    transition: width 0.5s ease;
}

.timer-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0;
}

.check-list {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 30px auto;
}

.check-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.check-list li .check-icon {
    font-size: 1.5rem;
}

.check-list li.checked .check-icon {
    color: var(--primary);
}

.check-list li.pending .check-icon {
    color: var(--text-muted);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Download Page */
.download-box {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 120, 51, 0.2) 100%);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    margin: 15px 0;
}

.download-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.file-info {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.file-info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.file-info-row:last-child {
    border-bottom: none;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.share-btn {
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.telegram {
    background: #0088cc;
    color: white;
}

.share-btn:hover {
    transform: scale(1.05);
}

/* Disclaimer */
.disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.85rem;
    color: #FFC107;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    border-radius: 20px 20px 0 0;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

/* Responsive */
@media (min-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-button {
        font-size: 1.4rem;
        padding: 22px 35px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }

    .content-section {
        padding: 35px 30px;
    }

    .feature-list li {
        padding: 15px 20px;
    }
}

/* Hidden utility */
.hidden {
    display: none !important;
}