body, h1, h2, p, ul, ol, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
	padding-top: 60px; /* Adjust based on navbar height */
}

html, body {
    overflow-x: hidden; /* Disable horizontal scrolling */
    width: 100%; /* Make sure it stays within the viewport width */
}

/* Navigation Bar */
.nav-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 10px 20px;
            z-index: 1000;
        }

        .nav-left {
            display: flex;
            align-items: center;
        }

        .logo {
            margin-right: 30px;
        }

        .logo img {
            height: 30px;
        }

        .menu {
            display: flex;
            gap: 20px;
        }

        .menu a {
            color: #37424e;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
        }

        .menu a:hover {
            color: #007bff;
        }

        .nav-bar {
    padding: 20px 20px; /* Reduce overall padding */
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Maintain the spacing between elements */
    margin-right: 30px; /* Reduce the right margin */
    padding-right: 0; /* Adjust padding as necessary */
}

.nav-right .icon:first-child {
    margin-right: 10px; /* Add margin to move it left */
}

.nav-right a {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #37424e;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
}

        .nav-right a:hover {
            color: #007bff;
        }

        .nav-right a img {
            width: 20px;
            height: 14px;
            object-fit: cover;
        }

/* Animation for banner */
@keyframes slideIn {
    0% {
        transform: translateY(-50%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for content */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.download-card,
.test-id {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px; /* Same width for all cards */
    margin: 0 auto; /* Center the card */
}

.download-card h3,
.test-id h3 {
    font-size: 18px; /* Matching font size */
    margin-bottom: 10px;
    color: #333;
}

.download-card p,
.test-id p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure wrapping on smaller screens */
}

.download-button {
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    width: 100%; /* Make buttons stretch across the card width */
    max-width: 200px; /* Add a maximum width */
    margin: 0 auto; /* Center the button */
}

.download-card.android {
    background-color: #e8f5e9; /* Light green */
    border: 2px solid #4caf50; /* Green border */
}

/* Background color for iOS 64Bit */
.download-card.ios {
    background-color: #ffebee; /* Light red */
    border: 2px solid #e53935; /* Red border */
}

.download-image {
    width: 60px; /* Adjust the size of the images */
    height: auto; /* Maintain the aspect ratio */
    margin-bottom: 10px; /* Add some spacing between the image and the text */
    display: block; /* Ensure proper alignment */
    margin-left: auto;
    margin-right: auto;
}

/* Background color for Player Test ID */
.test-id {
    background-color: #e3f2fd; /* Light blue */
    border: 2px solid #42a5f5; /* Blue border */
	max-width: 250px; /* Match the width of download cards */
    margin: 20px auto; /* Add spacing and center alignment */
}

.test-id h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.test-id p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
}

.download-button.android {
    background: #4caf50;
}

.download-button.ios-64bit {
    background: #e53935;
}

.download-button.ios-32bit {
    background: #ffb300;
}

/* Container for Download Section */
.download-container {
    display: flex;
    justify-content: center; /* Center align the items horizontally */
    align-items: flex-start; /* Align items to the top */
    gap: 20px; /* Add spacing between the cards */
    flex-wrap: wrap; /* Ensure wrapping for smaller screens */
    margin: 20px auto;
    max-width: 1200px; /* Optional: Limit the maximum width of the container */
}

/* Ensure consistent card styling */
.download-card, .test-id {
    flex: 1 1 300px; /* Flex-grow and flex-basis for responsive behavior */
    max-width: 350px; /* Optional: Limit the maximum width for each card */
    text-align: center;
    margin: 0;
}

.download-section {
	background: linear-gradient(to right, #f0f4c3, #b3e5fc);;
    padding: 20px 20px; /* Add padding around the section */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
}

.test-id h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.test-id p {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}

.main-button {
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.main-button.blue {
    background: #ffffff;
}

.main-button.green {
    background: #27ae60;
}

/* Center the Table of Contents */
.table-of-contents {
    background: linear-gradient(to right, #f0f4c3, #b3e5fc); /* Matching gradient */
	background-color: #fff7e6; /* Light yellow background */
    padding: 20px 15px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #d1e9fe; /* Subtle border */
}

.table-of-contents h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50; /* Darker contrast color for the heading */
    text-transform: uppercase;
    font-weight: bold;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin: 10px 0;
    font-size: 16px;
}

.table-of-contents a {
    text-decoration: none;
    color: #3498db; /* Bright blue links for visibility */
    font-weight: bold;
    transition: color 0.3s ease, transform 0.2s ease;
}

.table-of-contents a:hover {
    color: #007bff;
}

.table-of-contents a::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #007bff;
    border-radius: 50%;
    margin-right: 8px;
}

/* Content Table */
.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 16px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-table thead tr {
    background-color: #3498db;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.content-table th, .content-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Content Section */
.content {
    padding: 20px;
	background:linear-gradient(to bottom, #f0f4c3, #b3e5fc);
}

.content h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.content a {
    /*color: white;*/
    text-decoration: none;
}

.content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

/* Image in Content */
.content-with-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.content-image {
    max-width: 200px; /* Adjust width as needed */
    height: auto; /* Maintain aspect ratio */
    margin: 10px 0; /* Add some margin */
    display: block; /* Center the image in flex context */
}

.content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content ol li {
    margin-bottom: 10px;
}

/* CTA Section Styling */
.cta-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: fixed;
    bottom: 0;
    left: auto;
    background: #333;
    padding: 10px;
    border-radius: 25px;
    right: 20px;
    margin-right: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px; /* Increased padding for a larger button */
    border-radius: 30px;
    font-size: 22px; /* Larger font size */
    font-weight: bold;
    text-decoration: none;
    color: #ffffff; /* Ensure white text for better contrast */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add text shadow for better readability */
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* WhatsApp button with improved contrast */
.cta-button.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    border: 2px solid #1a9c4a; /* Add border for better definition */
}

/* Telegram button with improved contrast */
.cta-button.telegram {
    background: linear-gradient(45deg, #0088cc, #005b99);
    border: 2px solid #006bb3; /* Add border for better definition */
}

/* Enhanced hover effects with better accessibility */
.cta-button:hover {
    transform: scale(1.15); /* Slightly increase size on hover */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
    color: #ffffff; /* Maintain white text on hover */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Stronger text shadow on hover */
}

/* WhatsApp button hover state */
.cta-button.whatsapp:hover {
    background: linear-gradient(45deg, #2ee76f, #15a085);
    border-color: #1eb854;
}

/* Telegram button hover state */
.cta-button.telegram:hover {
    background: linear-gradient(45deg, #1a9bd1, #0066a3);
    border-color: #0077c7;
}

/* Icon Styling: Make the icons larger */
.cta-icon {
    width: 32px; /* Increased icon size */
    height: 32px; /* Increased icon size */
    margin-right: 15px; /* Add more spacing between icon and text */
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3)); /* Add shadow to icons for better visibility */
}

/* Dropdown menu container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Submenu styles */
.submenu {
    display: none; /* Initially hide submenu */
    position: absolute;
    top: 100%; /* Position below the parent */
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    list-style: none;
    z-index: 1000;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Submenu items */
.submenu li {
    padding: 10px 20px;
}

.submenu li a {
    color: #37424e;
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect for submenu links */
.submenu li a:hover {
    background-color: #f0f0f0;
    color: #007bff;
}

/* Show submenu on hover */
.dropdown:hover .submenu {
    display: block;
}

/* Align the submenu below the parent item */
.dropdown-toggle {
    position: relative;
}

/* Add a small arrow indicator for dropdown */
.dropdown-toggle::after {
    content: '▼';
    font-size: 12px;
    margin-left: 5px;
    color: #37424e;
    transition: transform 0.2s ease;
}

/* Rotate arrow on hover */
.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Add a glowing animation */
.cta-button:hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 80%);
    animation: glow 1.5s infinite;
    z-index: 1;
    opacity: 0.6;
}

/* Prevent text/icon overlap */
.cta-button * {
    position: relative;
    z-index: 2;
}

/* Icon Styling */
.cta-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* Glowing keyframe */
@keyframes glow {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.5);
    }
}

/* Call-to-action pulse effect */
.cta-button {
        padding: 10px 10px; /* Reduced padding for smaller screens */
        font-size: 18px; /* Smaller font size */
        border-radius: 20px; /* Slightly smaller button corners */
    }

    .cta-icon {
        width: 24px; /* Smaller icons */
        height: 24px;
        margin-right: 10px; /* Adjust spacing for smaller buttons */
    }

@keyframes pulse {
    0%, 100% {
        color: white;
    }
    50% {
        color: #f1f1f1;
    }
}

/* Footer */
footer {
    background: #1f1f1f; /* Dark background */
    color: #ffffff; /* Light text for contrast */
    padding: 20px 10px; /* More padding for better spacing */
    text-align: center;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

footer a {
    color: #4caf50; /* Green link for visibility */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #2e7d32; /* Darker green on hover */
}

footer p {
    font-size: 12px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333;
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {

    .download-card {
    flex: 1 1 100px!important;
    max-width: 100px;
    text-align: center;
    margin: 0;
        
    }

    .hamburger {
        display: block; /* Show hamburger menu on smaller screens */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #1f1f1f;
        z-index: 100;
    }

    .nav-links.show {
        display: flex; /* Show menu when toggled */
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .nav-links a {
        padding: 10px 20px;
        text-align: center;
    }

    .submenu {
        position: static;
        padding: 0;
        flex-direction: column;
    }

	.table-of-contents {
        padding: 15px;
        margin: 10px;
        width: calc(100% - 40px); /* Add some padding around the page */
    }

    .table-of-contents h2 {
        font-size: 20px;
    }

    .table-of-contents a {
        font-size: 14px;
    }

	.image-banner {
        height: 200px;
    }

	.image-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 20px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .banner-button {
        font-size: 14px;
    }

    .daily-rebate-container {
        max-width: calc(100% - 40px);
        padding: 5px;
    }
    
    .daily-rebate-image {
        max-width: 100%;
    }

    .cta-section {
        right: 10px;
        margin-right: 0;
        padding: 8px;
        gap: 15px;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 16px;
        border-radius: 20px;
    }

    .cta-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

}

.daily-rebate-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.daily-rebate-image {
    max-width: 100%;
    width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #d1e9fe;
}

.daily-rebate-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
