@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --primary-glow: rgba(255, 255, 255, 0.5);
    --text-color: #fff;
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    width: 100%;
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/img/background_pc.webp');
    color: var(--text-color);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.content-container {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: transparent;
    border: none;
    box-shadow: none;
    animation: floatIn 1s ease-out;
}

h1.main-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    text-shadow: var(--text-shadow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.step-item {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-title-banner {
    width: 100%;
    padding: 2.5% 5%;
    background-image: url('assets/img/title-section.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 60px;
}

.step-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.step-content {
    width: 100%;
    text-align: center;
}

.step-desc {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.step-image:hover {
    transform: scale(1.02);
}

.video-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.video-wrapper iframe {
    width: 100%;
    height: auto;
    min-height: 400px;
    border: none;
    display: block;
    pointer-events: auto !important;
}

@media (max-width: 768px) {
    body {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/img/background_mobile.webp');
        padding: 0;
    }

    .content-container {
        width: 100%;
        border-radius: 0;
        border: none;
        background: transparent;
    }

    h1.main-title {
        font-size: 1rem;
    }

    .step-title-banner {
        min-height: 50px;
        height: auto;
        background-size: 100% 100%;
        padding: 10px 0;
    }

    .step-text {
        font-size: 0.8rem;
        padding: 0 10px;
        line-height: 1.2;
        display: block;
        width: 100%;
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recharge-section {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 20px;
}

.recharge-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 80px;
    background-image: url('assets/img/napthe-btn.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.recharge-btn:hover {
    transform: scale(1.05);
}

.recharge-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    top: -2px;
}

/* Footer Styles */
.site-footer {
    width: 100%;
    background: #634C29;
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-socials {
    text-align: center;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-item {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-item:hover {
    transform: translateY(-5px);
}

.footer-info {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
}

.company-name {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

.linksofun {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
}

.linksofun:hover {
    text-decoration: underline;
}

.company-details p {
    margin-bottom: 8px;
}

.copyright {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
        margin-top: 0;
    }

    .footer-title {
        font-size: 1rem;
    }

    .social-item {
        width: 35px;
        height: 35px;
    }

    .footer-info {
        font-size: 0.8rem;
    }
}