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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.name {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    display: inline-block;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(255, 255, 255, 0.03);
}

.name::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
    opacity: 0.3;
}

@media screen and (max-width: 768px) {
    .name {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: 0.2em;
    }

    .name::after {
        bottom: -15px;
        width: 70%;
    }
}

@media screen and (max-width: 480px) {
    .name {
        font-size: clamp(1.75rem, 12vw, 3rem);
        letter-spacing: 0.15em;
    }

    .name::after {
        bottom: -10px;
        width: 80%;
    }

    .container {
        padding: 15px;
    }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
    .name {
        font-size: clamp(2rem, 6vh, 4rem);
    }

    .name::after {
        bottom: -10px;
    }
}
