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

body {
    background-color: #000000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #D4AF37;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Logo */
.logo {
    width: 420px;          /* Adjust this value if you want */
    max-width: 80%;
    height: auto;
    margin-bottom: 35px;
}

/* Brand Name */
h1 {
    font-size: 30px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Coming Soon Text */
.coming-text {
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 40px;
    opacity: 0.85;
}

/* Instagram Button */
.instagram {
    text-decoration: none;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    padding: 12px 28px;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Hover Effect */
.instagram:hover {
    background-color: #D4AF37;
    color: #000;
}

/* Instagram Icon */
.ig-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #D4AF37;
    border-radius: 4px;
    position: relative;
}

.ig-icon::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
}

.ig-icon::after {
    content: '';
    width: 3px;
    height: 3px;
    background: #D4AF37;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    right: 2px;
}

.instagram:hover .ig-icon,
.instagram:hover .ig-icon::before {
    border-color: #000;
}

.instagram:hover .ig-icon::after {
    background: #000;
}

/* Mobile Responsive */

@media (max-width: 600px) {

    body {
        display: flex;
        justify-content: center;   /* horizontal center */
        align-items: center;       /* vertical center */
        min-height: 100vh;
        padding: 20px;
    }

    .container {
        text-align: center;
        align-items: center;
    }

    .logo {
        width: 180px;
    }

    h1 {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .coming-text {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .instagram {
        padding: 10px 20px;
        font-size: 12px;
    }

}