@font-face {
    font-family: "Asset";
    src: url("font/Asset.ttf") format("truetype");
}

@font-face {
    font-family: "BubbleButtRegular";
    src: url("font/BubbleButtRegular.otf") format("opentype");
}

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

body {
    font-family: "Bangers", cursive;
    overflow-x: hidden;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.floating-assets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-asset {
    position: absolute;
    width: 80px;
    height: auto;
    left: -200px;
    top: -200px;
}

.floating-asset.flipped {
    transform: scaleX(-1);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: "BubbleButtRegular", cursive;
    font-size: 6rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    color: #f4d33f;
    margin-bottom: 1rem;
}

.hero-content .tagline {
    font-family: "Asset", cursive;
    font-size: 2.5rem;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.site-logo {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100px;
    width: auto;
    z-index: 20;
}

.social-icons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.social-icons a {
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.social-icons svg,
.social-icons img {
    width: 100%;
    height: 100%;
}
