
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.home-page {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.home-page::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.home-container {
    text-align: center;
    z-index: 1;
    max-width: 90%;
}
.title-floating {
    margin-bottom: 3rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.page-title {
    font-size: 4rem;
    font-weight: bold;
    color: #cc0000;
    letter-spacing: 3px;
    text-shadow: 
        0 4px 15px rgba(204, 0, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.house-icon {
    display: inline-block;
    position: relative;
    margin: 0 5px;
}

.house-icon::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 35px solid #cc0000;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
}

.house-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 40px;
    border: 3px solid #cc0000;
    border-top: none;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
}
.tagline {
    font-size: 1.2rem;
    color: #cc0000;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInOut 4s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.intro-text {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #999;
    opacity: 0.7;
}
.play-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #cc0000;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border: 3px solid #cc0000;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
    cursor: pointer;
}

.play-button:hover {
    background-color: transparent;
    color: #cc0000;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.6);
}

.play-button:active {
    transform: scale(0.98);
}

main {
    margin-right: 20%;
    margin-left: 20%;
}

.lose-page-body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #3a0000 0%, #d10000 55%, #6b0000 100%);
    color: white;
}

.lose-main {
    width: min(92%, 720px);
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.28);
}

.lose-kicker {
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 15px;
    opacity: 0.9;
}

.lose-h1 {
    margin: 0.6rem 0 1rem;
    font-size: 100px;
    text-transform: uppercase;
}

.lose-text {
    margin: 0 auto;
    line-height: 1.6;
    font-size: 20px;
    opacity: 0.96;
}

.lose-actions {
    margin-top: 1.8rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.lose-btn {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    border-radius: 0.6rem;
    text-decoration: none;
    font-weight: 700;
}

.lose-btn-primary {
    background-color: #fff;
    color: #7a0000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.lose-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.72);
}