html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    cursor: none;
}

body {
    margin: 0;
    padding: 0;
}

#gradient-canvas {
    --gradient-color-1: #6ec3f4;
    --gradient-color-2: #3a3aff;
    --gradient-color-3: #ff61ab;
    --gradient-color-4: #E63946;
}

button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-icons {
    position: absolute;
    top: calc(50% + 40px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.1s;
    cursor: none;
}

.social-icons a:hover {
    animation: shake 0.2s ease-in-out infinite;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 9999;
}

.custom-cursor.hover {
    transform: scale(1.5);
    background: rgba(255, 255, 255, 0.6);
}

.footer-text {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 25vw;
    font-style: italic;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    pointer-events: none;
    user-select: none;
    line-height: 0.7;
    margin-bottom: -0.2em;
    letter-spacing: -0.03em;
    transform: scaleX(1.5);
    transform-origin: center bottom;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    animation: textAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes textAppear {
    0% {
        opacity: 0;
        transform: scaleX(1.5) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scaleX(1.5) translateY(0);
    }
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(0deg); }
} 