/* style/resources-vn58vip-app-download-guide.css */

/* Base styles for the page content wrapper */
.page-resources-vn58vip-app-download-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    background-color: #0A192F; /* Primary background color */
}

/* Container for consistent content width */
.page-resources-vn58vip-app-download-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-vn58vip-app-download-guide__hero {
    background: linear-gradient(135deg, #0A192F 0%, #30475E 100%); /* Dark blue to slightly lighter blue for depth */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-resources-vn58vip-app-download-guide__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-vn58vip-app-download-guide__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-resources-vn58vip-app-download-guide__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-vn58vip-app-download-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none; /* Remove default button border */
}

.page-resources-vn58vip-app-download-guide__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue text on gold */
}

.page-resources-vn58vip-app-download-guide__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-resources-vn58vip-app-download-guide__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
}

.page-resources-vn58vip-app-download-guide__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A192F; /* Dark blue text on hover */
    transform: translateY(-3px);
}

/* General Section Styling */
.page-resources-vn58vip-app-download-guide__section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-vn58vip-app-download-guide__section:last-of-type {
    border-bottom: none;
}

.page-resources-vn58vip-app-download-guide__section--intro {
    background-color: #0A192F;
}

.page-resources-vn58vip-app-download-guide__heading {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-resources-vn58vip-app-download-guide__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 60px;
    color: #B0B0B0;
}

/* Content Grid for Intro Section */
.page-resources-vn58vip-app-download-guide__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-resources-vn58vip-app-download-guide__text-content {
    flex: 1;
    min-width: 300px;
}

.page-resources-vn58vip-app-download-guide__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
    color: #E0E0E0;
}

.page-resources-vn58vip-app-download-guide__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-resources-vn58vip-app-download-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Why Section */
.page-resources-vn58vip-app-download-guide__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-vn58vip-app-download-guide__feature-item {
    background-color: #1A2E40; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-vn58vip-app-download-guide__feature-item:hover {
    transform: translateY(-10px);
}

.page-resources-vn58vip-app-download-guide__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700); /* Gold glow effect */
}

.page-resources-vn58vip-app-download-guide__feature-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-vn58vip-app-download-guide__feature-item p {
    font-size: 1em;
    color: #B0B0B0;
}

.page-resources-vn58vip-app-download-guide__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

/* Download Guide Section */
.page-resources-vn58vip-app-download-guide__download-steps {
    margin-top: 40px;
}

.page-resources-vn58vip-app-download-guide__step {
    background-color: #1A2E40;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-vn58vip-app-download-guide__step-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.page-resources-vn58vip-app-download-guide__step p {
    font-size: 1.05em;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-resources-vn58vip-app-download-guide__link {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.page-resources-vn58vip-app-download-guide__link:hover {
    color: #E6C200;
}

.page-resources-vn58vip-app-download-guide__qr-code {
    display: block;
    margin: 30px auto;
    width: 180px;
    height: 180px;
    border: 5px solid #FFD700;
    border-radius: 10px;
}

.page-resources-vn58vip-app-download-guide__platform-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-resources-vn58vip-app-download-guide__platform-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-vn58vip-app-download-guide__platform-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-resources-vn58vip-app-download-guide__platform-item h4 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-vn58vip-app-download-guide__btn--android,
.page-resources-vn58vip-app-download-guide__btn--ios {
    margin-top: 20px;
    width: 80%;
}

.page-resources-vn58vip-app-download-guide__image--small {
    max-width: 200px;
    margin-top: 20px;
    border: 2px solid #FFD700;
}

.page-resources-vn58vip-app-download-guide__installation-guide h4 {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-vn58vip-app-download-guide__installation-guide ol {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-resources-vn58vip-app-download-guide__installation-guide li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Register & Login Section */
.page-resources-vn58vip-app-download-guide__process-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}