 .main-footer {
            position: relative;
            background: #111;
            color: white;
            margin-top: 100px;
            overflow: hidden;
        }

        .footer-waves {
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 100px;
            overflow: hidden;
        }

        .footer-waves svg {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 40px;
            position: relative;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 2fr;
            gap: 60px;
        }

        .footer-brand h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff0000, #ff3333);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .footer-brand p {
            color: #ccc;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            color: white;
        }
        .social-link:hover {
            transform: translateY(-3px);
            background: #ff0000;
        }

        .social-link.discord:hover {
            background: #7289DA;
        }

        .social-link.whatsapp:hover {
            background: #25D366;
        }

        .social-link.telegram:hover {
            background: #0088cc;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 40px;
            height: 3px;
            background: #ff0000;
            border-radius: 2px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-section ul a:hover {
            color: white;
            transform: translateX(-5px);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ccc;
        }

        .contact-item svg {
            flex-shrink: 0;
            color: #ff0000;
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
        }

        .footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: #888;
        }

        .payment-methods {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .payment-methods img {
            height: 20px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .payment-methods img:hover {
            opacity: 1;
        }

        @media (max-width: 968px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: 1fr;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-content {
            animation: fadeInUp 0.6s ease-out;
        }

        .footer-section a {
            position: relative;
        }

        .footer-section a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 0;
            width: 0;
            height: 2px;
            background: #ff0000;
            transition: width 0.3s ease;
        }

        .footer-section a:hover::after {
            width: 100%;
        }

        .social-link {
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transition: 0.5s;
        }

        .social-link:hover::before {
            left: 100%;
        }
                            .server-status {
                        margin-top: 12px;
                    }

                    .status-title {
                        font-size: 14px;
                        font-weight: bold;
                        margin-bottom: 4px;
                    }

                    iframe {
                        border: none;
                    }