* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #1a1a1a;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 70px;
    width: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

/* Main Navigation Styles */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.main-nav a:hover {
    color: #2aede6;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        justify-content: space-between;
    }

    .logo {
        position: static;
        transform: none;
    }

    .logo img {
        height: 35px;
        width: 110px;
    }

    .main-nav ul {
        gap: 1rem;
    }

    .main-nav a {
        font-size: 1rem;
        padding: 0.3rem;
    }
}

.menu {
    position: fixed;
    left: -250px;
    top: 0;
    height: 100vh;
    width: 250px;
    background-color: #1a1a1a;
    transition: left 0.3s ease;
    z-index: 1001;
    padding-top: 80px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: #2aede6;
}

.menu.active {
    left: 0;
}

.menu ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1.5rem;
    padding: 1rem;
}

.menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem;
}

.menu a:hover {
    color: #2aede6;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.whatsapp-btn,
.telegram-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: white;
}

.whatsapp-btn:hover,
.telegram-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.whatsapp-btn {
    background-color: #25D366;
}

.telegram-btn {
    background-color: #0088cc;
}

.whatsapp-btn i,
.telegram-btn i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {

    .whatsapp-btn span,
    .telegram-btn span {
        display: none;
    }

    .whatsapp-btn,
    .telegram-btn {
        padding: 0.8rem;
        border-radius: 50%;
        aspect-ratio: 1/1;
    }

    .whatsapp-btn i,
    .telegram-btn i {
        font-size: 1.8rem;
    }

    .header {
        padding: 1.2rem 1.5rem;
    }

    .download-section {
        padding: 1.5rem 1rem 0 1rem;
        margin-top: 90px;
    }

    .logo {
        margin-left: 0;
    }
}

/* Download Section Styles */
.download-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 0 1rem;
    margin-top: 100px;
    background-color: #121212;
}

.main-card {
    display: flex;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    /* background-color: #f0f0f0; */
    padding: 1rem;
}

.image-container img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.download-card {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: cyan;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.download-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1rem;
}

.download-card p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.download-btn {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn i {
    font-size: 2rem;
    margin-right: 1rem;
}

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

.small-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.large-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.android-btn {
    background-color: #3DDC84;
    color: white;
}

.ios-btn {
    background-color: #000;
    color: white;
}

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

@media (max-width: 768px) {
    .download-section {
        padding: 2rem 1rem;
    }

    .main-card {
        flex-direction: column;
    }

    .image-container {
        padding: 1rem;
    }

    .download-card {
        padding: 2rem;
    }

    .image-container img {
        max-height: 300px;
    }

    .download-card h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
}

/* Test ID Section Styles */
.test-id-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.test-id-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.test-id-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.credentials-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.credential-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 250px;
    transition: transform 0.3s ease;
}

.credential-group:hover {
    transform: translateY(-2px);
}

.icon-wrapper {
    background-color: #e9ecef;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: #333;
}

.credential-content {
    text-align: left;
}

