body {
    margin: 0;
    padding: 0;
    font-family: 'Comfortaa', sans-serif;
    color: #ffffff;
    background-color: #000;
    /* fallback color while image loads */
    background-image: url('/assets/background3.gif');
    /* <-- replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    font-size: 32px;
    color: #FF8C00; /* Dark Orange */
    text-shadow: 0 0 6px rgba(255, 140, 0, 0.8),
                 0 0 12px rgba(255, 140, 0, 0.5);
}

@media (max-width: 768px) {
    h1 {
        font-size: 25px;
    }
}

h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FF7F50; /* Coral Orange */
    text-shadow: 0 0 5px rgba(255, 127, 80, 0.8),
                 0 0 10px rgba(255, 127, 80, 0.5);
}

h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFA500; /* Bright Orange */
    text-shadow: 0 0 4px rgba(255, 165, 0, 0.7),
                 0 0 8px rgba(255, 165, 0, 0.4);
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
}

/* Hamburger Button */
.hamburger-btn {
    font-size: 26px;
    background: none;
    border: none;
    color: #fff;
    padding: 12px;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1002;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hamburger-btn:hover {
    transform: scale(1.2);
    color: #FFA500; /* Bright Orange */
    text-shadow: 0 0 6px rgba(255, 165, 0, 0.8),
                 0 0 12px rgba(255, 140, 0, 0.5);
}



/* Sidebar */
.sidebar-menu-wrapper {
    position: fixed;
    top: 0;
    left: -300px;
    width: 240px;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 40, 0, 0.95), rgba(40, 20, 0, 0.95)); /* Warm orange tones */
    color: #fff;
    padding: 60px 20px 20px;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); /* Orange glow */
    transition: left 0.3s ease;
    z-index: 1003;
}

.sidebar-menu-wrapper.open {
    left: 0;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.menu-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Menu Links */
.sidebar-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, color 0.3s ease;
}

.sidebar-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFA500; /* Bright Orange */
    /* Pure Red */
    text-shadow: 0 0 6px rgba(255, 165, 0, 0.8),
                 0 0 12px rgba(255, 140, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    z-index: 1004;
    transition: transform 0.2s ease;
}

.close-btn:hover {
    transform: scale(1.2);
    color: #FFA500; /* Bright Orange */
    text-shadow: 0 0 6px rgba(255, 165, 0, 0.8),
                 0 0 12px rgba(255, 140, 0, 0.5);
}

.promo-header {
    background: linear-gradient(135deg, rgba(90, 40, 0, 0.95), rgba(40, 20, 0, 0.95)); /* Warm orange tones */
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); /* Orange glow */
}

.promo-container {
    margin: 0 auto;
}

.promo-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #FFD700) drop-shadow(0 0 16px #FFA500);
}

@media (max-width: 768px) {
    .promo-header {
        padding: 20px;
    }

    .promo-logo {
        max-width: 130px;
    }
}

.promo-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* stacks vertically on small screens */
}

/* Adjust promo-btn to fit content side by side */
.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

/* Shared gradient animation */
@keyframes gradient-wave {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Shared hover pulse */
@keyframes button-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #00ff7f, #25D366, #006d4e, #00ff7f);
    background-size: 600% 600%;
    animation: gradient-wave 4s ease infinite;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    transition: box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
    animation: gradient-wave 2s ease infinite, button-pulse 0.6s ease infinite;
    box-shadow: 0 6px 30px rgba(0, 255, 127, 0.9);
}

