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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: 'Coolvetica', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    margin: 0;
    padding: 0;
    cursor: none;
}

/* Custom cursor styles */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    display: none;
    transform: translate(-50%, -50%);
}

.cursor-gif {
    width: 51px;
    height: 51px;
    object-fit: contain;
}

.image-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.clickable-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: none;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.clickable-area:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.clickable-area:active {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-container {
        height: 100vh;
    }
    
    .main-image {
        object-fit: contain;
    }
}
