/* --- Global Styles and Background --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', 'Rubik', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #25235c, #100D36);
    background-attachment: fixed;
    background-size: cover;
    color: white;
    line-height: 1.6;
}

/* --- Layout and Content Wrapper --- */
.content-wrapper {
    padding: 20px 20px 100px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.top-logo {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.main-logo-image {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.main-image {
    margin-top: 30px;
    text-align: center;
}

.responsive-main-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* --- Typography and Headings --- */
.title-info {
    margin-top: 30px;
    text-align: center;
    padding: 0 10px;
}

.title-info .section-heading-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #75ff93;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-info .section-heading-large {
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    background: linear-gradient(85.98deg, #ffe974 10.89%, #d06cff 91.16%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.title-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Game Logos Container --- */
.logo-container {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* --- Payment and Certification Sections --- */
.section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 25px 0;
    text-align: center;
    margin-top: 30px;
}

.section-container .section-heading {
    font-size: 28px;
    font-weight: 700;
    color: #fa3333;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-container .section-sub-heading {
    font-size: 20px;
    color: #e62828;
    margin-bottom: 20px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icons img {
    width: 110px;
    height: 70px;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.payment-icons img:hover {
    transform: scale(1.1);
}

.certificate-container {
    display: flex;
    margin-top: 50px;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
}

.certificate-container img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.certificate-container img:hover {
    transform: scale(1.1);
}

.made-by {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 14px;
    padding: 20px 0;
}

.bottom-spacer {
    height: 30px;
}

/* --- Fixed Download Button --- */
.fixed-download-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.fixed-download-btn button {
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient(135deg, #ff4d4d, #e04343);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.fixed-download-btn button:hover {
    background: linear-gradient(135deg, #e04343, #ff4d4d);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.5);
}

.fixed-download-btn button:active {
    transform: translateY(-1px);
}

/* --- Floating Social Icons --- */
.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
}

.telegram {
    background: linear-gradient(135deg, #e7ebed, #4493be);
}

.messenger {
    background: linear-gradient(135deg, #d9dfe7, #5589d6);
}

.float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.float-btn svg {
    width: 24px;
    height: 24px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 15px 15px 100px;
    }
    
    .main-logo-image {
        width: 180px;
    }
    
    .title-info .section-heading-large {
        font-size: 22px;
        line-height: 26px;
    }
    
    .title-info p {
        font-size: 13px;
        line-height: 18px;
    }
    
    .logo {
        width: 85px;
        height: 85px;
    }
    
    .section-container .section-heading {
        font-size: 24px;
    }
    
    .section-container .section-sub-heading {
        font-size: 18px;
    }
    
    .payment-icons {
        gap: 15px;
    }
    
    .payment-icons img {
        width: 90px;
        height: 60px;
    }
    
    .certificate-container {
        gap: 15px;
    }
    
    .certificate-container img {
        width: 50px;
        height: 50px;
    }
    
    .floating-icons {
        right: 15px;
        bottom: 90px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .fixed-download-btn {
        width: 95%;
    }
    
    .fixed-download-btn button {
        padding: 16px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 10px 10px 100px;
    }
    
    .main-logo-image {
        width: 160px;
    }
    
    .title-info .section-heading-large {
        font-size: 20px;
    }
    
    .logo {
        width: 75px;
        height: 75px;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .payment-icons img {
        width: 80px;
        height: 50px;
    }
    
    .floating-icons {
        right: 10px;
        bottom: 80px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
    }
    
    .float-btn svg {
        width: 20px;
        height: 20px;
    }
}