@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@900&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    font-family: 'Cinzel', serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.background-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vw;
    height: 200vh;
    transform: translate(-50%, -50%);
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 215, 0, 0.05) 10deg,
        transparent 20deg
    );
    animation: rotateRays 30s linear infinite;
    z-index: 1;
}

@keyframes rotateRays {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
}

h1 {
    font-size: 20rem;
    margin: 0;
    color: #ffd700;
    text-shadow: 
        0 1px 0 #ccaa00,
        0 2px 0 #b39500,
        0 3px 0 #998000,
        0 4px 0 #806a00,
        0 5px 0 #665500,
        0 6px 0 #4d4000,
        0 7px 0 #332b00,
        0 8px 0 #1a1500,
        0 20px 30px rgba(0,0,0,0.9);
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
}

p {
    font-size: 1.5rem;
    color: #ffd700;
    letter-spacing: 15px;
    margin-top: -30px;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
    opacity: 0.8;
}
