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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    overflow: hidden;
    height: 100vh;
    background: #000000;
}

.splash-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 0;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo {
    max-width: 800px;
    width: 100%;
    height: auto;
}

.text-content {
    color: #ffffff;
    margin-top: -100px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-accent {
    color: #FF8C00;
    font-weight: 400;
    font-size: 0.6em;
    display: block;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF8C00, transparent);
    margin: 20px auto;
    animation: expand 2s ease-in-out infinite;
}

@keyframes expand {
    0%, 100% {
        width: 100px;
    }
    50% {
        width: 150px;
    }
}

.coming-soon {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
}

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

.cube {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    opacity: 0;
}

.cube-1 {
    top: 20%;
    left: 10%;
    animation: float1 15s infinite ease-in-out;
    border-color: rgba(255, 140, 0, 0.3);
}

.cube-2 {
    top: 60%;
    right: 15%;
    animation: float2 18s infinite ease-in-out;
    animation-delay: -5s;
    border-color: rgba(255, 255, 255, 0.2);
}

.cube-3 {
    bottom: 30%;
    left: 20%;
    animation: float3 20s infinite ease-in-out;
    animation-delay: -10s;
    border-color: rgba(255, 140, 0, 0.25);
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(100px, -150px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-120px, 100px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(150px, -80px) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 550px;
    }
    
    .content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 400px;
    }
}

