/* style/register-guide.css */
.page-register-guide {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for dark background */
    background-color: #0A1931; /* Main dark background */
    line-height: 1.6;
}

.page-register-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-register-guide__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-guide__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Accent color for title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-register-guide__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #f5e6ce;
}

.page-register-guide__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-register-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-register-guide__section--why-oxbet {
    background-color: #1a2a47;
}

.page-register-guide__section--steps {
    background-color: #0A1931;
}

.page-register-guide__section--faq {
    background-color: #1a2a47;
}

.page-register-guide__section--related-guides {
    background-color: #0A1931;
}

.page-register-guide__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for section titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-register-guide__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #ccc;
}

.page-register-guide__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-register-guide__feature-item {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-guide__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-register-guide__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

.page-register-guide__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-register-guide__feature-text {
    color: #f5e6ce;
}

.page-register-guide__steps-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-register-guide__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #1a2a47;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-register-guide__step-number {
    background-color: #FFD700;
    color: #0A1931;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.page-register-guide__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-register-guide__step-text {
    font-size: 1.1em;
    color: #f5e6ce;
    max-width: 700px;
    margin-bottom: 20px;
}

.page-register-guide__step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-guide__cta-block {
    background-color: #FFD700;
    color: #0A1931;
    padding: 30px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-register-guide__cta-text {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-register-guide__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-register-guide__faq-item {
    background-color: #0A1931;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-guide__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-register-guide__faq-answer {
    color: #f5e6ce;
}

.page-register-guide__related-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-register-guide__related-item {
    background-color: #1a2a47;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-guide__related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-register-guide__related-title {
    font-size: 1.2em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-register-guide__related-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-register-guide__related-title a:hover {
    color: #ffd700cc;
    text-decoration: underline;
}

.page-register-guide__related-description {
    color: #ccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-register-guide__cta-final {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
    color: #0A1931;
}

.page-register-guide__cta-final-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #0A1931;
}

.page-register-guide__cta-final-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #333;
}

.page-register-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    cursor: pointer;
    white-space: nowrap;
}

.page-register-guide__button--primary {
    background-color: #FFD700;
    color: #0A1931;
    border: 2px solid #FFD700;
}

.page-register-guide__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-register-guide__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-register-guide__button--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-3px);
}

.page-register-guide__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #0A1931;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-register-guide__button--small:hover {
    background-color: #FFD700;
    color: #0A1931;
}

.page-register-guide__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-register-guide__button--text {
    background: none;
    border: none;
    color: #0A1931;
    padding: 0;
    text-decoration: underline;
    font-size: 1.1em;
}

.page-register-guide__button--text:hover {
    color: #333;
    text-decoration: none;
}

.page-register-guide__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-register-guide__link:hover {
    color: #ffd700cc;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-register-guide__hero-title {
        font-size: 2.5em;
    }
    .page-register-guide__section-title {
        font-size: 2em;
    }
    .page-register-guide__steps-list {
        gap: 30px;
    }
    .page-register-guide__feature-grid, .page-register-guide__faq-grid, .page-register-guide__related-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-register-guide__cta-final-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-register-guide__hero {
        padding: 60px 0 30px;
    }
    .page-register-guide__hero-title {
        font-size: 2em;
    }
    .page-register-guide__hero-subtitle {
        font-size: 1.1em;
    }
    .page-register-guide__section {
        padding: 40px 0;
    }
    .page-register-guide__section-title {
        font-size: 1.8em;
    }
    .page-register-guide__step-item {
        padding: 30px 20px;
    }
    .page-register-guide__step-title {
        font-size: 1.5em;
    }
    .page-register-guide__cta-final-title {
        font-size: 1.8em;
    }
    .page-register-guide__cta-final-description {
        font-size: 1em;
    }
    .page-register-guide__button {
        padding: 12px 25px;
        font-size: 0.95em;
    }
    .page-register-guide__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-register-guide__feature-grid, .page-register-guide__faq-grid, .page-register-guide__related-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-register-guide__hero-title {
        font-size: 1.8em;
    }
    .page-register-guide__section-title {
        font-size: 1.6em;
    }
    .page-register-guide__step-title {
        font-size: 1.3em;
    }
    .page-register-guide__cta-final-title {
        font-size: 1.6em;
    }
    .page-register-guide__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-register-guide__container {
        padding: 0 15px;
    }
}