

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #0a0a0a;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a1a 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mobile-header-image {
    width: 100vw;
    height: 40vh;
    max-height: 400px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.mobile-header-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

@media (min-width: 1200px) {
    .mobile-header-image {
        display: none;
    }

    .header {
        padding-top: 2rem;
    }
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, #8B0000, #DC143C, #FF4500, #FF8C00, #FFA500, #FFD700, #FFA500, #FF4500, #DC143C);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fire-flicker 8s ease-in-out infinite;
}

@keyframes fire-flicker {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ember {
    position: fixed;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #FFD700, #FF8C00, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    animation: float-up var(--duration) linear infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 4px #FF8C00, 0 0 8px #FF4500;
}

@keyframes float-up {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) translateX(var(--drift)) scale(0.5);
        opacity: 0;
    }
}

.tagline {
    font-size: 1rem;
    color: #999;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bio {
    color: #bbb;
    text-align: justify;
    padding: 0 2rem;
}

.links-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 1rem;
    text-decoration: none;
    text-align: center;
    color: #e0e0e0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
    transition: left 0.5s ease;
}

.link:hover::before {
    left: 100%;
}

.link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 107, 0.6);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.link-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.link-dateline {
    font-size: 0.8rem;
    font-weight: normal;
}

.footer {
    text-align: center;
    padding: 40px 0 20px;
    color: #666;
    font-size: 0.9rem;
}

.desktop-image {
    display: none;
}

@media (min-width: 1200px) {
    .desktop-image {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        width: calc((100vw - 600px) / 2);
        max-width: 400px;
        overflow: hidden;
    }

    .desktop-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .desktop-image-left {
        left: 0;
    }

    .desktop-image-left img {
        mask-image: linear-gradient(to left, transparent 0%, black 30%);
        -webkit-mask-image: linear-gradient(to left, transparent 0%, black 30%);
    }

    .desktop-image-right {
        right: 0;
    }

    .desktop-image-right img {
        mask-image: linear-gradient(to right, transparent 0%, black 30%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .link {
        padding: 15px;
    }
    
    .link-title {
        font-size: 1.1rem;
    }
}