* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-dark: #2d1b3d;
    --purple-medium: #5a3d6b;
    --purple-light: #8b6fa8;
    --purple-glow: #b894d4;
    --malachite-green: #0d9d6b;
    --malachite-light: #1dd1a1;
    --red-accent: #d63031;
    --red-dark: #a0292a;
    --black: #0a0a0a;
    --smoke: rgba(139, 111, 168, 0.3);
    --gold-yellow: #ffd700;
    --gold-orange: #ff8c00;
    --disco-green: #adff2f;
}

body {
    font-family: 'Courier Prime', monospace;
    background: 
        linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 50%, var(--purple-dark) 100%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.9) 0%, var(--black) 100%);
    background-attachment: fixed;
    color: var(--purple-glow);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

/* Scanlines effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 0, 0, 0.03) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1000;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Noise texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 100;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.glitch {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    color: var(--malachite-light);
    text-shadow: 
        0 0 10px var(--malachite-green),
        0 0 20px var(--malachite-green),
        0 0 30px var(--malachite-green),
        3px 3px 0 var(--purple-dark),
        -3px -3px 0 var(--red-accent);
    margin-bottom: 15px;
    position: relative;
    animation: glitch-text 3s infinite;
    letter-spacing: 3px;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--red-accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 var(--malachite-green);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 1s infinite linear alternate-reverse;
}

@keyframes glitch-text {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    5% { clip: rect(54px, 9999px, 66px, 0); }
    10% { clip: rect(12px, 9999px, 18px, 0); }
    15% { clip: rect(78px, 9999px, 4px, 0); }
    20% { clip: rect(23px, 9999px, 88px, 0); }
    25% { clip: rect(45px, 9999px, 12px, 0); }
    30% { clip: rect(67px, 9999px, 34px, 0); }
    35% { clip: rect(89px, 9999px, 56px, 0); }
    40% { clip: rect(11px, 9999px, 78px, 0); }
    45% { clip: rect(33px, 9999px, 1px, 0); }
    50% { clip: rect(55px, 9999px, 23px, 0); }
    55% { clip: rect(77px, 9999px, 45px, 0); }
    60% { clip: rect(99px, 9999px, 67px, 0); }
    65% { clip: rect(21px, 9999px, 89px, 0); }
    70% { clip: rect(43px, 9999px, 11px, 0); }
    75% { clip: rect(65px, 9999px, 33px, 0); }
    80% { clip: rect(87px, 9999px, 55px, 0); }
    85% { clip: rect(9px, 9999px, 77px, 0); }
    90% { clip: rect(31px, 9999px, 99px, 0); }
    95% { clip: rect(53px, 9999px, 21px, 0); }
    100% { clip: rect(75px, 9999px, 43px, 0); }
}

.subtitle {
    font-family: 'VT323', monospace;
    font-size: 2rem;
    color: var(--purple-glow);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--purple-light);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.tagline {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    color: var(--red-accent);
    text-shadow: 0 0 5px var(--red-dark);
    letter-spacing: 2px;
}

/* Candle Holder */
.candle-holder {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin: 40px 0;
    height: 120px;
    position: relative;
}

.candle {
    width: 20px;
    height: 80px;
    background: linear-gradient(to bottom, var(--red-accent) 0%, var(--red-dark) 100%);
    border-radius: 10px 10px 0 0;
    position: relative;
    box-shadow: 
        0 0 10px var(--red-accent),
        inset -2px 0 5px rgba(0, 0, 0, 0.3);
    animation: candle-flicker 0.5s infinite alternate;
}

.candle-1 { height: 70px; animation-delay: 0s; }
.candle-2 { height: 90px; animation-delay: 0.2s; }
.candle-3 { height: 75px; animation-delay: 0.4s; }

@keyframes candle-flicker {
    0% { transform: translateX(0) scaleY(1); }
    100% { transform: translateX(1px) scaleY(1.02); }
}

.flame {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 20px;
    background: radial-gradient(circle, #ffd700 0%, #ff6b35 50%, #d63031 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 
        0 0 10px #ffd700,
        0 0 20px #ff6b35,
        0 0 30px var(--red-accent);
    animation: flame-flicker 0.3s infinite alternate;
}

.flame-1 { animation-delay: 0s; }
.flame-2 { animation-delay: 0.15s; }
.flame-3 { animation-delay: 0.3s; }

@keyframes flame-flicker {
    0% { 
        transform: translateX(-50%) scale(1) rotate(-2deg);
        opacity: 0.9;
    }
    100% { 
        transform: translateX(-50%) scale(1.1) rotate(2deg);
        opacity: 1;
    }
}

/* Rose Decoration - Enhanced with more black roses */
.rose-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.rose {
    position: absolute;
    font-size: 2.5rem;
    filter: grayscale(100%) brightness(0.2) contrast(1.5);
    animation: rose-float 6s ease-in-out infinite;
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.6),
        0 0 45px rgba(0, 0, 0, 0.4);
    opacity: 0.7;
}

