:root {
    --primary-color: #2a2a72;
    --secondary-color: #009ffd;
    --accent-color: #00d2ff;
    --text-color: #e0e0e0;
    --bg-color: #0f0f1a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #000000 100%);
    overflow: hidden;
}

.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    filter: blur(80px);
    opacity: 0.4;
    animation: move 20s infinite alternate;
}

.background-animation::after {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    right: -100px;
    bottom: -100px;
    animation-delay: -10s;
}

@keyframes move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 50px) rotate(20deg);
    }
}

/* Main layout for flyer only */
.flyer-only-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    /* Allow scrolling */
}

.main-flyer-img {
    max-width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flyer-only-container {
        padding: 10px;
    }
}