.cover-block {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 70px 40px;
    overflow: hidden;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
}
a.btn.btn-secondary,
a.btn.btn-primary,
.btn-secondary a {
    text-decoration: none;
}
body {
    margin: 0px;
}
/* BACKGROUND IMAGE FIXED COVER (NO REPEAT) */
.cover-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: scale(1.05);
    filter: brightness(0.25) contrast(1.3) saturate(1.5);
    z-index: 0;
}

/* STRONG READABILITY LAYER */
.cover-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.75) 70%,
        rgba(0,0,0,0.9) 100%
    );
    z-index: 1;
}

/* CONTENT ABOVE */
.cover-block > * {
    position: relative;
    z-index: 2;
}

/* TOP TEXT - MORE READABLE + HUD STYLE */
.cover-titles {
    text-align: center;
    margin-top: 10px;
    animation: fadeInDown 1s ease-out;
}

.cover-titles h1 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #00f5ff;
    text-shadow:
        0 0 5px #00f5ff,
        0 0 15px #00f5ff,
        0 0 35px rgba(0,245,255,0.7);
    animation: glowPulse 2.5s infinite alternate;
}

.cover-titles h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ff3df2;
    text-shadow: 0 0 20px rgba(255,61,242,0.8);
}

.cover-titles h3 {
    font-size: 24px;
    color: #ffe600;
    text-shadow: 0 0 10px rgba(255,230,0,0.6);
}

/* IMAGE ROW - MORE WILD MOTION */
.cover-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 40px 0;
}

.cover-images img {
    width: 190px;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid rgba(0, 245, 255, 0.6);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.3);
    transition: transform 0.4s ease, filter 0.4s ease;
    animation: floatWiggle 4s ease-in-out infinite;
}

/* stagger animation per image */
.cover-images img:nth-child(2) {
    animation-delay: 0.5s;
}
.cover-images img:nth-child(3) {
    animation-delay: 1s;
}

.cover-images img:hover {
    transform: scale(1.15) rotate(-2deg);
    filter: brightness(1.2) saturate(1.4);
}

/* BUTTON AREA */
.cover-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out;
}

.btn {
    padding: 15px 30px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

/* NEON PRIMARY */
.btn-primary {
    background: linear-gradient(90deg, #00f5ff, #0066ff);
    color: #000;
    box-shadow: 0 0 20px rgba(0,245,255,0.6);
}

/* NEON SECONDARY */
.btn-secondary {
    background: linear-gradient(90deg, #ff3df2, #ffe600);
    color: #000;
    box-shadow: 0 0 20px rgba(255,61,242,0.5);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ===== ANIMATIONS ===== */

@keyframes glowPulse {
    0% { text-shadow: 0 0 10px #00f5ff; }
    100% { text-shadow: 0 0 30px #00f5ff; }
}

@keyframes floatWiggle {
    0%   { transform: translateY(0px) rotate(0deg); }
    25%  { transform: translateY(-8px) rotate(1deg); }
    50%  { transform: translateY(0px) rotate(-1deg); }
    75%  { transform: translateY(6px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}