.rose-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.rose-2 {
    top: 15%;
    right: 8%;
    animation-delay: 2s;
    transform: rotate(15deg);
}

.rose-3 {
    top: 40%;
    left: 3%;
    animation-delay: 1s;
    transform: rotate(-10deg);
    font-size: 2rem;
}

.rose-4 {
    top: 50%;
    right: 5%;
    animation-delay: 3s;
    transform: rotate(10deg);
    font-size: 2rem;
}

.rose-5 {
    top: 70%;
    left: 10%;
    animation-delay: 1.5s;
    transform: rotate(-20deg);
    font-size: 2.2rem;
}

.rose-6 {
    top: 75%;
    right: 12%;
    animation-delay: 2.5s;
    transform: rotate(20deg);
    font-size: 2.2rem;
}

.rose-7 {
    top: 30%;
    left: 50%;
    animation-delay: 0.5s;
    transform: rotate(-5deg);
    font-size: 1.8rem;
}

.rose-8 {
    top: 60%;
    left: 50%;
    animation-delay: 3.5s;
    transform: rotate(5deg);
    font-size: 1.8rem;
}

@keyframes rose-float {
    0%, 100% { 
        transform: translateY(0) rotate(var(--rose-rotation, -15deg));
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) rotate(calc(var(--rose-rotation, -15deg) + 5deg));
        opacity: 0.8;
    }
}

.rose-1 { --rose-rotation: -15deg; }
.rose-2 { --rose-rotation: 15deg; }
.rose-3 { --rose-rotation: -10deg; }
.rose-4 { --rose-rotation: 10deg; }
.rose-5 { --rose-rotation: -20deg; }
.rose-6 { --rose-rotation: 20deg; }
.rose-7 { --rose-rotation: -5deg; }
.rose-8 { --rose-rotation: 5deg; }

/* Rose Petals Falling */
.rose-petals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}

.rose-petals::before,
.rose-petals::after {
    content: '🌹';
    position: absolute;
    font-size: 1.5rem;
    filter: grayscale(100%) brightness(0.2);
    opacity: 0.4;
    animation: petal-fall 15s linear infinite;
}

.rose-petals::before {
    left: 10%;
    animation-delay: 0s;
}

.rose-petals::after {
    left: 80%;
    animation-delay: 7s;
}

@keyframes petal-fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Blink Text */
.blink-text {
    text-align: center;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    color: var(--red-accent);
    margin: 30px 0;
    text-shadow: 
        0 0 10px var(--red-accent),
        0 0 20px var(--red-dark);
    animation: blink 1.5s step-end infinite;
    letter-spacing: 2px;
    position: relative;
    z-index: 100;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.blink {
    animation: blink 1s step-end infinite;
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
    background: rgba(45, 27, 61, 0.5);
    border-top: 2px solid var(--purple-light);
    border-bottom: 2px solid var(--purple-light);
    padding: 10px 0;
    position: relative;
    z-index: 100;
}

.marquee {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    color: var(--malachite-light);
    white-space: nowrap;
    display: inline-block;
    animation: marquee-scroll 20s linear infinite;
    text-shadow: 0 0 10px var(--malachite-green);
    letter-spacing: 3px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 50px 0;
    position: relative;
    z-index: 100;
}

.link-card {
    position: relative;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(90, 61, 107, 0.3) 0%, rgba(45, 27, 61, 0.5) 100%);
    border: 2px solid var(--purple-light);
    border-radius: 8px;
    color: var(--purple-glow);
    text-decoration: none;
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 10px rgba(139, 111, 168, 0.3),
        inset 0 0 20px rgba(139, 111, 168, 0.1);
    text-shadow: 0 0 5px var(--purple-glow);
    letter-spacing: 1px;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 148, 212, 0.3), transparent);
    transition: left 0.5s;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    border-color: var(--malachite-light);
    background: linear-gradient(135deg, rgba(29, 209, 161, 0.2) 0%, rgba(13, 157, 107, 0.3) 100%);
    box-shadow: 
        0 0 20px var(--malachite-green),
        0 0 40px var(--malachite-light),
        inset 0 0 20px rgba(29, 209, 161, 0.2);
    transform: translateX(5px) scale(1.02);
    color: var(--malachite-light);
    text-shadow: 0 0 10px var(--malachite-light);
}

.link-button:active {
    transform: translateX(3px) scale(0.98);
}

.link-icon {
    font-size: 2rem;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px currentColor);
}

.link-text {
    flex: 1;
    text-align: left;
}

.link-arrow {
    font-size: 2rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.link-button:hover .link-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid var(--purple-medium);
    position: relative;
    z-index: 100;
}

.footer-text {
    font-family: 'VT323', monospace;
    font-size: 1.3rem;
    color: var(--purple-glow);
    margin-bottom: 10px;
    text-shadow: 0 0 5px var(--purple-light);
}

