/* =========================================
   1. GLOBAL RESET & VARIABLES
   ========================================= */
:root {
    --primary-color: #007bff;   /* Blue for trust */
    --secondary-color: #28a745; /* Green for download/action */
    --accent-color: #ffc107;    /* Gold/Yellow for bonuses */
    --text-color: #333333;
    --bg-color: #f4f7f6;
    --white: #ffffff;
    --danger: #dc3545;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px; /* SEO friendly base size */
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents CLS issues */
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky; /* Sticky header for better UX */
    top: 0;
    z-index: 1000;
}

header > div {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    flex-wrap: wrap; /* Mobile friendly wrap */
}

header a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: var(--primary-color);
}

header img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

nav a {
    color: var(--text-color);
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

nav a:hover {
    background-color: #e9ecef;
}

/* Mobile Nav Adjustment */
@media (max-width: 600px) {
    header > div {
        flex-direction: column;
        gap: 10px;
    }
    nav ul {
        font-size: 14px;
        gap: 10px;
    }
}

/* =========================================
   3. MAIN LAYOUT & HERO SECTION
   ========================================= */
main {
    max-width: 800px; /* Reading focused width for SEO */
    margin: 20px auto;
    padding: 0 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

#hero-section {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

#hero-section h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

#hero-section img {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* =========================================
   FIXED DOWNLOAD BUTTON STYLE
   ========================================= */

/* Button ka design */
.main-download-btn {
    display: inline-block;        /* Link ko button jaisa dikhane ke liye zaruri */
    background-color: #28a745;    /* Green Color */
    color: #ffffff;               /* White Text */
    padding: 12px 40px;           /* Button ka size */
    border-radius: 50px;          /* Gol kinare */
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;        /* Link ke niche ki line hatayi */
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4); /* Green Shadow */
    
    /* Animation */
    animation: pulse 2s infinite;
}

/* Mouse le jane par effect */
.main-download-btn:hover {
    background-color: #218838;    /* Dark Green */
    transform: translateY(-3px);  /* Thoda upar uthega */
}

/* Pulse Animation Code */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* =========================================
   4. APP DETAILS TABLE
   ========================================= */
#app-details-section {
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.95rem;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f8f9fa;
    width: 40%;
    color: #555;
}
/* =========================================
   TABLE LINK STYLE
   ========================================= */
.table-link {
    color: #007bff;       /* Blue Color */
    font-weight: bold;    /* Mota text */
    text-decoration: none;
    border-bottom: 1px dashed #007bff; /* Niche dotted line style */
}

.table-link:hover {
    color: #0056b3;       /* Dark Blue on hover */
    border-bottom: 1px solid #0056b3; /* Solid line on hover */
}
/* =========================================
   5. SEO CONTENT & TEXT
   ========================================= */
#seo-content-section {
    margin: 30px 0;
}

#seo-content-section h2 {
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #222;
}

#seo-content-section h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #444;
}

#seo-content-section p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify; /* Better look for articles */
}
/* =========================================
   USER REVIEWS SECTION
   ========================================= */
#reviews-section {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px;
}

#reviews-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

/* Overall Rating Box */
.review-summary {
    text-align: center;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px dashed #007bff;
}

.rating-big {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.review-summary p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Reviews List */
.reviews-container {
    display: flex;
    flex-wrap: wrap; /* Mobile me niche, Desktop me side-by-side */
    gap: 15px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    flex: 1 1 300px; /* Minimum width 300px rahegi */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.user-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.user-icon {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-header strong {
    display: block;
    font-size: 0.95rem;
    color: #333;
}

.small-stars {
    font-size: 0.8rem;
    color: #ffc107; /* Golden color */
}

.date {
    margin-left: auto; /* Date ko right side dhakelta hai */
    font-size: 0.75rem;
    color: #999;
}

.review-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}
/* =========================================
   6. RISK DISCLAIMER
   ========================================= */
#risk-disclaimer-section {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    font-size: 0.9rem;
}

#risk-disclaimer-section h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #856404;
}

