:root {
    --primary-text-color: #333333;
    --secondary-text-color: #666666;
    --background-light: #f0f0f0;
    --background-creamy: #151515;
    --accent-blue: #4D4DFF;
    --accent-green: #2ecc71;
    --accent-pink: #9063CD;
    --accent-yellow: #f1c40f;
    --accent-intro: #ffc1cc;
    --border-light: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

.highlight {
    background: linear-gradient(to right,
            #ff0000,
            #ff7f00,
            #ffff00,
            #00ff00,
            #0000ff,
            #4b0082,
            #9400d3,
            #ff0000);
    background-size: 400% 100%;
    animation: moveRainbow 15s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@keyframes moveRainbow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@media (max-width: 600px) {
    .rainbow-box {
        width: 90%;
        padding: 1.5rem;
        font-size: 1.2rem;
    }
}

.centered-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    min-width: 70%;
    padding: 20px;
    border: 1px solid #4d4d4d;
}

.centered-container button {
    width: 200px;
    padding: 10px 20px;
    margin-bottom: 10px;
    box-sizing: border-box;
    text-align: center;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.centered-container button:last-child {
    margin-bottom: 0;
}

body {
    background-color: var(--background-creamy);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    margin: 0;
    color: var(--primary-text-color);
    line-height: 1.6;
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(-2.5px);
    }
}

.small-info {
    font-size: 1rem !important;
    animation: wave 2s infinite ease-in-out;
    animation-delay: 0s;
    animation-fill-mode: both;
    margin-bottom: 0.5rem !important;
    padding-bottom: 0.2rem !important;
}

.small-info img {
    margin-bottom: 0.5rem !important;
}

.intro {
    background-color: var(--accent-intro) !important;
}

.purple {
    background-color: var(--accent-pink) !important;
}

.yellow {
    background-color: var(--accent-yellow) !important;
}

.green {
    background-color: var(--accent-green) !important;
}

.banner {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner img {
    margin-bottom: .5rem;
    border-radius: 2px!important;
}

@media (max-width: 600px) {
    .banner {
        flex-direction: column;
        gap: .1rem;
    }
}

.banner img {
    max-width: 100%;
    height: auto;
}

.wow {
    cursor: pointer;
    border-radius: 10px;
    transform: rotate(0deg);
    filter: hue-rotate(0deg) saturate(100%) brightness(100%);
    transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.wow:hover {
    transform: rotate(360deg);
    filter: hue-rotate(270deg) saturate(350%) brightness(100%);
}

.page-container {
    border: 1px solid var(--border-light);
    background-color: #ffffff4f;
    padding: 1rem;
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px var(--shadow-color);
    border-radius: 12px;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    border-radius: 8px;
}

.marquee-container {
    display: none;
}

.guide-text-section {
    text-align: left;
    font-size: 22px;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border: none;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    max-width: 660px;
}

.guide-text-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    text-decoration: none;
    text-align: center;
    letter-spacing: -0.02em;
}

.guide-text-section p {
    font-size: 1.1rem;
    color: var(--primary-text-color);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.guide-text-section p:last-child {
    margin-bottom: 0;
}



.guide-text-section ul,
.guide-text-section ol {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-position: inside;
}

.guide-text-section ul li,
.guide-text-section ol li {
    margin-bottom: 0.5rem;
    color: var(--secondary-text-color);
        font-family: 'Inter', sans-serif;
    font-size: 1.1rem;    
}

.guide-text-section p strong {
    color: var(--accent-blue);
    font-weight: 600;
}

.guide-text-section p.quote {
    font-size: 1rem;
    color: var(--secondary-text-color);
    margin-top: 2rem;
    font-style: italic;
    background-color: #e6f7ff;
    padding: 1.5rem;
    border-left: 5px solid var(--accent-blue);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: black;
    color: whitesmoke;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-bottom: 0.5rem;
    border: 1px solid black;
}

.button-link:hover {
    background-color: white;
    color: black;
}

.guide-columns {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    background-color: var(--background-light);
    border: none;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    max-width: 660px;
    padding: 2rem;
    min-height: 200px;
    min-width: 70%;
}

.guide-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
}

.guide-column .button-link {
    width: 70%
}

@media (max-width: 600px) {
    .guide-columns {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .guide-column {
        min-width: unset;
        width: 100%;
    }
}