@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap");

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef, #dee2e6);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.title {
    font-size: 4.5rem;
    color: #2c3e50;
    text-shadow: 5px 5px 0 #ff005e, 10px 10px 0 #00d4ff;
    animation: shadow-dance 2s infinite;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
}

@keyframes shadow-dance {
    0%, 100% {
        text-shadow: 5px 5px 0 #ff005e, 10px 10px 0 #00d4ff;
    }
    50% {
        text-shadow: -5px -5px 0 #00d4ff, -10px -10px 0 #ff005e;
    }
}

/* Header styles */
header {
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    height: 70px;
    display: flex;
    align-items: center;
}

.menu-button {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
}

.menu-button i {
    font-size: 1.2rem;
}

/* Side Navigation */
.sidenav {
    height: 100%;
    width: 290px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: -290px;
    background-color: #2c3e50;
    overflow-x: hidden;
    transition: 0.3s;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.sidenav.open {
    left: 0;
}

.sidenav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1.5rem; /* Added space after SELECT GAME */
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.whatsapp-banner {
    background-color: #27ae60;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 1rem 2rem; /* Increased bottom margin from 1rem to 2rem */
    border-radius: 8px;
    overflow: hidden;
    height: 60px;
    position: relative;
    text-decoration: none; /* Add this to remove underline from the link */
    cursor: pointer; /* Add pointer cursor to indicate it's clickable */
    transition: transform 0.2s, box-shadow 0.2s; /* Add smooth transition for hover effect */
}

.whatsapp-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-girl {
    height: 100%;
    position: absolute;
    left: 0;
}

.whatsapp-text {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 1rem;
    color: white;
    font-weight: bold;
}

.whatsapp-text i {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.game-list {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}

.game-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
    font-weight: 500;
}

.game-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.game-item span {
    font-size: 1.1rem;
}

.game-item.active {
    background: linear-gradient(90deg, #fffbe7 60%, #ffe0e0 100%);
    color: #b8860b !important;
    font-weight: bold;
    border-left: 5px solid #b8860b;
    box-shadow: 0 2px 8px rgba(184, 134, 11, 0.07);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: none;
}

.overlay.active {
    display: block;
}

/* Main container styles */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 2rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ecf0f1;
    border-radius: 20px;
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Logo styles */
.logo-container {
    margin: 1rem 0 2rem;
    text-align: center;
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Contact buttons styles */
.contact-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

/* Banner image styles */
.banner-container {
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 0 0.5rem;
    max-width: 1000px; /* Added max-width for larger screens */
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 400px; /* Added max-height to control vertical size */
    object-fit: cover; /* Ensures image covers the area without distortion */
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.01);
}

@media (min-width: 768px) {
    .banner-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .banner-image {
        max-height: 300px; /* Smaller height for mobile devices */
    }
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    padding: 0;
    border-radius: 50px;
    position: relative;
    width: 48%;
    height: 70px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.contact-button:hover {
    transform: translateY(-2px);
}

.button-content {
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    z-index: 1;
}

.telegram {
    background: linear-gradient(to right, #3498db, #2980b9);
}

.whatsapp {
    background: linear-gradient(to right, #27ae60, #2ecc71);
}

.contact-button i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.contact-button span {
    font-weight: bold;
}

.contact-button img {
    position: absolute;
    right: 0;
    height: 100%;
    border-radius: 0 50px 50px 0;
}

/* Download buttons styles */
.download-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.0rem;
    gap: 1rem;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    width: 48%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.download-button:hover {
    transform: translateY(-2px);
}

.ios {
    background: linear-gradient(to right, #34495e, #2c3e50);
}

.android {
    background: linear-gradient(to right, #8e44ad, #9b59b6);
}

.download-button i {
    font-size: 1.8rem;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.platform {
    font-weight: bold;
    font-size: 1.1rem;
}

.download-now {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Test ID container styles */
.test-id-container {
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    border-radius: 12px;
    padding: 1.8rem;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.test-id-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.test-id-container h2 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.8rem;
}

.test-id-container h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2980b9);
    border-radius: 3px;
}

.test-id-content {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.2rem;
    border: 1px dashed #ddd;
}

.laptop-image {
    width: 120px;
    margin-right: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eaf2f8;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.laptop-image i {
    font-size: 3.5rem;
    color: #3498db;
}

.test-id-credentials {
    flex: 1;
}

.test-id-credentials p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
    background-color: white;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border-left: 3px solid #3498db;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.credential-label {
    font-weight: bold;
    color: #2c3e50;
    margin-right: 0.5rem;
}

/* Educational Content Styles */
.educational-content {
    max-width: 800px;
    width: 100%;
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.educational-content section {
    margin-bottom: 2.5rem;
}

.educational-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    text-shadow: 5px 5px 0 #ff005e, 10px 10px 0 #00d4ff;
    animation: shadow-dance 2s infinite;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
}

.educational-content h2 {
    color: #34495e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.educational-content h3 {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.educational-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.educational-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.educational-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.category {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.content-link {
    display: inline-block;
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.content-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.feature-table {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 1.5rem;
}

.feature-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px; /* Ensures table doesn't get too compressed */
}

.feature-table th, .feature-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.feature-table th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: bold;
}

.conclusion ul {
    padding-left: 1rem;
}

.conclusion li {
    margin-bottom: 0.8rem;
}

.conclusion-image {
    margin-top: 2rem;
    text-align: center;
}

.edu-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Additional content section styles */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-section {
    overflow-x: auto;
    width: 100%;
    margin-bottom: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    min-width: 600px; /* Ensures table doesn't get too compressed */
}

.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #2c3e50;
    color: white;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f0f0f0;
}

/* FAQ Section Styles */
.faq-section {
    padding: 2rem 0;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: #34495e;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.faq-item p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-item ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.faq-item ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-item ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
}


/* Table Styles */
.budget-table, .tools-table, .bonus-table {
    width: 100%;
    max-width: 600px;
    margin: 1rem auto; /* Center horizontally */
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.budget-table th, .tools-table th, .bonus-table th,
.budget-table td, .tools-table td, .bonus-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.budget-table th, .tools-table th, .bonus-table th {
    background-color: #2c3e50;
    color: white;
    font-weight: bold;
}

.budget-table tr:nth-child(even),
.tools-table tr:nth-child(even),
.bonus-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.budget-table tr:hover,
.tools-table tr:hover,
.bonus-table tr:hover {
    background-color: #f0f0f0;
}

/* Navigation Links */
.navigation-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fffde7;
    color: #b8860b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav-link:hover {
    background: #fff9c4;
    color: #ff9800;
    transform: translateX(10px);
}
@media (max-width: 768px) {
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
    }
  }
  
/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefits-grid,
    .testimonial-grid,
    .volatility-grid,
    .glossary-container {
        grid-template-columns: 1fr;
    }
    
    .tip-item {
        flex-direction: column;
    }
    
    .tip-number {
        padding: 0.8rem;
        width: 100%;
        min-width: auto;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq h2 {
        font-size: 1.8rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-item h2 {
        font-size: 1.3rem;
    }

    .budget-table, .tools-table, .bonus-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
    }

    .contact-buttons,
    .download-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 0;
        margin: 0;
    }
    .contact-button,
    .download-button {
        width: 100%;
        min-height: 56px;
        border-radius: 16px;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        font-weight: 600;
    }
    .contact-button.whatsapp {
        margin-bottom: 1.5rem !important;
    }
    .contact-button .button-content,
    .download-button .download-text {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .contact-button img {
        height: 64px;
        width: auto;
        margin-left: 0.75rem;
        border-radius: 12px;
        object-fit: cover;
        display: block;
    }
    .container {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .banner-container {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .faq-item h2 {
        font-size: 1.2rem;
    }

    .faq-item p, .faq-item ul li {
        font-size: 0.95rem;
    }
}

/* Footer styles */
footer {
    color: #34495e;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(0, 136, 204, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4);
    }
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
}

.contact-button.telegram {
    background: linear-gradient(135deg, #0088cc, #005580);
    animation: pulse 1.5s ease-in-out infinite;
}

.contact-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse-whatsapp 1.5s ease-in-out infinite;
}

.contact-button.telegram:hover,
.contact-button.whatsapp:hover {
    animation: none;
    transform: translateY(-2px);
}

/* Remove the shadow-dance animation */
@keyframes shadow-dance {
    0%, 100% {
        text-shadow: 5px 5px 0 #ff005e, 10px 10px 0 #00d4ff;
    }
    50% {
        text-shadow: -5px -5px 0 #00d4ff, -10px -10px 0 #ff005e;
    }
}

/* APK Page Specific Styles */
.content-overview {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.content-overview ul {
    list-style: none;
    padding: 0;
}

.content-overview li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.content-overview li:before {
    content: "•";
    color: #b8860b;
    position: absolute;
    left: 0;
}

.download-guide {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.download-guide .warning {
    color: #ff6b6b;
    font-weight: bold;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
}

.install-steps {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.install-steps h3 {
    color: #b8860b;
    margin: 1.5rem 0 1rem;
}
.content-link {
    display: inline-block;
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.content-link:hover {
    color: #2980b9;
    text-decoration: none;
}

.install-steps ol, .install-steps ul {
    padding-left: 0rem;
}

.install-steps li {
    margin: 0.5rem 0;
}

.success {
    color: #4CAF50;
    font-weight: bold;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
}

.version-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.version-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.version-table th, .version-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.version-table th {
    background: #fffde7;
    color: #b8860b;
}

.security-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.security-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.security-table th, .security-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.security-table th {
    background: #fffde7;
    color: #b8860b;
}

.navigation-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fffde7;
    color: #b8860b;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav-link:hover {
    background: #fff9c4;
    color: #ff9800;
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .content-overview, .download-guide, .install-steps {
        padding: 1rem;
    }

    .version-table th, .version-table td,
    .security-table th, .security-table td {
        padding: 0.75rem;
    }

    .navigation-links {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.75rem 1.5rem;
    }
}

.ios-install ol {
    list-style: decimal inside;
    padding-left: 0;
    margin-left: 0;
}

.ios-install ol li {
    margin-bottom: 0.75rem;
    font-size: 1.08rem;
    color: #222;
    padding-left: 0;
}

.ios-install ol li::marker {
    color: inherit;
    font-weight: normal;
}

.download-button.android {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.download-button.android .fa-android, .download-button.android .download-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.download-button.android .download-text {
    width: 100%;
    text-align: center;
    display: block;
}

.download-button.ios {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.download-button.ios .fa-apple, .download-button.ios .download-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.download-button.ios .download-text {
    width: 100%;
    text-align: center;
    display: block;
}

.rtp-table {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.rtp-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.rtp-table th, .rtp-table td {
    padding: 1rem 0.75rem;
    text-align: center;
}
.rtp-table th {
    background: #f3e8ff;
    color: #6c3fc5;
    font-weight: bold;
    font-size: 1.08rem;
    border-bottom: 2px solid #e0d7f7;
}
.rtp-table tr:nth-child(even) td {
    background: #faf6ff;
}
.rtp-table tr:nth-child(odd) td {
    background: #fff;
}
.rtp-table tr:hover td {
    background: #e9e3fa;
    transition: background 0.2s;
}
@media (max-width: 600px) {
    .rtp-table th, .rtp-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.98rem;
    }
}

.troubleshoot-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.troubleshoot-step {
    display: flex;
    align-items: flex-start;
    background: #f7fafc;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
    padding: 1.1rem 1.3rem;
    border-left: 5px solid #3498db;
    transition: box-shadow 0.2s;
}

.troubleshoot-step:hover {
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.12);
}

.step-icon {
    font-size: 1.7rem;
    color: #3498db;
    margin-right: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.troubleshoot-tip {
    background: linear-gradient(90deg, #fffbe7 60%, #e0eafc 100%);
    color: #b8860b;
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    margin: 1.2rem 0 0.5rem 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 1px 4px rgba(184, 134, 11, 0.07);
    font-size: 1.05rem;
}

@media (max-width: 600px) {
    .troubleshoot-step {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0.8rem;
    }
    .step-icon {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

.find-agent-icon {
    color: #b8860b;
    margin-right: 0.5rem;
    font-size: 1.3em;
    vertical-align: middle;
}

.find-agent-list {
    list-style: disc inside;
    margin-left: 1.2rem;
    margin-bottom: 1.1rem;
    font-weight: 500;
    color: #444;
    padding-left: 0;
}

.find-agent-list li {
    margin-bottom: 0.5rem;
    padding-left: 0.2rem;
}

.find-agent-warning {
    background: linear-gradient(90deg, #fffbe7 60%, #ffe0e0 100%);
    color: #b8860b;
    border-radius: 8px;
    padding: 0.8rem 1.1rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 1px 4px rgba(184, 134, 11, 0.07);
    font-size: 1.05rem;
}

.find-agent-warning i {
    font-size: 1.2em;
    margin-right: 0.5rem;
}

.find-agent-note {
    color: #888;
    font-size: 0.97rem;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .find-agent-list {
        margin-left: 0.5rem;
    }
    .find-agent-warning {
        font-size: 0.98rem;
        padding: 0.7rem 0.7rem;
    }
}
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none; /* default hidden */
    flex-direction: column;
    gap: 15px;
  }
  
  .floating-cta .cta-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s;
  }
  
  .floating-cta .cta-btn.whatsapp {
    background: #25D366;
  }
  
  .floating-cta .cta-btn.telegram {
    background: #0088cc;
  }
  
  .floating-cta .cta-btn:hover {
    transform: scale(1.1);
  }
  
  @media (min-width: 769px) {
    .floating-cta {
      display: none !important;
    }
  }
  @keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.cta-btn.pulse-on {
  animation: pulse 1.5s ease-in-out infinite;
}
header {
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
  }
  
  /* Sticky on desktop only */
  @media (min-width: 769px) {
    header {
      position: sticky;
      top: 0;
    }
  }
  
  /* Fixed on mobile */
  @media (max-width: 768px) {
    header {
      position: fixed;
      top: 0;
      width: 100%;
    }
  }
  