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

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.top-banner {
    width: 100%;
    background: #000;
}

.top-banner img {
    width: 100%;
    display: block;
    height: auto;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000, #1a1a1a, #450000);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 20px;
}

.overlay {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 0, 0.15);
    border-radius: 50%;
    filter: blur(120px);
}

.content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 20px;
}

.logo h1 {
    font-size: 52px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.logo span {
    color: #ff2e2e;
}

.logo p {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #ccc;
}

h2 {
    margin-top: 40px;
    font-size: 56px;
    line-height: 1.2;
}

.subtitle {
    margin-top: 20px;
    font-size: 20px;
    color: #ddd;
    line-height: 1.7;
}

.coming-soon {
    margin-top: 35px;
    display: inline-block;
    background: #ff2e2e;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
}

.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 28px;
    border-radius: 12px;
    transition: 0.3s ease;
    background: rgba(255,255,255,0.05);
    min-width: 180px;
}

.social-links a:hover {
    background: #ff2e2e;
    transform: translateY(-3px);
}

@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .content {
        padding: 10px;
    }

    .logo h1 {
        font-size: 34px;
    }

    .logo p {
        font-size: 12px;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 36px;
        line-height: 1.3;
        margin-top: 30px;
    }

    .subtitle {
        font-size: 16px;
        padding: 0 10px;
    }

    .coming-soon {
        width: 100%;
        max-width: 280px;
        font-size: 16px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .social-links a {
        width: 100%;
        max-width: 320px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {

    .logo h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 15px;
    }

    .coming-soon {
        font-size: 15px;
        padding: 12px 20px;
    }

    .social-links a {
        font-size: 15px;
        padding: 14px 18px;
    }
}