/* Telegram Button */
.telegram-btn {
    background: linear-gradient(135deg, #00cfff, #229ED9, #005b94, #00cfff);
    background-size: 600% 600%;
    animation: gradient-wave 4s ease infinite;
    box-shadow: 0 4px 20px rgba(34, 158, 217, 0.7);
    transition: box-shadow 0.3s ease;
}

.telegram-btn:hover {
    animation: gradient-wave 2s ease infinite, button-pulse 0.6s ease infinite;
    box-shadow: 0 6px 30px rgba(0, 207, 255, 0.9);
}

.btn-icon {
    height: 20px;
    width: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.page-title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.download-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.download-card {
    width: 220px;
    /* fixed width */
    height: 220px;
    /* same as width for perfect circle */
    background: linear-gradient(135deg, rgba(90, 40, 0, 0.95), rgba(40, 20, 0, 0.95)); /* Warm orange tones */
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); /* Orange glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    /* center content vertically & horizontally */
    flex-direction: column;
    /* stack heading, text, button */
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.download-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Keep buttons same */
.download-btn {
    display: inline-block;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .download-card {
        width: 160px;   /* smaller circle */
        height: 160px;
        padding: 15px;
        gap: 6px;
    }

    .download-card p {
        line-height: 1.2px;
    }

    .download-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Android Download */
.android {
    background: linear-gradient(135deg, #2CE07B, #25D366);
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
}

.android:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #25D366, #1eb259);
    box-shadow: 0 0 16px rgba(37, 211, 102, 0.8);
}

/* iOS 64-bit Download */
.ios64 {
    background: linear-gradient(135deg, #e63946, #c82333);
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.6);
}

.ios64:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #c82333, #a71d2a);
    box-shadow: 0 0 16px rgba(230, 57, 70, 0.8);
}

/* iOS 32-bit Download */
.ios32 {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: #000;
    box-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
}

.ios32:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #f39c12, #d4ac0d);
    box-shadow: 0 0 16px rgba(241, 196, 15, 0.8);
}

.test-id-box {
    background: linear-gradient(135deg, rgba(90, 40, 0, 0.95), rgba(40, 20, 0, 0.95)); /* Warm orange tones */
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); /* Orange glow */
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .test-id-box {
        padding: 20px;
    }
}

.test-id-box p {
    margin: 5px 0;
    font-size: 14px;
}

.section {
    background: linear-gradient(135deg, rgba(90, 40, 0, 0.95), rgba(40, 20, 0, 0.95)); /* Warm orange tones */
    border-radius: 12px;
    padding: 40px 20px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); /* Orange glow */
}

@media (max-width: 768px) {
    .section {
        padding: 20px;
    }
}

.banner-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}


/* Guide Section */
.strong {
    color: #fff;
    font-weight: bold;
}

.ordered {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.ordered>li {
    margin-bottom: 30px;
    font-size: 18px;
}

.ordered>li .ordered-title {
    display: flex;
    align-items: flex-start;
}

.ordered>li .ordered-title::before {
    counter-increment: step-counter;
    content: counter(step-counter) ".";
    color: #f4c542;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
}

.ordered ul {
    list-style-type: disc;
    margin-top: 10px;
}

.ordered ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Table Section */
/* Responsive wrapper */
.responsive-table {
    overflow-x: auto;
}

/* Table style */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: 'Comfortaa', sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    background-color: #121212;
    /* dark base */
    color: #fff;
}

/* Table header */
.custom-table thead {
    background-color: #1c1c1c;
    color: #FFA500; /* Bright Orange */
    text-shadow: 0 0 4px rgba(255, 165, 0, 0.6); /* Orange glow */
}

.custom-table th,
.custom-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #2a2a2a;
}

/* Alternating row colors */
.custom-table tbody tr:nth-child(even) {
    background-color: #1a1a1a;
}

.custom-table tbody tr:nth-child(odd) {
    background-color: #141414;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFA500, #FF8C00); /* Bright Orange to Dark Orange */
    color: #fff;
    box-shadow: 0 0 12px rgba(255, 165, 0, 0.5),
                0 0 20px rgba(255, 140, 0, 0.4); /* Orange glow */
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(255, 165, 0, 0.7),
                0 0 28px rgba(255, 140, 0, 0.6); /* Stronger glow on hover */
}

.back-to-top-icon {
    width: 24px;
    height: 24px;
}

/* Footer Section */
.site-footer {
    background: linear-gradient(135deg, rgba(90, 40, 0, 0.95), rgba(40, 20, 0, 0.95)); /* Warm orange tones */
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); /* Orange glow */
    border-radius: 12px;

    display: flex;
    /* Enable flexbox */
    flex-direction: column;
    /* Stack children vertically */
    align-items: center;
    /* Center horizontally */
    gap: 20px;
    /* Gap between all children */
}

@media (max-width: 768px) {
    .site-footer {
        padding: 20px;
    }
}

.anchor {
    font-weight: bold;
    color: #f4c542;
    /* Or your preferred highlight color */
    text-decoration: none;
}

.anchor:hover {
    text-decoration: underline;
    color: #fff;
    /* Optional: hover color */
    cursor: pointer;
}

.footer-company strong {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

.flag-icon {
    width: 20px;
    vertical-align: middle;
    margin-right: 6px;
}

.company-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 30px;
    margin-top: 10px;
}

.company-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.company-links a:hover {
    color: #ccc;
    text-decoration: underline;
}

.footer-bottom p {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 20px;
    margin-block-start: 0em;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: underline;
}

.footer-logo {
    max-width: 100px;
    height: auto;
    opacity: 0.8;
}