* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    color: #fff;
}

/* Navbar */
.navbar {
    background-color: #09511e;
    padding: 1rem 0;
}

.container {
    max-width:1200px;
    margin: auto;
    padding:  0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: white;
    text-decoration: none;
}

.menu-btn {
    display: none;
    font-size: 1.8rem;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

/* Hero */
.hero {
    /* padding: 100px 20px; */
    text-align: center;
    background: linear-gradient(135deg, #0f0f0f, #1e1e1e);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    background-color: #2d89ef;
    padding: 12px 24px;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.btn.ios {
    background-color: #333;
}

/* Features */
.features {
    padding: 60px 20px;
    background-color: #181818;
    text-align: center;
}

.features h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features ul {
    list-style: none;
    line-height: 2;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background-color: #222;
    font-size: 0.9rem;
    color: #aaa;
}

.site-header {
    margin-left: -1rem;
}

.site-logo {
    max-width: 90%;
    width: 100px;
    /* Maximum size on desktop */
    height: auto;
    display: inline-block;
}

/* Optional: reduce further on small screens */
@media (max-width: 480px) {
    .site-logo {
        width: 250px;
    }
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    background: #111;
    color: white;
    padding: 6px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 0 5px #00bfff;
    border: 2px solid #00bfff;
    transition: 0.3s ease;
}

.telegram-btn:hover {
    background: #00bfff;
    color: #111;
}

.telegram-icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
}

/* Responsive for small screens */
@media (max-width: 480px) {
    .telegram-btn {
        font-size: 14px;
        padding: 5px 10px;
    }

    .telegram-icon {
        width: 18px;
        height: 18px;
        margin-right: 6px;
    }
}

.telegram-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px #00bfff;
    }

    50% {
        box-shadow: 0 0 15px #00bfff;
    }

    100% {
        box-shadow: 0 0 5px #00bfff;
    }
}


/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #222;
        position: absolute;
        right: 0;
        top: 60px;
        padding: 1rem;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-btn {
        display: block;
    }
}


.stars {
    color: rgb(255, 0, 179);
    font-size: 1.2rem;
}

.secure {
    color: green;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 8px 0;
}

.red-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e53935;
    /* Red color */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.4);
    /* Red glow */
    transition: background 0.3s ease;
}

.red-download-btn:hover {
    background-color: #c62828;
}

.red-download-btn:hover {
    opacity: 0.9;
}

/* Optional: Smooth scroll on mobile */
.top-apps::-webkit-scrollbar {
    height: 6px;
}

.top-apps::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}



.app-list {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-list-item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    gap: 16px;
    /* flex-wrap: wrap; */
    width: 100%;
    box-sizing: border-box;
    color: black;
    border: 1px solid #eee;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.rank {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
}

.app-info {
    flex: 1;
    min-width: 150px;
}

.app-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
}

.bonus {
    font-size: 0.9rem;
    font-weight: 600;
    color: red;
}

.withdraw {
    font-size: 0.85rem;
    font-weight: 600;
    color: green;
}

.red-download-btn {
    background-color: #e53935;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
    transition: 0.3s;
}

.red-download-btn:hover {
    background-color: #c62828;
}

@media (max-width: 600px) {
    .app-list-item {
        padding: 16px;
        gap: 12px;
    }

    .rank {
        font-size: 1.1rem;
        font-weight: bold;
        color: #333;
        width: auto;
    }

    .app-icon {
        width: 70px;
        height: 70px;
    }

    .app-info h4 {
        font-size: 1rem;
        font-weight: bold;
    }

    .bonus,
    .withdraw {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .red-download-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px;
        font-size: 1rem;
    }
}


.search-tabs-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Search Input */
.search-input {
    width: 90%;
    max-width: 600px;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    outline: none;
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.tab-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border: none;
    background: #e0e0e0;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 0;
    font-size: 1rem;
}

