* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
    width: 800px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.etymology {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.etymology strong {
    color: #ffd700;
    font-weight: bold;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #ffd700;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
        max-width: 95%;
    }

    .etymology {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
}