.heart {
    color: var(--red-accent);
    animation: heartbeat 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px var(--red-accent);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

.footer-year {
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    color: var(--purple-medium);
    opacity: 0.7;
    margin: 10px 0;
}

.footer-counter {
    font-family: 'Courier Prime', monospace;
    font-size: 0.8rem;
    color: var(--malachite-light);
    text-shadow: 0 0 5px var(--malachite-green);
    margin-top: 10px;
}

#visitor-count {
    color: var(--red-accent);
    text-shadow: 0 0 5px var(--red-accent);
    font-weight: bold;
}

/* Retro Divider */
.retro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    position: relative;
    z-index: 100;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
    box-shadow: 0 0 5px var(--purple-glow);
}

.divider-star {
    font-size: 1.5rem;
    color: var(--malachite-light);
    text-shadow: 0 0 10px var(--malachite-green);
    animation: star-spin 3s linear infinite;
}

@keyframes star-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 6;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float-around 15s ease-in-out infinite;
    filter: drop-shadow(0 0 5px currentColor);
}

.float-icon:nth-child(1) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    color: var(--red-accent);
}

.float-icon:nth-child(2) {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
    color: var(--malachite-light);
}

.float-icon:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
    color: var(--gold-yellow);
}

.float-icon:nth-child(4) {
    top: 40%;
    right: 20%;
    animation-delay: 9s;
    color: var(--purple-glow);
}

@keyframes float-around {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% { 
        transform: translate(30px, -30px) rotate(90deg) scale(1.2);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-20px, 20px) rotate(180deg) scale(0.8);
        opacity: 0.3;
    }
    75% { 
        transform: translate(20px, 30px) rotate(270deg) scale(1.1);
        opacity: 0.5;
    }
}

/* Particle Container */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

/* Cursor Trail */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--malachite-light), transparent);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 0 20px var(--malachite-green);
}

/* Glowing Orb (inspired by Twitch header) */
.glowing-orb {
    position: fixed;
    left: 10%;
    top: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 140, 0, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: orb-pulse 4s ease-in-out infinite;
    box-shadow: 
        0 0 100px rgba(255, 215, 0, 0.5),
        0 0 200px rgba(255, 140, 0, 0.3),
        inset 0 0 100px rgba(255, 215, 0, 0.2);
}

@keyframes orb-pulse {
    0%, 100% { 
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.2) translate(20px, -20px);
        opacity: 0.8;
    }
}

/* Disco Ball Light Reflections */
.disco-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(173, 255, 47, 0.3) 0%, transparent 3%),
        radial-gradient(circle at 45% 60%, rgba(255, 215, 0, 0.25) 0%, transparent 2%),
        radial-gradient(circle at 75% 25%, rgba(173, 255, 47, 0.35) 0%, transparent 2.5%),
        radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.2) 0%, transparent 2%),
        radial-gradient(circle at 85% 70%, rgba(173, 255, 47, 0.3) 0%, transparent 3%),
        radial-gradient(circle at 60% 15%, rgba(255, 215, 0, 0.25) 0%, transparent 2%),
        radial-gradient(circle at 35% 85%, rgba(173, 255, 47, 0.3) 0%, transparent 2.5%),
        radial-gradient(circle at 90% 45%, rgba(255, 215, 0, 0.2) 0%, transparent 2%);
    animation: disco-shift 8s ease-in-out infinite;
}

@keyframes disco-shift {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translate(10px, -10px) rotate(5deg);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-10px, 10px) rotate(-5deg);
        opacity: 0.7;
    }
    75% { 
        transform: translate(5px, 5px) rotate(3deg);
        opacity: 0.9;
    }
}

/* Geometric Pattern - Removed checkerboard effect */
.geometric-pattern {
    display: none;
}

/* Smoke Effect - Thick Black Smoke */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, transparent 70%),
        radial-gradient(circle at 40% 20%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 70%),
        radial-gradient(circle at 60% 70%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 65%),
        radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, transparent 70%),
        radial-gradient(circle at 70% 40%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: smoke-drift 25s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes smoke-drift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
    25% { transform: translate(30px, -30px) scale(1.2); opacity: 1; }
    50% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.95; }
    75% { transform: translate(20px, 20px) scale(1.1); opacity: 1; }
}

/* Smoke Overlay - Thick Black */
.smoke-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 80%),
        radial-gradient(ellipse at top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 75%),
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: smoke-overlay-drift 30s ease-in-out infinite;
    filter: blur(50px);
    will-change: transform;
    transform: translateZ(0); /* Force GPU acceleration */
}

@keyframes smoke-overlay-drift {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: translate(-40px, 40px) scale(1.15);
        opacity: 0.95;
    }
    66% { 
        transform: translate(40px, -40px) scale(0.95);
        opacity: 0.85;
    }
}

/* Smoke Particles Container */
.smoke-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    will-change: contents;
    transform: translateZ(0); /* Force GPU acceleration */
}

/* Responsive */
@media (max-width: 768px) {
    .glitch {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .link-button {
        font-size: 1.5rem;
        padding: 15px 20px;
    }
    
    .candle-holder {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .glitch {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .link-button {
        font-size: 1.3rem;
    }
    
    .link-icon {
        font-size: 1.5rem;
    }
}

