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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    margin-bottom: 30px;
}

.logo {
    width: 250px;
    height: auto;
}

main h1 {
    font-size: 4rem;
    color: #f3bc19;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

main h1, main p {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

main p {
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #bbb;
    letter-spacing: 1px;
}

.coming-soon {
    position: relative;
    display: inline-block;
    padding: 20px 0;
}

.coming-soon .text {
    font-size: 3.8rem;
    color: #f3bc19;
    letter-spacing: 6px;
    position: relative;
    font-weight: 700;
}

.coming-soon .text::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #f3bc19, transparent);
    bottom: -10px;
    left: 0;
    animation: slide 2.5s infinite;
}

.view-products-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 50px;
    background: linear-gradient(135deg, #f3bc19 0%, #eaa600 100%);
    color: #000;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0px 4px 15px rgba(243, 188, 25, 0.4);
    transition: all 0.4s ease;
}

.view-products-button:hover {
    background: linear-gradient(135deg, #ffc400 0%, #e0a600 100%);
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(243, 188, 25, 0.6);
}




@media (max-width: 600px) {
    main h1 {
        font-size: 2.8rem;
    }

    main p {
        font-size: 1.3rem;
    }

    .coming-soon .text {
        font-size: 2.5rem;
    }

    .view-products-button {
        font-size: 1.1rem;
        padding: 12px 40px;
    }
}
