* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --secondary: #a24b98;
    --hashHighlight: #d8db2a;
    --highlight: #d8db2a;
    --text: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    background-size: 120% 120%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text);
    transition: background-position 0.1s ease;
}
polygon {
    fill: var(--text)
}
.container {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 2rem;
    max-width: 800px;
}

.logoContainer {
    margin-bottom: 2rem;
}

.logo {
    width: 120px;
    height: 120px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    cursor: default;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.brandName {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.brandHighlight {
    color: var(--highlight);
    font-weight: 700;
}
polygon.brandHighlight {
    fill: var(--hashHighlight);
}

.message {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featureBox {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.featureBox::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.featureBox:hover::before {
    transform: translateX(100%);
}

.featureBox:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2.5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.featureText {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.dots {
    display: inline-block;
    min-width: 1.5em;
    text-align: left;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    bottom: -20px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: rise linear infinite;
    --mouse-offset-x: 0px;
    --mouse-offset-y: 0px;
}

@keyframes rise {
    0% {
        transform: translateY(0) translateX(var(--mouse-offset-x)) scale(0);
    }
    10% {
        transform: translateY(-12vh) translateX(var(--mouse-offset-x)) scale(1);
    }
    100% {
        transform: translateY(-120vh) translateX(var(--mouse-offset-x)) scale(1);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 80px;
    }
    .brandName {
        font-size: 2rem;
    }
    .message {
        font-size: 1rem;
    }
}