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

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0f 50%, #2a1015 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: #ff6b35;
    border-radius: 50%;
    animation: twinkle 3s infinite;
    box-shadow: 0 0 6px #ff6b35;
}

.star:nth-child(1) { top: 20%; left: 20%; width: 2px; height: 2px; animation-delay: 0s; }
.star:nth-child(2) { top: 60%; left: 30%; width: 1px; height: 1px; animation-delay: 1s; }
.star:nth-child(3) { top: 40%; left: 70%; width: 3px; height: 3px; animation-delay: 2s; }
.star:nth-child(4) { top: 80%; left: 80%; width: 2px; height: 2px; animation-delay: 0.5s; }
.star:nth-child(5) { top: 10%; left: 60%; width: 1px; height: 1px; animation-delay: 1.5s; }
.star:nth-child(6) { top: 70%; left: 10%; width: 2px; height: 2px; animation-delay: 2.5s; }
.star:nth-child(7) { top: 30%; left: 90%; width: 1px; height: 1px; animation-delay: 3s; }
.star:nth-child(8) { top: 90%; left: 40%; width: 2px; height: 2px; animation-delay: 0.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; transform: scale(1.2); }
}

.container {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.logo {
    font-family: 'Cinzel', 'Georgia', serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #dc2626, #7c2d12, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
    letter-spacing: 0.1em;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.email {
    font-size: 1.3rem;
    color: #ffa07a;
    margin: 0;
}

.frost-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 10, 10, 0.3) 100%);
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .email {
        font-size: 1.1rem;
    }
}