.center-screen-wrapper {
    display: flex !important; /* Forces flexbox display */
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    height: 100vh; /* Full viewport height */
}

/* Social Media Buttons */
.social-media-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 26px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-btn i {
    color: white !important;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
    scale: 1.1;
}

.social-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Individual social media brand colors on hover */
.social-btn:hover .fa-twitter { 
    background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-btn:hover .fa-facebook-f { 
    color: #1877F2; 
}

.social-btn:hover .fa-instagram { 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-btn:hover .fa-youtube { 
    color: #FF0000; 
}

.social-btn:hover .fa-linkedin-in { 
    color: #0077B5; 
}

.social-btn:hover .fa-tiktok { 
    color: #000000; 
}

.social-btn:hover .fa-twitch { 
    color: #9146FF; 
}

.social-btn:hover .fa-reddit-alien { 
    color: #FF4500; 
}

/* Footer Download Links - Match Footer Pages Styling */
.footer__middle .footer__download .list-wrap {
    display: block;
}

.footer__middle .footer__download .list-wrap li {
    display: block;
}

.footer__middle .footer__download .list-wrap li:not(:last-child) {
    margin-bottom: 7px;
}

.footer__middle .footer__download .list-wrap li:after {
    display: none;
}

.footer__middle .footer__download .list-wrap li a {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.footer__middle .footer__download .list-wrap li a:before {
    display: none;
}

.footer__middle .footer__download .list-wrap li a:hover {
    color: var(--tg-color-white-default);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .social-media-buttons {
        gap: 18px;
    }
    
    .social-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}