/* ============================= */
/* ===== GLOBAL RESET ========== */
/* ============================= */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Prevent mobile font scaling issues */
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

/* Core body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #340000;
}

/* Remove list styles */
ul,
ol {
    list-style: none;
}

/* Remove default link styling */
a {
    text-decoration: none;
    color: inherit;
}

/* Responsive media */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Remove form inconsistencies */
button,
input,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
}

/* ============================= */
/* ===== MAIN PAGE STYLES ====== */
/* ============================= */

/* Main Header */
.mainHeader {
    font-size: clamp(40px, 10vw, 150px);
    font-style: italic;
    color: white;
    text-align: center;
    margin-top: 30px;
}

/* Slash Text */
.slash {
    font-size: clamp(30px, 6vw, 50px);
    color: white;
    text-align: center;
    margin-top:10px;
}

/* Container */
.container {
    margin-top: 100px;
    text-align: center;
    color: white;
    padding: 0 20px;
    display: flex;               /* enable flex layout */
    flex-direction: column;      /* stack heading over button group */
    align-items: center;         /* center the heading and group */
}

/* horizontal row for the two buttons */
.button-group {
    display: flex;
    gap: 20px;                   /* space between Enter and Leave */
    flex-wrap: wrap;             /* wrap on very narrow screens if needed */
}
/* ============================= */
/* ===== BUTTON STYLING ======== */
/* ============================= */

.btn {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    margin: 20px;
    font-size: 18px;
    text-decoration: none;
    color: white;
    background: #111;
    border: 2px solid darkred;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.3s ease;
    letter-spacing: 2px;
    cursor: pointer;
}

/* Hover glow */
.btn:hover {
    background: darkred;
    box-shadow: 0 0 15px red;
}

/* Blood overlay */
.btn::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(139, 0, 0, 0.9) 0%,
        rgba(139, 0, 0, 0.7) 40%,
        rgba(139, 0, 0, 0) 100%
    );
    animation: drip 3s infinite ease-in-out;
    pointer-events: none;
}

/* Dripping animation */
@keyframes drip {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* ============================= */
/* ===== TABLET BREAKPOINT ===== */
/* ============================= */

@media (min-width: 768px) {

  
    .container {
        margin-top: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .slash{
        font-size: 70px;
        background: linear-gradient(
        to bottom,
        rgba(139,0,0,0.9),
        rgba(255,0,0,0.6)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
    .btn {
        font-size: 20px;
        padding: 18px 50px;
    }
}

/* ============================= */
/* ===== DESKTOP BREAKPOINT ==== */
/* ============================= */

@media (min-width: 1024px) {
    .container {
        margin: 150px auto 0;      /* top margin and auto left/right to centre */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* optional max-width to prevent full‑width stretching */
        max-width: 800px;
    }
    .slash {
        font-size: 100px;
    }
    .btn {
        font-size: 22px;
        padding: 20px 60px;
    }
}