@font-face {
    font-family: 'Market Deco';
    src: url('font/Market_Deco.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('img/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Crimson Pro', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

.link {
    background-color: rgb(39 39 39 / 80%);
    color: #ffffff;
    padding: 4px 8px;
    text-decoration: none;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
   
}

.game-card {
    background-image: url('img/fixed_bkg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    max-height: 800px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.game-title {
    text-align: center;
    padding-top: 60px;
    z-index: 2;
    position: relative;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-section {
    text-align: center;
    padding: 0 20px 20%;
    z-index: 2;
    position: relative;
    margin-top: auto;
}

.play-button {
    background: #6138F2;
    color: #ffffff;
    padding: 4px;
    font-size: 1.3rem;
    font-family: 'Market Deco', sans-serif;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 3px 3px 0px #000000;
    position: relative;
    text-decoration: none;
    display: flex
;
    width: 70%;
    margin: 0 auto 8px;
    align-items: center;
    justify-content: center;
}

.play-button span {
    flex: 1;
    border: 2px solid #0f0439;
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.play-button:active {
    transform: translateY(1px);
    box-shadow: 1px 1px 0px #000000;
}

.platform-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(0deg, black, #00000052);
    padding: 10px;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    border: 1px solid #e7c728;
    margin-bottom: 20px;
}


.platform-info p {
    color:  #e7c728;
    font-size: 18px;
}

.platform-info span:first-child {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.google-play {
    display: flex;
    align-items: center;
    gap: 8px;
   
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.google-play img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.play-icon {
    font-size: 1.2rem;
    color: #000000;
}

.play-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-family: 'Market Deco', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.store-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.store-badge {
    width: 150px;
    height: auto;
    transition: transform 0.3s ease;
    box-shadow: 2px 2px 10px #000000;
}

.store-badge:hover {
    transform: scale(1.05);
}

.bottom-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}





/* Responsividade
@media (max-width: 768px) {
    .game-card {
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .play-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .game-title {
        padding-top: 40px;
    }
    
    .cta-section {
        padding: 30px 15px;
    }
} */
