/* index.css */
:root {
    --bg-color: #050105;
    --blood-red: #8a0303;
    --bright-blood: #d40000;
    --neon-pink: #d925ac;
    --neon-purple: #7a1599;
    --text-main: #e0d8e0;
    --text-muted: #a69aa6;
    --font-heading: 'Cinzel Decorative', cursive;
    --font-clown: 'Jolly Lodger', cursive;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(138, 3, 3, 0.2), transparent 50%),
        repeating-conic-gradient(from 0deg, #0d0107 0deg 10deg, #050105 10deg 20deg);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: var(--blood-red); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--bright-blood); }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.hero {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 4rem;
}

.hero-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--blood-red);
    box-shadow: 0 0 40px rgba(212, 0, 0, 0.6), 0 0 60px rgba(217, 37, 172, 0.3);
    animation: float 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px; right: -15px; bottom: -15px;
    background: repeating-conic-gradient(from 0deg, var(--neon-purple) 0deg 15deg, transparent 15deg 30deg);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
    animation: spin 15s linear infinite;
    filter: blur(2px);
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.gothic-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 10px var(--bright-blood), 0 0 20px var(--blood-red), 2px 2px 5px #000;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.subtitle {
    font-family: var(--font-clown);
    font-size: 3rem;
    color: var(--neon-pink);
    margin: -15px 0 20px 0;
    text-shadow: 0 0 15px rgba(217, 37, 172, 0.8), 2px 2px 0px #000;
    letter-spacing: 2px;
}

.box-content {
    background: rgba(15, 2, 15, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(138, 3, 3, 0.2);
    position: relative;
    border: 1px solid rgba(212, 0, 0, 0.3);
}

.box-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 8px;
    background: repeating-linear-gradient(90deg, #11020a, #11020a 20px, var(--neon-pink) 20px, var(--neon-pink) 40px);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

h2 {
    font-family: var(--font-heading);
    color: var(--bright-blood);
    font-size: 2.8rem;
    margin-top: 0;
    text-align: center;
    border-bottom: 2px dashed rgba(217, 37, 172, 0.4);
    padding-bottom: 1rem;
    text-shadow: 2px 2px 4px #000;
}

.about-section {
    margin-bottom: 5rem;
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section p {
    margin-bottom: 1.5rem;
}

.highlight-link {
    color: var(--neon-pink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.highlight-link:hover {
    color: var(--bright-blood);
    text-shadow: 0 0 10px rgba(212, 0, 0, 0.8);
}

.links-section {
    margin-bottom: 5rem;
    text-align: center;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.gothic-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(45deg, #1a0101, #360202);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    border: 2px solid var(--blood-red);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px rgba(138, 3, 3, 0.4);
    min-width: 280px;
}

.gothic-btn i {
    font-size: 1.5rem;
    color: var(--neon-pink);
    transition: all 0.3s ease;
}

.gothic-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 37, 172, 0.4), transparent);
    transition: all 0.6s ease;
}

.gothic-btn:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.6), 0 0 30px rgba(217, 37, 172, 0.6), inset 0 0 15px var(--bright-blood);
    border-color: var(--neon-pink);
}

.gothic-btn:hover i {
    color: #fff;
    transform: scale(1.2) rotate(-10deg);
}

.gothic-btn:hover::before {
    left: 100%;
}

.gallery-section {
    margin-bottom: 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid #2a0505;
    transition: all 0.4s ease;
    aspect-ratio: 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(30%) contrast(110%);
}

.gallery-img-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(138, 3, 3, 0.4));
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.gallery-img-container:hover {
    transform: scale(1.05) translateY(-10px) rotate(2deg);
    border-color: var(--neon-pink);
    box-shadow: 0 15px 30px rgba(217, 37, 172, 0.4);
    z-index: 10;
}

.gallery-img-container:hover .gallery-img {
    filter: grayscale(0%) contrast(120%);
    transform: scale(1.1);
}

.gallery-img-container:hover::after {
    opacity: 1;
}

footer {
    text-align: center;
    padding: 3rem 0;
    font-family: var(--font-clown);
    font-size: 2rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(217, 37, 172, 0.3);
    position: relative;
    margin-top: 2rem;
}

.ember {
    position: fixed;
    bottom: -20px;
    background: radial-gradient(circle, var(--neon-pink) 0%, var(--blood-red) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatUp linear forwards;
    filter: blur(1px);
    box-shadow: 0 0 10px var(--neon-pink);
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-110vh) scale(0); opacity: 0; }
}

@media (max-width: 768px) {
    .gothic-title { font-size: 3rem; }
    .subtitle { font-size: 2.2rem; }
    .hero-image { width: 220px; height: 220px; }
    .box-content { padding: 2rem 1.5rem; }
    h2 { font-size: 2.2rem; }
}
