* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #0a0c0a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Cormorant Garamond', 'Josefin Sans', serif;
    padding: 1.5rem;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 10%, rgba(255, 140, 0, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: rgba(10, 15, 12, 0.85);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 100, 0, 0.4);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 100, 0, 0.1);
    position: relative;
    z-index: 2;
    animation: borderPulse 4s infinite alternate;
}
@keyframes borderPulse {
    0% { border-color: rgba(255, 100, 0, 0.4); box-shadow: 0 0 10px rgba(255, 100, 0, 0.2); }
    100% { border-color: rgba(255, 140, 0, 0.9); box-shadow: 0 0 30px rgba(255, 100, 0, 0.5); }
}
h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #f5e7c8, #d9a13b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
}
.tagline {
    text-align: center;
    font-size: 0.7rem;
    color: #ffaa66;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
h2 {
    color: #ffaa66;
    margin: 1.5rem 0 0.5rem;
    border-left: 3px solid #ff8800;
    padding-left: 1rem;
    font-family: 'Cormorant Garamond', serif;
}
.verse {
    font-style: italic;
    color: #ffcc99;
    background: rgba(255, 100, 0, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}
.stone {
    display: inline-block;
    background: linear-gradient(135deg, #ffaa33, #ff6600);
    color: #1a120b;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-weight: bold;
    margin-top: 1rem;
}
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
}
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffaa33, #ff6600);
    color: #1a120b;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-outline {
    background: transparent;
    border: 1px solid #ffaa44;
    color: #ffaa66;
}
.btn:hover, .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 100, 0, 0.5);
}
hr {
    border-color: rgba(255, 100, 0, 0.3);
    margin: 1.5rem 0;
}
ul, .content-list {
    margin: 0.5rem 0 1rem 1.5rem;
    line-height: 1.6;
}
li {
    margin: 0.3rem 0;
    color: #e8ede6;
}
p {
    color: #e8ede6;
    line-height: 1.6;
    margin: 0.5rem 0;
}
.sigil-placeholder {
    text-align: center;
    margin: 1rem 0;
    font-size: 4rem;
}
@media (max-width: 700px) {
    .container { padding: 1.2rem; }
    h1 { font-size: 1.8rem; }
}