/* =========================================
   7. MORE APPS GRID (Mobile Responsive)
   ========================================= */
/* =========================================
   LIST STYLE APPS (Compact & Mobile Friendly)
   ========================================= */

#more-apps {
    display: flex;
    flex-direction: column; /* Sabhi apps ek ke niche ek aayenge */
    gap: 8px; /* Do apps ke beech me thoda gap */
    padding: 10px 0;
}

#more-apps h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Individual App Row */
#more-apps > div {
    display: flex;       /* Row system (Aadi line) */
    align-items: center; /* Sab kuch vertically center rahega */
    justify-content: space-between; /* Logo left, Button right */
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 10px;   /* Kam padding taaki space bache */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* 1. LOGO (Left Side) */
#more-apps img {
    width: 45px;  /* Logo chota rakha hai space bachane ke liye */
    height: 45px;
    border-radius: 8px;
    margin: 0;
    flex-shrink: 0; /* Logo dabega nahi */
}

/* 2. APP NAME & TEXT (Center) */
#more-apps h3 {
    flex-grow: 1; /* Beech ka sara space iska */
    margin: 0 12px; /* Logo aur Button se duri */
    font-size: 0.95rem;
    text-align: center;
    color: #333;
    line-height: 1.2;
}

/* Agar aapko Name ke niche "Free Bonus" jaisa text dikhana hai bina HTML badle */
#more-apps h3::after {
    content: 'Get ₹41 - ₹101 Bonus Free'; /* Ye text name ke niche aayega */
    display: block;
    font-size: 0.7rem; /* Chota font */
    color: #28a745;    /* Green color */
    margin-top: 2px;
    font-weight: normal;
}

/* 3. DOWNLOAD BUTTON (Right Side) */
#more-apps a {
    background-color: #007bff; /* Blue Button */
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px; /* Gol Button (Pill shape) */
    text-decoration: none;
    white-space: nowrap; /* Text tutega nahi */
    margin: 0;
    box-shadow: 0 2px 4px rgba(0,123,255,0.3);
}

#more-apps a:active {
    transform: scale(0.95); /* Click karne par effect */
}

/* =========================================
   8. FAQ & FOOTER
   ========================================= */
/* =========================================
   FAQ ACCORDION STYLES
   ========================================= */
#faq-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

.faq-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Question Button Style */
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: bold;
    transition: transform 0.3s;
}

/* Answer Style (Hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafafa;
    padding: 0 20px; /* Top-Bottom padding 0 rakhi hai animation ke liye */
}

.faq-answer p, .faq-answer ol, .faq-answer ul {
    margin: 15px 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Sign Up Steps Formatting */
.faq-answer ol, .faq-answer ul {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 5px;
}

/* Jab FAQ khulega (Active State) */
.faq-item.active .faq-answer {
    max-height: 500px; /* Itna height ki content dikh jaye */
    border-top: 1px solid #f1f1f1;
}

.faq-item.active .icon {
    transform: rotate(45deg); /* + ko x bana dega */
    color: #dc3545; /* Red color */
}


/* =========================================
   SOCIAL SHARE SECTION
   ========================================= */
#share-section {
    text-align: center;
    margin: 30px auto;
    padding: 20px 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 800px;
}

#share-section h3 {
    color: #333;
    margin-bottom: 5px;
}

#share-section p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.share-buttons {
    display: flex;
    flex-direction: column; /* Mobile me ek ke niche ek */
    gap: 15px;
    justify-content: center;
    align-items: center;
}

/* Button Design */
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 300px; /* Jyada chauda nahi hoga */
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-btn:active {
    transform: scale(0.98);
}

/* WhatsApp Color */
.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

/* Telegram Color */
.telegram {
    background: linear-gradient(45deg, #0088cc, #005f8d);
}

/* Desktop View (Side by Side) */
@media (min-width: 600px) {
    .share-buttons {
        flex-direction: row; /* Desktop me bagal me */
    }
}

/* =========================================
   SOCIAL COMMUNITY SECTION (Cards Design)
   ========================================= */
#social-community {
    padding: 20px 15px;
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

#social-community h2 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
}

