* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Logo Section */
.logo-section {
    margin-bottom: 20px;
    margin-top: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(255, 107, 53, 0.3));
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    background-color: #000000;
    padding: 8px 20px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Main Message */
.main-message {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.upgrading-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.coming-soon-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* Button Section */
.button-section {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 200px;
}
.action-btn {
    text-decoration: none;
}

.action-btn:hover {
    background-color: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Bottom Message */
.bottom-message {
    margin: 10px 0;
}

.bottom-message p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

.highlight {
    color: #ff6b35;
    font-weight: bold;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: -20px;
}

.social-icon {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        gap: 30px;
        padding: 15px;
    }
    
    .upgrading-text,
    .coming-soon-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .button-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .action-btn {
        min-width: 250px;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .logo-image {
        width: 90px;
        height: 90px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .bottom-message p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .upgrading-text,
    .coming-soon-text {
        font-size: 1.4rem;
    }
    
    .action-btn {
        min-width: 200px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .logo-text {
        font-size: 18px;
    }
}
