/* ===== MODERN REFINED CULT CSS ===== */

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Roboto', sans-serif;
}

/* Body */
body {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.5s ease;
}

/* Links */
a {
    color: #a076ff;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}
a:hover {
    color: #ff7f50;
    text-shadow: 0 0 8px rgba(255,127,80,0.6);
}

/* Headings */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
}

/* Glassy Cards / Sections */
.glass-card {
    background: rgba(20, 20, 20, 0.6);
    border-radius: 16px;
    padding: 30px 25px;
    margin: 25px 0;
    backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}

/* Buttons */
button {
    background: linear-gradient(135deg, #a076ff, #ff7f50);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
button:hover {
    background: linear-gradient(135deg, #ff7f50, #a076ff);
    box-shadow: 0 0 15px rgba(255,127,80,0.5);
}

/* Form Inputs */
input, textarea {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: none;
    border-radius: 10px;
    background: rgba(40, 40, 40, 0.7);
    color: #fff;
    font-size: 16px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus {
    outline: none;
    background: rgba(50, 50, 50, 0.85);
    box-shadow: 0 0 8px rgba(160,118,255,0.5);
}

/* Footer */
footer {
    text-align: center;
    padding: 25px 0;
    color: #aaa;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(160,118,255,0.5);
    display: inline-block;
    padding-bottom: 5px;
}

/* Subtle hover text effect for eerie vibes */
.glass-card a:hover {
    text-shadow: 0 0 5px rgba(160,118,255,0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    button {
        width: 100%;
    }
}
