@font-face {
    font-family: 'Sugo Pro';
    src: url('./Fonts/sugo-pro-display/Sugo-Pro-Classic-Regular-trial.ttf') format('truetype');
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="1"><path d="M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"/></svg>'), auto;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #000000 50%, #001a33 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.logo {
    margin-bottom: 10vh;
    text-align: center;
    width: 18vh;
}

.black-friday-text {
    font-family: 'Sugo Pro';
    font-size: clamp(2.5rem, 17vw, 7.5rem);
    line-height: 0.8;
    text-align: center;
    margin-bottom: 3vmin;
    letter-spacing: -0.02em;
    padding: 0 5vw;
}

.date-text {
    font-size: clamp(1.125rem, 3.5vw, 1.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 7vmin;
    padding: 0 5vw;
}

.loading-container {
    width: clamp(18rem, 65vw, 90vw);
    margin-bottom: clamp(0.5rem, 2vmin, 2rem);
    padding: 0 clamp(1rem, 3vw, 3rem);
}

.progress-bar {
    width: 100%;
    height: clamp(2.5rem, 6.5vmin, 5rem);
    background: transparent;
    border: clamp(0.25rem, 0.4vmin, 0.3rem) solid white;
    border-radius: clamp(1rem, 2.5vmin, 2rem);
    padding: clamp(0.25rem, 1vmin, 0.75rem);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4da3ff 0%, #7b5cff 100%);
    border-radius: clamp(0.5rem, 1.1vmin, 1.25rem);
    width: 0%;
    transition: width 1s ease-out;
}

.loading-text {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    margin-top: 1.5vmin;
    margin-bottom: 15vmin;
    padding: 0 5vw;
}

.cursor-icon {
    position: fixed;
    top: 45%;
    right: 15%;
    width: clamp(4rem, 20vmin, 12.5rem);
    height: clamp(4rem, 20vmin, 12.5rem);
    pointer-events: none;
    z-index: 1000;
}

@media (max-width: 768px) {
    .cursor-icon {
        display: none;
    }
}

.cursor-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0.125rem 0.125rem 0.25rem rgba(0,0,0,0.5));
}