.tab-btn:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.tab-btn:last-child {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.tab-btn.active {
    background: #4c6fff;
    color: white;
}

.apps-tab {
    display: grid;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

/* Desktop: 3 per row */
@media (min-width: 1025px) {
    .apps-tab {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet: 2 per row */
@media (min-width: 768px) and (max-width: 1024px) {
    .apps-tab {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 per row */
@media (max-width: 767px) {
    .apps-tab {
        grid-template-columns: 1fr;
    }
}


.hidden {
    display: none !important;
}

.app-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background: #4c6fff;
    color: white;
}


.top-trending {
    padding: 2rem 1rem;
    text-align: center;
}

.trending-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #212529;
}


@media only screen and (max-width: 600px) {
    .trending-cards {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .btn {
        font-size: 11px;
        padding: 5px 10px;
    }

    .download-btn {
        padding: 0.5rem 1.8rem;
    }

}

@media only screen and (min-width: 600px) {
    .trending-cards {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .card {
        width: 200px;
        padding: 12px;
    }

    .btn {
        font-size: 9px;
        padding: 5px 10px;
    }

    .download-btn {
        padding: 0.5rem 2.5rem;
    }
}


@media only screen and (min-width: 768px) {
    .trending-cards {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .card {
        width: 200px;
        padding: 12px;
    }

    .btn {
        font-size: 15px;
        padding: 5px 10px;
    }

    .download-btn {
        padding: 0.5rem 2rem;
    }
}


@media only screen and (min-width: 992px) {
    .trending-cards {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .card {
        width: 200px;
        padding: 12px;
    }

    .btn {
        font-size: 15px;
        padding: 5px 10px;
    }

    .download-btn {
        padding: 0.5rem 2rem;
    }
}


@media only screen and (min-width: 1200px) {
    .trending-cards {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .card {
        width: 200px;
        padding: 12px;
    }

    .btn {
        font-size: 15px;
        padding: 5px 10px;
    }

    .download-btn {
        padding: 0.5rem 2.5rem;
    }
}

.card {
    border-radius: 20px;
    padding: 20px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media only screen and (max-width: 600px) {
    .card {
        width: 110px;
        padding: 15px;
        font-size: 12px;
        text-align: center;
        border-radius: 15px;
    }
}

.badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #111;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.app-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.gold-bg {
    background: #680606;
}

.silver-bg {
    background: #0b9727;
}

.bronze-bg {
    background: #043d12;
}

.btn {
    border: none;
    color: #fff;
    border-radius: 10px;
    margin-top: 0.8rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.silver-btn {
    background:rgb(3, 11, 118);
    color: #fff;
}

.silver-btn:hover {
    background: #f50057;
}

.gold-btn {
    background:rgb(3, 11, 118);
    color: white;
}

.gold-btn:hover {
    background: #f50057;
}

.bronze-btn {
    background:rgb(3, 11, 118);
    color: #fff;
}

.bronze-btn:hover {
    background: #f50057;
}

.modern-marquee {
    overflow: hidden;
    background-color: #096520;
    color: #f3ebeb;
    padding: 10px 0;
    border-bottom: 2px solid #fbc02d;
    white-space: nowrap;
    position: relative;
    font-weight: bold;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 15s linear infinite;
    font-size: 1rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.contact-section {
    background: #faf4ff;
    color: #fff;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.contact-section h1 {
    color: #ff9800;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}



.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    text-align: center;
}

.contact-info h3 {
    color: #ff9800;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-info div {
    flex: 1 1 250px;
    background: #52487c;
    padding: 20px;
    border-radius: 8px;
}

.contact-info a {
    color: #76b7ff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .contact-section {
        background: #faf4ff;
        color: #fff;
        max-width: 900px;
        margin: 40px auto;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }

    .contact-info {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-around;
        text-align: center;
    }
}

.policy-container {
    max-width: 920px;
    margin: 40px auto;
    padding: 20px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.policy-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ff0066;
    border-bottom: 3px solid #ff0066;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.policy-content {
    background: #ffffff;
    color: #222;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
    font-size: 16px;
}

.policy-content h3 {
    color: #000000;
    margin-top: 20px;
    font-size: 20px;
    border-left: 4px solid #ff0057;
    border-right: 4px solid #ff0057;
    background: aliceblue;
    padding-right: 8px;
    padding-left: 8px;
}

.policy-content a {
    color: #1e90ff;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-content ul {
    list-style: disc;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 8px;
}

/* Mobile Friendly */
@media (max-width: 600px) {
    .policy-content {
        padding: 20px;
    }

    .policy-title {
        font-size: 28px;
    }
}

/* Terms page styling*/
.terms-container {
    max-width: 920px;
    margin: 40px auto;
    padding: 20px;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.terms-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ff0066;
    border-bottom: 3px solid #ff0066;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.terms-content {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    color: #222;
    line-height: 1.75;
    font-size: 15.8px;
}

.terms-content h3 {
    color: #000000;
    margin-top: 20px;
    font-size: 20px;
    border-left: 4px solid #ff0057;
    border-right: 4px solid #ff0057;
    background: aliceblue;
    padding-right: 8px;
    padding-left: 8px;
}

.terms-content ul {
    margin-left: 18px;
    padding-left: 12px;
}

.terms-content a {
    color: #0066cc;
    text-decoration: underline;
}

.terms-note {
    margin-top: 16px;
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 700px) {
    .terms-content {
        padding: 18px;
        font-size: 15px;
    }

    .terms-title {
        font-size: 26px;
    }
}

.footer {
    background: linear-gradient(135deg, #101019, #1e1e2f, #29294d);
    color: white;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Footer Main Container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Logo Section */
.footer-logo img {
    width: 140px;
    margin-bottom: 12px;
}

.footer-logo p {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

/* Quick Links */
.footer-links h4,
.footer-social h4 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid #ff9800;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 6px 0;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff9800;
}

/* Social Icons */
.social-icons a img {
    width: 28px;
    margin-right: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px #ff9800);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    margin-top: 25px;
    padding-top: 10px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo p {
        max-width: 100%;
    }
}