body {
    margin: 0;
    font-family: 'Archivo', sans-serif;
    background-color: #0b0602;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-size: 1.25rem;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 255, 255, 0.1), rgba(255, 215, 0, 0.05));
    background-size: 200% 200%;
    animation: gradientWave 15s ease infinite;
    z-index: -1;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.floating-image {
    position: fixed;
    width: 48px;
    height: 48px;
    opacity: 0.3;
    pointer-events: none;
    animation: floatUp 5s linear forwards;
    z-index: 0;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    width: 100%;
}

.header-image {
    max-width: 50%;
    height: auto;
}

h1 {
    font-size: 4rem;
    margin: 10px 0;
    color: #f16410;
}

.tagline {
    font-size: 1.6rem;
    margin: 5px 0;
    text-align: center;
}

.intro {
    font-size: 1.4rem;
    margin: 5px 0;
    text-align: center;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
    width: 100%;
    max-width: 600px;
}

.ca-button-group {
    margin: 5px 0;
}

.gold-button {
    background-color: #ef610f;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 1.4rem;
    font-family: 'Archivo', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 12px;
    flex: 1;
    max-width: 150px;
    text-align: center;
}

.gold-button:hover {
    background-color: #bb4907;
}

.container {
    background-color: #0b0602;
    border: 2px solid #ce7731;
    padding: 20px;
    margin: 20px auto; /* Changed from '20px 0' to ensure centering */
    width: 80%;
    max-width: 600px;
    text-align: center;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Added to reinforce centering */
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 0.2s;
}

.ca-container p {
    font-size: 1.5rem;
    margin: 0 0 5px 0;
}

.meme-container {
    max-width: 400px;
    animation-delay: 0.4s;
}

.meme-container:nth-child(2) {
    animation-delay: 0.6s;
}

.meme-container:nth-child(3) {
    animation-delay: 0.8s;
}

.meme-container p {
    margin: 0;
    font-size: 1.3rem;
    text-align: center;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 20px 0;
}

hr {
    width: 80%;
    max-width: 600px;
    border: 1px solid #ce7731;
}

.disclaimer {
    font-size: 1.2rem;
    margin: 10px 0;
    text-align: center;
    max-width: 600px;
}

.copyright {
    font-size: 1.1rem;
    margin: 10px 0;
    text-align: center;
}

.scrolling-banner {
    width: 80%;
    max-width: 600px;
    background-color: #ef610f;
    color: #ffffff;
    overflow: hidden;
    margin: 10px auto; /* Changed from '10px 0' to ensure centering */
    border-radius: 12px;
    display: flex; /* Added to reinforce centering */
    justify-content: center; /* Added to reinforce centering */
}

.banner-wrapper {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll 12s linear infinite;
}

.banner-text {
    padding: 10px 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.banner-text + .banner-text {
    margin-left: 40px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}