* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 512 512'%3E%3Cpath fill='%23FEA000' d='M479.2 194.7c5.6 6.4 4 12-3.9 14.5-56.2 17.6-112.3 35.1-168.5 52.7-6.3 2-12.7 4.1-19 6-10.3 3-16.7 9.6-19.9 19.8-19.2 61.8-38.5 123.5-57.8 185.2-.4 1.3-.4 3-1.2 3.7-2.2 2.2-4.6 5-7.3 5.7-3.7 1-6.6-1.7-8-5.4-3.5-9.3-7-18.7-10.4-28-49.8-134-99.6-268.1-149.3-402.1-.3-.9-1-1.9-1-2.8-.2-3.4-1-8.1.9-10 2-1.9 7-2.1 10-1.1 17.9 6.2 35.6 13 53.4 19.5 125.1 46.5 250.3 93 375.4 139.5 2 .8 4 1.6 6.6 2.7z'/%3E%3C/svg%3E") 16 16, auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

#grid-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.grid-square {
    width: 15px;
    height: 15px;
    background: rgb(255, 85, 5);
    border: 1px solid rgb(255, 85, 5);
    position: absolute;
    transition: opacity 0.2s ease-out;
    animation: pulse 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

.glitch-text {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    pointer-events: none;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 1;
    margin-bottom: 3rem;
    pointer-events: none;
}

.contact-container {
    perspective: 1000px;
    margin-top: 2rem;
    pointer-events: all;
}

.card {
    width: 200px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-back {
    transform: rotateY(180deg);
}

.contact-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M479.2 194.7c5.6 6.4 4 12-3.9 14.5-56.2 17.6-112.3 35.1-168.5 52.7-6.3 2-12.7 4.1-19 6-10.3 3-16.7 9.6-19.9 19.8-19.2 61.8-38.5 123.5-57.8 185.2-.4 1.3-.4 3-1.2 3.7-2.2 2.2-4.6 5-7.3 5.7-3.7 1-6.6-1.7-8-5.4-3.5-9.3-7-18.7-10.4-28-49.8-134-99.6-268.1-149.3-402.1-.3-.9-1-1.9-1-2.8-.2-3.4-1-8.1.9-10 2-1.9 7-2.1 10-1.1 17.9 6.2 35.6 13 53.4 19.5 125.1 46.5 250.3 93 375.4 139.5 2 .8 4 1.6 6.6 2.7z'/%3E%3C/svg%3E") 16 16, pointer;
    width: 100%;
    height: 100%;
}

.email-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M479.2 194.7c5.6 6.4 4 12-3.9 14.5-56.2 17.6-112.3 35.1-168.5 52.7-6.3 2-12.7 4.1-19 6-10.3 3-16.7 9.6-19.9 19.8-19.2 61.8-38.5 123.5-57.8 185.2-.4 1.3-.4 3-1.2 3.7-2.2 2.2-4.6 5-7.3 5.7-3.7 1-6.6-1.7-8-5.4-3.5-9.3-7-18.7-10.4-28-49.8-134-99.6-268.1-149.3-402.1-.3-.9-1-1.9-1-2.8-.2-3.4-1-8.1.9-10 2-1.9 7-2.1 10-1.1 17.9 6.2 35.6 13 53.4 19.5 125.1 46.5 250.3 93 375.4 139.5 2 .8 4 1.6 6.6 2.7z'/%3E%3C/svg%3E") 16 16, pointer;
}

.card:hover {
    transform: translateY(-2px);
}

.card-front, .card-back {
    transition: box-shadow 0.3s ease;
}

.card:hover .card-front,
.card:hover .card-back {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    z-index: 2;
    pointer-events: none;
}

.footer-container {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    letter-spacing: 0.02em;
    opacity: 1;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-container:hover {
    opacity: 1;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
} 