#social-community p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.social-grid {
    display: flex;
    flex-direction: column; /* Mobile first: Ek ke niche ek */
    gap: 15px;
}

/* Common Card Design */
.social-card {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-card:active {
    transform: scale(0.98);
}

/* Icon Box */
.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 15px;
}

/* Text */
.social-text {
    text-align: left;
    flex-grow: 1;
}

.social-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.social-text span {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: normal;
}

/* Arrow */
.arrow {
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.8;
}

/* Individual Colors */
.telegram-card {
    background: linear-gradient(135deg, #0088cc, #005f8d); /* Telegram Blue */
}

.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp Green */
}

.insta-card {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); /* Insta Color */
}

/* Desktop View */
@media (min-width: 600px) {
    .social-grid {
        flex-direction: row; /* Desktop me bagal me */
    }
    .social-card {
        flex: 1; /* Barabar width */
    }
}

/* =========================================
   MULTI-SOCIAL POPUP DESIGN
   ========================================= */

dialog {
    border: none;
    border-radius: 16px;
    padding: 0; /* Padding inner container me denge */
    width: 90%;
    max-width: 350px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    /* Center positioning */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { opacity: 0; transform: translate(-50%, -60%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.6); /* Dark Background */
    backdrop-filter: blur(4px); /* Blur Effect */
}

.popup-content {
    padding: 25px 20px;
    text-align: center;
}

.popup-content h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    color: #333;
}

.popup-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Button Container */
.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Common Button Style */
.pop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.pop-btn:hover {
    transform: scale(1.02);
}

/* Specific Colors */
.telegram-btn {
    background: #0088cc;
}

.whatsapp-btn {
    background: #25D366;
}

.insta-btn {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

/* Close Button (Subtle) */
.close-btn {
    margin-top: 20px;
    background: none;
    border: none;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.close-btn:hover {
    color: #333;
}
/* =========================================
   UPDATED FOOTER CSS (Mobile Friendly)
   ========================================= */
footer {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 30px 10px;
    margin-top: 40px;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;      /* Gap thoda kam kiya taaki fit ho jaye */
    margin-bottom: 15px;
    flex-wrap: wrap; /* IMP: Ye line zaruri hai taaki mobile me 2 line ban jaye */
}

footer a {
    color: #aaa;    /* Default color */
    font-size: 0.9rem;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffffff; /* Mouse le jane par white ho jayega */
    text-decoration: underline;
}

footer p {
    font-size: 0.8rem;
    opacity: 0.7;
}


/* =========================================
   SCROLL LOCK CLASS (Jab Popup khula ho)
   ========================================= */
body.stop-scrolling {
    overflow: hidden; /* Scroll band karega */
    height: 100vh;    /* Screen ki height fix karega */
}

/* =========================================
   ABOUT & DISCLAIMER PAGE STYLES
   ========================================= */
.content-wrapper {
    max-width: 800px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.content-wrapper h1 {
    color: var(--primary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* Specific Style for Disclaimer Headings inside content-wrapper */
.content-wrapper h2 {
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.4rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.content-wrapper p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

.about-list {
    list-style: none;
    margin-bottom: 20px;
}

.about-list li {
    background: #f9f9f9;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.cta-box {
    margin-top: 30px;
    text-align: center;
    background: #e9ecef;
    padding: 20px;
    border-radius: 10px;
}

.cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}
/* =========================================
   RISK ALERT BOX STYLE (For Disclaimer Page)
   ========================================= */
.risk-alert-box {
    background-color: #fff3cd; /* Light Yellow/Orange Background */
    border-left: 5px solid #dc3545; /* Red line on left */
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.risk-alert-box h3 {
    color: #856404;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.risk-alert-box p {
    color: #856404;
    margin: 0;
    font-size: 0.95rem;
}