 /* Arapaima Artificer Landing Page Theme */
 body {
        background: #24000d;
        background: radial-gradient(circle, rgba(36, 0, 13, 1) 0%, rgba(89, 19, 47, 1) 74%, rgba(66, 7, 40, 1) 27%);
        min-height: 100vh;
        overflow-x: hidden;
        position: relative;
        padding: 0;
        margin: 0;
    }
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        position: relative;
        z-index: 10;
    }

    .main-title {
        font-family: monospace;
        font-size: clamp(1rem, 3vw, 3rem);
        font-weight: 900;
        text-align: center;
        margin-top: 1rem;
        background: linear-gradient(45deg, #6a3f30, #af9270, #cbb499, #6a3f30);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px rgb(54 4 34 / 30%);
        letter-spacing: 0.1em;
        position: relative;
    }

    .main-title::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: linear-gradient(45deg, rgba(75, 0, 130, 0.2), rgba(25, 25, 112, 0.2), rgba(0, 100, 0, 0.2));
        border-radius: 15px;
        z-index: -1;
        filter: blur(20px);
    }

    img {
        max-width: 75%;
    }
