.apps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
}

.store-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    min-width: 200px;
    flex: 1;
    max-width: 300px;
}
.br {
    border-bottom: 3px solid #00ffb7;
    width: 1500px;
    margin: 0 auto;  /* Centers horizontally */
    display: block;  /* Ensures block-level centering */
}
.game-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 2rem 1rem;
}

.game-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 2rem 1rem;
}

.game-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.apps {
    order: -1;
}

.logoG {
    order: 2;
    align-self: center;
}

.logob {
    align-self: center;
}

.logob img {
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logoG {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px;
}

.logoG img {
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.store-card .logo {
    width: 64px;
    height: auto;
}

.store-card a:first-of-type {
    font-weight: bold;
    color: #00ffb7;
    text-decoration: none;
}

.store-card h2 {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    color: #ccc;
}

.store-card .button-link {
    padding: 8px 20px;
    background: #0070d2;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
}
@media (max-width: 1046px) {
.br {
    width: 500px;
}
}
@media (max-width: 768px) {
    .apps {
        flex-direction: column;
        align-items: center;
    }
.br {
    width: 350px;
}
    .logob {
        height: 200px;
        width: auto;
        max-width: 400px;
        object-fit: contain;
    }

    .logoG {
        height: 300px;
        width: auto;
        max-width: 400px;
        object-fit: contain;
    }

    .game-section {
        flex-direction: column;
        align-items: center;
    }

    .logob,
    .logoG {
        order: -1;
        margin-bottom: 1rem;
    }

    .apps {
        flex-direction: row !important;
        gap: 0.5rem;
        padding: 1rem;
    }

    .store-card {
        min-width: 140px;
        flex: 1;
    }

    .learn-more {
        margin-top: 1rem;
    }

    .logob,
    .logoG {
        order: -1;
    }
}


.learn-more {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
   
}

.learn-more-content {
    background-color: var(--bg-player-colour);
    padding: 1rem 1rem;
    margin-top: 0.5rem;
    color: white;
    border-radius: 25px;
    border: 1px solid #1c1c1c;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.learn-more-content p {
    margin: 0 0 1rem 0;
    font-size: 14px;
    line-height: 1.5;
}

.learn-more-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.learn-more-content li {
    font-size: 13px;
    margin-bottom: 0.3rem;
}

.button-link {
    padding: 10px 20px;
    background: #0070d2;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 1s;
}

.button-link:hover {
    background: #00539c;
}