/* Import Font */
@font-face {
    font-family: 'Bangers';
    src: url('assets/Bangers.ttf') format('truetype');
}

/* Reset and Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bangers', cursive;
    overflow: hidden;
    /* Prevent scrollbars from flying particles */
    background: url('assets/sky.png') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

/* Particle Container */
#particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* Allow clicks to pass through */
}

.particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.8;
}

/* Content Container */
.content {
    position: relative;
    z-index: 10;
    /* Above particles */
    text-align: center;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Header */
.header {
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 5rem;
    letter-spacing: 2px;
}

.contract-address {
    font-size: 2rem;
    margin-top: -10px;
}

/* Top Left Logo */
.top-left-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Center Shoe */
.center-shoe-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.center-shoe {
    width: 100%;
    max-width: 500px;
    /* Adjust based on image resolution */
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Buttons */
.buttons {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.btn {
    background-color: white;
    color: black;
    padding: 15px 40px;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: scale(0.95);
}

/* Responsiveness */
@media (max-width: 768px) {
    .logo {
        font-size: 3.5rem;
    }

    .contract-address {
        font-size: 1.5rem;
    }

    .center-shoe {
        max-width: 300px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .content {
        gap: 15px;
        padding: 0 10px;
    }

    .logo {
        font-size: 2.5rem;
    }

    .contract-address {
        font-size: 1rem;
    }

    .center-shoe {
        max-width: 220px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
        width: 80%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .top-left-logo {
        font-size: 1.2rem;
        top: 10px;
        left: 10px;
    }
}