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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.2);
    animation: fadeIn 1s ease-in;
}

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

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

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

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.5));
}

.message {
    margin-bottom: 50px;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 
        3px 3px 0px #000000,
        0 0 20px rgba(255, 0, 0, 0.5);
    margin-bottom: 15px;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 
            3px 3px 0px #000000,
            0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            3px 3px 0px #000000,
            0 0 30px rgba(255, 0, 0, 0.8);
    }
}

.subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

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

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.feature-item .icon {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.feature-item p {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.contact-info {
    margin-top: 30px;
}

.coming-soon {
    font-size: 1.2rem;
    color: #ff0000;
    font-weight: bold;
    text-shadow: 
        2px 2px 0px #000000,
        0 0 15px rgba(255, 0, 0, 0.5);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Background animated elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.gear {
    position: absolute;
    font-size: 5rem;
    opacity: 0.1;
    color: #ff0000;
    animation: rotate 20s linear infinite;
}

.gear-1 {
    top: 10%;
    left: 10%;
    animation-duration: 25s;
}

.gear-2 {
    top: 60%;
    right: 15%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.gear-3 {
    bottom: 15%;
    left: 20%;
    animation-duration: 35s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
    }

    .logo {
        max-width: 280px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .features {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        min-width: 100%;
    }

    .gear {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 220px;
    }

    .content {
        padding: 30px 15px;
    }
}
