body {
    margin: 0;
    font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
    background-color: #05013a;
    background-image: radial-gradient(circle at 10% 20%, #361184 0, transparent 35%),
                      radial-gradient(circle at 90% 10%, #f719ff 0, transparent 25%),
                      repeating-linear-gradient(45deg, #04002a 0, #04002a 12px, #0a0f5a 12px, #0a0f5a 24px);
    color: #fffde6;
    min-height: 100vh;
    padding: 20px 0;
}

.page-frame {
    width: min(940px, 96vw);
    margin: 0 auto;
    border: 6px double #ff00f5;
    background: rgba(10, 3, 70, 0.88);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.65);
}

.banner {
    text-align: center;
    background: linear-gradient(90deg, #00f3ff, #ff00f5, #ffee32);
    padding: 18px 12px 26px;
    border-bottom: 4px groove #ffee32;
}

.banner h1 {
    margin: 10px 0 0;
    font-size: clamp(2.4rem, 8vw, 3.6rem);
    letter-spacing: 0.15em;
    color: #05013a;
    text-shadow: 2px 2px 0 #ffee32, 4px 4px 0 #00f3ff;
}

.banner .tagline {
    margin: 6px 0 0;
    font-size: 1.1rem;
    color: #07003a;
    font-weight: bold;
}

.logo {
    width: 160px;
    border: 4px outset #ffee32;
    padding: 6px;
    background: #fff;
}

.ticker {
    background: #0ff0fa;
    color: #140052;
    font-weight: bold;
    border-top: 3px dashed #ff00f5;
    border-bottom: 3px dashed #ff00f5;
    padding: 6px 0;
    text-transform: uppercase;
}

.content {
    padding: 24px;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 12px, transparent 12px, transparent 24px);
}

.announcement {
    border: 5px ridge #00f3ff;
    background: rgba(4, 0, 60, 0.85);
    padding: 20px;
    text-align: center;
    box-shadow: inset 0 0 15px rgba(0, 243, 255, 0.45);
}

.announcement h2 {
    margin: 0 0 12px;
    font-size: 1.8rem;
    color: #fffb38;
    text-shadow: 1px 1px 0 #ff00f5;
}

.announcement p {
    margin: 0 auto 18px;
    max-width: 560px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #ff00f5;
    color: #fffdd7;
    border: 3px outset #ffee32;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 #05013a;
}

.btn:hover {
    filter: brightness(1.15);
}

.btn.loud {
    animation: pulse 1.2s infinite alternate;
    background: #ffee32;
    color: #05013a;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.info-table {
    width: 100%;
    margin: 26px 0;
    border: 4px groove #ffee32;
    background: rgba(5, 1, 58, 0.9);
    color: #fffde6;
}

.info-table th {
    background: linear-gradient(90deg, #ff00f5, #ffee32);
    color: #05013a;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.info-table td {
    border-top: 2px dotted #ff00f5;
    font-size: 1.05rem;
}

.info-table .left {
    width: 30%;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffee32;
}

.info-table .right {
    color: #c9e7ff;
}

.details {
    border: 4px ridge #00f3ff;
    margin: 22px 0;
    padding: 16px 20px;
    background: rgba(12, 40, 120, 0.72);
    color: #fffde6;
}

.details h2 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    text-align: center;
    color: #ffee32;
    text-shadow: 1px 1px 0 #ff00f5;
}

.details ul {
    margin: 0;
    padding-left: 20px;
}

.details li {
    margin-bottom: 8px;
}

.star {
    animation: blink 0.8s steps(2, jump-start) infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.footer {
    text-align: center;
    padding: 18px;
    border-top: 4px groove #ffee32;
    background: #0ff0fa;
    color: #140052;
    font-weight: bold;
}

.footer img {
    display: block;
    margin: 0 auto 12px;
}

a {
    color: #ffe43d;
}

a:hover {
    color: #ff77ff;
}

@media (max-width: 640px) {
    .banner h1 {
        letter-spacing: 0.08em;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
