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

body {
    font-family: 'Montserrat', sans-serif;
    background: #2E2D2C;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #FFFFFF;
    padding: 40px 20px;
}

.maintenance-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

.text-content {
    flex: 1;
    max-width: 500px;
    margin: 0;
    padding-left: 20px;
    transform: none; 
}

.social-media-content {
    flex: 1;
    max-width: 500px;
    margin: 0;
    padding-left: 20px;
    transform: none; 
}

.maintenance-logo {
    margin-bottom: 100px;
}

.maintenance-logo img {
    max-height: 60px;
    width: auto;
    max-width: 250px;
}

.logo-fallback {
    font-size: 20px;
    font-weight: bold;
    color: #FFD560;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom: 50px;
    margin-left: -5px;
}

.break-text {
    color: #FFD560;
    margin-top: 10px;
    display: block;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.footer-message {
    margin-top: 10px; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #E8E8E8;
    line-height: 24px;
}

.slot-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15%; 
}

.slot-machine-container {
    position: relative;
    max-width: 100%;
    width: 100%;
}

.slot-machine {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-bg {
    width: 100%;
    height: auto;
    z-index: 1;
}

.slot-front {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Social logos */
.social-media {
    margin-top: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.1);
    filter: brightness(1.2);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes float {
    0% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-5px); }
    100% { transform: translate(-50%, -50%) translateY(0px); }
}

.pulse {
    animation: pulse 3s infinite;
}

.float {
    animation: float 4s ease-in-out infinite;
}

.slot-machine:hover .slot-front {
    transform: translate(-50%, -50%) scale(1.05);
    transition: transform 0.3s ease;
}

@media (min-width: 969px) {
    .maintenance-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        gap: 0;
        align-items: start;
    }
    
    .text-content {
        grid-column: 1;
        grid-row: 1;
        max-width: 100%;
    }
    
    .social-media-content {
        grid-column: 1;
        grid-row: 2;
        max-width: 100%;
        margin-top: 0;
        align-self: start;
    }
    
    .slot-content {
        grid-column: 2;
        grid-row: 1 / span 2;
        margin-top: 0;
        align-self: center;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        height: 100%;
        padding-top: 80px;
    }
    
    .slot-machine-container {
        margin-top: auto;
    }
}

@media (max-width: 968px) {
    body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .maintenance-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        flex: 1;
    }

    .slot-content {
        order: 2;
        margin-top: 0;
    }
    .text-content {
        order: 1;
        margin-top: auto;
    }

    .social-media-content {
        order: 4;
        margin-top: auto;
        border-top: #5E5D5C 1px solid;
        padding-top: 20px;
    }

    .footer-message,
    .social-media {
        margin-top: 15px;
    }

    .social-icons {
        justify-content: center;
    }
}