.credential-content h3 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.credential-content p {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .test-id-section {
        padding: 2rem 1rem;
    }

    .test-id-card {
        padding: 2rem;
    }

    .credentials-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .credential-group {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Table of Contents Styles */
.toc-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.toc-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.toc-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.toc-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2aede6;
    border-radius: 3px;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.toc-main-item {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.toc-main-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.toc-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #333;
    border-radius: 10px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.toc-item:hover {
    background-color: #3a3a3a;
    transform: translateX(5px);
}

.toc-number {
    width: 40px;
    height: 40px;
    background-color: #2aede6;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.toc-title {
    font-size: 1.1rem;
    font-weight: 500;
}

.toc-sub-list {
    margin-top: 1rem;
    padding-left: 1rem;
}

.toc-sub-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.toc-sub-item:hover {
    background-color: #333;
    transform: translateX(5px);
}

.toc-sub-item .toc-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    background-color: #333;
    color: #2aede6;
}

.toc-sub-item .toc-title {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .toc-card {
        padding: 1.5rem;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

    .toc-item {
        padding: 0.8rem;
    }

    .toc-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .toc-sub-item {
        padding: 0.6rem 0.8rem;
    }
}

/* Content Section Styles */
.content-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.content-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.content-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.content-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2aede6;
    border-radius: 3px;
}

.section-description {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-text {
    direction: ltr;
}

.content-grid img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
    /* background-color: #f8f9fa; */
}

.content-grid img:hover {
    transform: scale(1.05);
}

.content-text h2 {
    font-size: 2rem;
    color: #2aede6;
    margin-bottom: 1.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2aede6;
    border-radius: 3px;
}

.content-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.feature-list li {
    background-color: #2a2a2a;
    padding: 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateY(-3px);
}

.feature-list li i {
    color: #2aede6;
    margin-right: 1rem;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .content-card {
        padding: 1.8rem;
    }

    .content-card h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .content-text {
        padding: 1rem;
    }

    .content-text h2 {
        font-size: 1.6rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-list li {
        padding: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .content-grid img {
        order: 2;
        height: 250px;
        width: 100%;
        object-fit: contain;
        border-radius: 15px;
        background-color: #f8f9fa;
    }

    .content-text {
        order: 1;
    }
}

/* Featured Games Section Styles */
.featured-games-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.featured-games-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.featured-games-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.game-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.game-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-info {
    padding: 1rem;
    background-color: white;
}

.game-info h3 {
    font-size: 1.2rem;
    color: #2aede6;
    margin-bottom: 0.5rem;
}

.game-info p {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .game-image {
        height: 180px;
    }
}

/* Popular Games Section Styles */
.popular-games-section {
    padding: 3rem 2rem;
    background-color: #121212;
    color: #fff;
}

.popular-games-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.popular-games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.popular-games-header h2,
.popular-games-header span {
    font-size: 1.8rem;
    color: #2aede6;
    font-weight: 600;
    margin: 0;
}

.see-all-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.see-all-link:hover {
    color: #2aede6;
    text-decoration: underline;
}

.popular-games-grid {
    display: flex;
    align-items: center;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: #2aede6 #121212;
    -webkit-overflow-scrolling: touch;
}

.popular-games-grid::-webkit-scrollbar {
    height: 6px;
}

.popular-games-grid::-webkit-scrollbar-track {
    background: #121212;
}

.popular-games-grid::-webkit-scrollbar-thumb {
    background-color: #2aede6;
    border-radius: 6px;
}

.popular-game-card {
    flex: 0 0 auto;
    width: 210px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.popular-game-card:hover {
    transform: translateY(-5px);
}

.game-thumbnail {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popular-game-card:hover .game-thumbnail img {
    transform: scale(1.05);
}

.hot-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff4e50;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Additional class for hot tags next to game titles */
.game-details .hot-tag {
    position: static;
    font-size: 0.65rem;
    padding: 2px 6px;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

.info-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #666;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.game-details {
    padding: 0.75rem;
}

/* Style for flex container that holds the title and tag */
.game-details div {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.3rem;
    justify-content: space-between;
}

/* Adjust tag to align better with multi-line titles */
.game-details .hot-tag {
    position: static;
    font-size: 0.65rem;
    padding: 2px 6px;
    display: inline-block;
    margin-top: 3px;
    vertical-align: top;
    flex-shrink: 0;
    margin-left: auto;
}

/* Title should take up the necessary space but allow room for the tag */
.game-details h3,
.game-details .game-title {
    margin: 0 0 0.3rem 0;
    font-size: 0.85rem;
    color: #e0e0e0;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: calc(100% - 45px);
}

.provider {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.rtp-badge {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.rtp-badge span {
    font-weight: bold;
}

@media (max-width: 1200px) {
    .popular-game-card {
        width: 190px;
    }
}

@media (max-width: 768px) {
    .popular-games-section {
        padding: 2rem 1rem;
    }

    .popular-game-card {
        width: 170px;
    }

    .popular-games-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .popular-game-card {
        width: 160px;
    }

    .popular-games-header h2 {
        font-size: 1.5rem;
    }

    .game-thumbnail {
        height: 120px;
    }
}

/* Payment Section Styles */
.payment-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.payment-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.payment-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.table-container {
    overflow-x: auto;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

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

.payment-table th {
    background-color: #2a2a2a;
    font-weight: 600;
    color: #2aede6;
}

.payment-table tr:hover {
    background-color: #2a2a2a;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.payment-method i {
    font-size: 1.5rem;
    color: #2aede6;
}

.payment-method span {
    font-weight: 500;
}

@media (max-width: 768px) {

    .payment-table th,
    .payment-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .payment-method i {
        font-size: 1.2rem;
    }
}

/* Download Guide Section Styles */
.download-guide-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.download-guide-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.download-guide-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1rem;
    text-align: center;
}

.download-guide-card .section-description {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-heading {
    font-size: 1.5rem;
    color: #2aede6;
    margin-bottom: 2rem;
    text-align: center;
}

.download-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.guide-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-icon {
    width: 60px;
    height: 60px;
    background-color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.guide-icon i {
    font-size: 2rem;
    color: #2aede6;
}

.guide-card h4 {
    font-size: 1.3rem;
    color: #2aede6;
    margin-bottom: 1rem;
}

.guide-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .download-guide-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-card {
        padding: 1.5rem;
    }

    .guide-icon {
        width: 50px;
        height: 50px;
    }

    .guide-icon i {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.footer-content p {
    font-size: 1rem;
    margin: 0;
}

.footer-link {
    color: #2aede6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer {
        padding: 1rem 0;
    }

    .footer-content p {
        font-size: 0.9rem;
    }
}

/* Getting Started Section Styles */
.getting-started-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.getting-started-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.getting-started-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1rem;
    text-align: center;
}

.getting-started-card .section-description {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1.5rem;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.steps-list i {
    font-size: 1.8rem;
    color: #2aede6;
    background-color: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #2aede6;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.step-content p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .steps-list li {
        padding: 1.2rem;
        gap: 1rem;
    }

    .steps-list i {
        font-size: 1.5rem;
        min-width: 50px;
        height: 50px;
        padding: 0.8rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }
}

/* Team Section Styles */
.team-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.team-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.team-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1rem;
    text-align: center;
}

.team-card .section-description {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-feature {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #2aede6;
}

.team-feature h3 {
    font-size: 1.3rem;
    color: #2aede6;
    margin-bottom: 1rem;
}

.team-feature p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .team-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-feature {
        padding: 1.5rem;
    }
}

/* Conclusion Section Styles */
.conclusion-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.conclusion-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.conclusion-card h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.conclusion-content {
    max-width: 1000px;
    margin: 0 auto;
}

.conclusion-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.conclusion-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #2aede6;
}

@media (max-width: 768px) {
    .conclusion-card {
        padding: 1.5rem;
    }

    .conclusion-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Sponsored Section Styles */
.sponsored-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    /* background-color: #1a1a2e; */
}

.sponsored-section h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 2.5rem;
    text-align: center;
}

.sponsored-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.sponsor-card {
    background-color: #161626;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-10px);
}

.sponsor-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.sponsor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.sponsor-card:hover .sponsor-image img {
    transform: scale(1.05);
}

.claim-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.claim-btn:hover {
    background-color: #45a049;
}

.sponsor-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.sponsor-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.8rem;
}

.sponsor-logo span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f0f0f0;
}

.sponsor-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.sponsor-info p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.play-now-btn {
    display: inline-block;
    background-color: #2aede6;
    color: #fff;
    padding: 0.7rem 0;
    border-radius: 30px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

.play-now-btn:hover {
    background-color: #ffca2c;
}

@media (max-width: 992px) {
    .sponsored-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sponsored-section {
        padding: 2rem 1rem;
    }

    .sponsored-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sponsor-image {
        height: 200px;
    }

    .sponsor-info h3 {
        font-size: 1.1rem;
    }
}

/* Remove slider-related styles */
.slider-nav,
.prev-game-btn,
.next-game-btn {
    display: none;
}

/* Slider Section Styles */
.slider-section {
    padding: 2rem 1rem;
    background-color: #121212;
    margin-top: 80px;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-container h1 {
    color: #e0e0e0;
    text-align: center;
    padding: 1.5rem 1.5rem 1rem;
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.4;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 400px;
}

.slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background-color: #121212;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.prev-btn,
.next-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: #2aede6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #2aede6;
}

@media (max-width: 768px) {
    .slider-section {
        padding: 1rem;
    }

    .slider-container {
        max-width: 100%;
    }

    .slider-container h1 {
        font-size: 1.4rem;
        padding: 1.2rem 1rem 0.8rem;
    }

    .slide {
        height: 300px;
    }

    .prev-btn,
    .next-btn {
        width: 30px;
        height: 30px;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.comparison-table th {
    background-color: #2a2a2a;
    font-weight: 600;
    color: #2aede6;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

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

.comparison-table td:first-child {
    font-weight: 500;
    color: #2aede6;
}

.table-container {
    overflow-x: auto;
    margin: 1rem 0;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 14px;
    }

    .table-container {
        margin: 15px 0;
    }
}

@media (max-width: 768px) {
    .content-grid img {
        height: 250px;
        object-fit: cover;
    }

    .content-text {
        flex: 1;
    }
}

/* About Us Section Styles */
.about-us-section {
    padding: 4rem 2rem;
    background-color: #121212;
    color: #fff;
}

.about-us-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-us-image {
    flex: 1;
    max-width: 500px;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-us-image img:hover {
    transform: scale(1.02);
}

.about-us-content {
    flex: 1;
}

.about-us-content h2 {
    font-size: 2.2rem;
    color: #2aede6;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-us-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-us-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .about-us-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-us-image {
        max-width: 100%;
    }

    .about-us-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 3rem 1rem;
    }

    .about-us-content h2 {
        font-size: 1.6rem;
    }

    .about-us-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Download Promotion Section Styles */
.download-promotion-section {
    /* background: linear-gradient(45deg, #121836 0%, #1e3a8a 100%); */
    padding: 4rem 2rem;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.download-promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('assets/background.jpg') center/cover no-repeat; */
    opacity: 0.1;
    z-index: 1;
}

.download-promotion-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
    background: rgba(30, 41, 82, 0.7);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-promotion-content {
    flex: 1;
    color: white;
    position: relative;
    z-index: 2;
}

.download-promotion-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.download-promotion-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #2aede6;
    border-radius: 2px;
}

.download-promotion-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #2aede6;
    letter-spacing: 1px;
}

.download-promotion-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.download-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.download-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.download-features-list li i {
    color: #2aede6;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.download-device-btn {
    display: inline-block;
    background-color: #2aede6;
    color: #121836;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #2aede6;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download-device-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
    z-index: -1;
}

.download-device-btn:hover {
    color: #121836;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-device-btn:hover::before {
    width: 100%;
}

.download-promotion-image {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.download-promotion-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    transform: perspective(1000px) rotateY(-5deg) translateZ(50px);
    transition: transform 0.5s ease;
    border-radius: 20px;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.download-promotion-image img:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(70px) scale(1.02);
}

@media (max-width: 992px) {
    .download-promotion-container {
        flex-direction: column-reverse;
        padding: 2rem;
    }

    .download-promotion-content {
        text-align: center;
    }

    .download-promotion-content h2 {
        font-size: 2.2rem;
    }

    .download-promotion-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .download-promotion-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .download-promotion-content h3 {
        font-size: 1.3rem;
    }

    .download-promotion-content p {
        font-size: 1rem;
    }

    .download-features-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .download-promotion-section {
        padding: 2rem 1rem;
    }

    .download-promotion-container {
        padding: 1.5rem;
        gap: 2rem;
    }

    .download-promotion-content h2 {
        font-size: 1.8rem;
    }

    .download-promotion-content h3 {
        font-size: 1.3rem;
    }

    .download-promotion-content p {
        font-size: 1rem;
    }

    .download-features-list li {
        font-size: 1rem;
    }

    .download-device-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .download-promotion-image img {
        max-height: 350px;
        border-width: 3px;
    }
}

/* Products Section Styles */
.products-section {
    /* background-color: #1e2952; */
    padding: 2rem 1rem;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
}

.products-container h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.products-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: #2aede6 #1e2952;
}

.products-slider::-webkit-scrollbar {
    height: 6px;
}

.products-slider::-webkit-scrollbar-track {
    background: #1e2952;
}

.products-slider::-webkit-scrollbar-thumb {
    background-color: #2aede6;
    border-radius: 6px;
}

.product-item {
    flex: 0 0 auto;
    width: 130px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
}

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

.product-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .product-item {
        width: 110px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 1.5rem 0.5rem;
    }

    .products-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .product-item {
        width: 90px;
        height: 50px;
    }
}

/* All Games Section Styles */
.all-games-section {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    /* background-color: #1E2756;
    background-image: linear-gradient(135deg, #1E2756 0%, #2a3a80 100%); */
    color: white;
}

.all-games-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    color: #d0d0ff;
}

.section-header p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #a0a0d0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.platform-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: all 0.3s ease;
}

.platform-card.android::before {
    background-color: #00C853;
}

.platform-card.ios::before {
    background-color: #2196F3;
}

.platform-card.windows::before {
    background-color: #FF9800;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.platform-card.android .platform-icon {
    color: #00C853;
}

.platform-card.ios .platform-icon {
    color: #2196F3;
}

.platform-card.windows .platform-icon {
    color: #FF9800;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

.platform-info {
    margin-bottom: 1.5rem;
}

.platform-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.platform-info p {
    font-size: 0.9rem;
    color: #a0a0d0;
}

.platform-download-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0.7rem 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.platform-card.android .platform-download-btn:hover {
    background-color: #00C853;
    border-color: #00C853;
}

.platform-card.ios .platform-download-btn:hover {
    background-color: #2196F3;
    border-color: #2196F3;
}

.platform-card.windows .platform-download-btn:hover {
    background-color: #FF9800;
    border-color: #FF9800;
}

@media (max-width: 992px) {
    .download-platforms {
        gap: 1.5rem;
    }

    .platform-card {
        width: 200px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .all-games-section {
        padding: 3rem 1rem;
    }

    .section-header h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .platform-card {
        width: 180px;
        padding: 1.2rem;
    }

    .platform-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .download-platforms {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .platform-card {
        width: 100%;
        max-width: 280px;
    }
}

/* Mobile Sticky Buttons */
.mobile-sticky-buttons {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite ease-in-out;
}

.join-btn {
    background-color: #25D366;
    color: white;
    width: 50%;
    float: left;
}

.login-btn {
    background-color: #24A1DE;
    color: white;
    width: 50%;
    float: right;
}

.join-btn:hover,
.login-btn:hover {
    opacity: 0.9;
}


/* Show mobile buttons only on mobile devices */
@media (max-width: 768px) {
    .mobile-sticky-buttons {
        display: flex;
        transform: translateY(100%);
        /* Hidden initially */
        transition: transform 0.3s ease;
    }

    .mobile-sticky-buttons.visible {
        transform: translateY(0);
        /* Slide up to show */
    }

    /* Add padding to the footer to prevent content from being hidden behind the sticky buttons */
    .footer {
        margin-bottom: 50px;
    }
}

/* Warning Section Styles */
.warning-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.warning-content {
    padding: 1rem 0;
}

.warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-list li {
    background-color: rgba(255, 0, 0, 0.1);
    margin-bottom: 1rem;
    padding: 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    border-left: 4px solid #ff4e50;
    transition: transform 0.3s ease;
}

.warning-list li:hover {
    transform: translateY(-3px);
}

.warning-list li i {
    color: #ff4e50;
    margin-right: 1rem;
    font-size: 1.3rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .warning-list li {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .warning-list li i {
        font-size: 1.1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 1rem 1rem;
    background-color: #121212;
}

.faq-content {
    padding: 1rem 0;
}

.faq-item {
    background-color: #2a2a2a;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background-color: #333;
    position: relative;
    cursor: pointer;
    /* Add cursor pointer */
}

.faq-number {
    width: 30px;
    height: 30px;
    background-color: #2aede6;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 500;
    flex-grow: 1;
    /* Allow text to take available space */
}

.faq-answer {
    padding: 1.2rem;
    border-top: 1px solid #444;
    display: none;
    /* Hide by default */
}

.faq-item.active .faq-answer {
    display: block;
    /* Show when active */
}

.faq-answer p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question,
    .faq-answer {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}