/* Custom Font */
@font-face {
    font-family: 'Bango Pro';
    src: url('../fonts/bangopro.ttf');
}

html, body {
    overflow-x: hidden;
    background-color: #dd1d22;
    font-family: Lato, sans-serif;
    font-weight: normal;
    color: #f5f5f5;
}

/* Company Logo Header (smaller, less prominent) */
.company-logo-header {
    text-align: center;
    margin-bottom: 6rem;
    opacity: 1;
}

.company-logo {
    width: 300px;
    height: auto;
}

.contact-button {
    width: auto !important;
	border-radius: 0.375rem;
	font-size: 1.0rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #dd1d22;
	transition: all 0.3s ease;
	padding: 0.75rem 1.5rem;
}

@media screen and (max-width: 576px) {
    .contact-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
        letter-spacing: 0.05em;
    }
}

.container, .container-fluid {
    position: relative;
    z-index: 1;
}
section {
    position: relative;
    width: 100%;
    padding: 5rem 0;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.btn-white {
    background-color: #f5f5f5;
}

.btn-white:hover {
    background-color: #ffffffb3;
    color: #ff252c;
}

.btn-white:active {
    background-color: #ffffff66 !important;
}

.home-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-content-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    z-index: 10;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.footer {
    bottom: 1rem;
    position: absolute;
    text-align: center;
    width: 100%;
}

.footer .footer-link {
    font-size: 0.85rem;
    color: #f5f5f5;
    margin: 0 0.5rem;
    display: inline-block;
}

.copyright-text {
    font-size: 0.75rem;
    margin: 0;
    color: #f5f5f5;
}

/* Main Game Section */
.main-game-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
    color: #f5f5f5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.app-icon-container {
    flex-shrink: 0;
}

.app-icon {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.game-info {
    text-align: center;
}

.game-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Bango Pro', sans-serif;
    margin: 0;
    color: #f5f5f5;
    text-align: center;
}

.game-main-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
}

.game-description-column {
    flex: 1;
    max-width: 400px;
}

.game-desc-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    color: #f5f5f5;
    font-weight: bold;
}

.game-screenshot-column {
    flex-shrink: 0;
}

.screenshot-container {
    display: flex;
    justify-content: center;
}

.screenshot {
    height: 500px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.screenshot img {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 323 / 699;
}

.store-links {
    margin-top: 1rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-link:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 60px;
    width: auto;
}

.bottom-section {
    text-align: center;
    opacity: 0.7;
    padding: 1rem;
}

.secondary-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.secondary-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-link:hover {
    color: #f5f5f5;
    text-decoration: none;
}

.linkedin-icon-small {
    height: 1.2rem;
    width: auto;
}

.legal-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0.1rem;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.copyright-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Large landscape displays - bigger content */
@media screen and (min-width: 1400px) and (min-height: 1100px) and (min-aspect-ratio: 1.4) {
    .company-logo-header {
        margin-bottom: 7rem;
    }

    .company-logo {
        width: 350px;
    }

    .main-game-section {
        max-width: 1400px;
    }
    
    .game-main-content {
        gap: 4rem;
    }

    .game-description-column {
        max-width: 600px;
    }
    
    .game-desc-text {
        font-size: 1.4rem;
        max-width: 500px;
    }
    
    .screenshot {
        height: 650px;
    }
    
    .store-badge {
        height: 70px;
    }
    
    .game-title {
        font-size: 3rem;
    }
}

/* Portrait mode - stack content vertically */
@media screen and (max-width: 768px) {
    .company-logo-header {
        margin-bottom: 4rem;
    }
    
    .company-logo {
        width: 200px;
    }
    
    .main-game-section {
        padding: 0.5rem;
    }

    .game-main-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Reorder content - screenshot first, then description and store links */
    .game-description-column {
        order: 2;
    }
    
    .game-screenshot-column {
        order: 1;
    }
    
    .game-desc-text {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .game-title {
        font-size: 1.8rem;
    }
    
    .screenshot {
        height: 350px;
    }
    
    .bottom-section {
        padding: 0.5rem;
    }
}

@media screen and (max-width: 576px) {
    .company-logo-header {
        margin-bottom: 3rem;
    }
    
    .company-logo {
        width: 150px;
    }
    
    .main-game-section {
        padding: 0.5rem;
    }
    
    .game-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .app-icon {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }
    
    .game-title {
        font-size: 1.6rem;
    }
    
    .game-desc-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .screenshot {
        height: 300px;
    }
    
    .store-buttons {
        gap: 0.5rem;
    }
    
    .store-badge {
        height: 45px;
    }
    
    .bottom-section {
        padding: 0.5rem;
    }
    
    .secondary-links {
        gap: 1rem;
    }
    
    .legal-links {
        gap: 1rem;
    }
}

 
.agreement-body {
    font-size: 0.9em;
    text-align: justify;
    text-justify: inter-word;
}

.agreement-header {
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}

@media (min-width: 992px) {
    .home-content {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    body.home-layout-center .home-content-inner {
        margin-left: auto;
        margin-right: auto;
        max-width: 960px;
        min-height: 100%;
        transition: transform 0.8s cubic-bezier(0.5, 0, 0.2, 1) 0s;
        will-change: transform;
    }
}
