/* DENTEVERSE - ITALIAN MAFIA AESTHETIC */

body.denteverse {
    /* Dark Italian restaurant vibes */
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%);
    background-attachment: fixed;
    font-family: 'Times New Roman', serif;
    margin: 20px;
    position: relative;
}

/* Red velvet curtain effect */
body.denteverse::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(139, 0, 0, 0.1) 50px,
            rgba(139, 0, 0, 0.1) 100px
        );
    pointer-events: none;
    z-index: -1;
}

/* Gold text for headers */
.denteverse h1 {
    color: #FFD700;
    text-shadow: 2px 2px 4px #000000, 0 0 20px #8B0000;
    font-family: 'Times New Roman', serif;
    font-size: 48px;
    font-weight: bold;
    font-style: italic;
}

/* Italian flag colors accent */
.italian-flag {
    background: linear-gradient(to right, #009246 33%, #FFFFFF 33%, #FFFFFF 66%, #CE2B37 66%);
    height: 10px;
    margin: 10px 0;
}

/* Elegant tables */
.denteverse table {
    border-style: double;
    border-color: #FFD700;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Fancy dividers */
.denteverse hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, transparent, #FFD700, transparent);
}

/* Classy links */
.denteverse a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.denteverse a:hover {
    color: #FFA500;
    text-shadow: 0 0 10px #FFD700;
}

/* Wine red accents */
.wine-red {
    color: #8B0000;
}

.wine-bg {
    background-color: #8B0000;
}

/* Gold accents */
.gold-text {
    color: #FFD700;
    text-shadow: 1px 1px 2px #000000;
}

/* Olive branch decorative elements */
.denteverse .decorative {
    color: #FFD700;
    font-size: 24px;
}

/* Mob family crest style */
.crest {
    border: 5px double #FFD700;
    background: radial-gradient(circle, #1a0000, #000000);
    padding: 20px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

/* Nicky quote boxes */
.nicky-quote {
    background: linear-gradient(135deg, #1a0000, #330000);
    border-left: 5px solid #FFD700;
    padding: 15px;
    font-style: italic;
    color: #FFD700;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
}

/* Candle flicker effect */
@keyframes candle-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.candle-glow {
    animation: candle-flicker 3s ease-in-out infinite;
    color: #FFD700;
}
