.footer {
    background: linear-gradient(135deg, 
        rgba(23, 8, 1, 0.95) 0%, 
        rgba(27, 23, 22, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 174, 57, 0.1);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffc801 20%, 
        #ff6d01 50%, 
        #ffc801 80%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffc801, #ff6d01);
    border-radius: 2px;
}

.footer-section.brand h3 {
    font-size: 1.5rem;
    color: #fff;
}

.footer-section.brand .brand-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-section.brand .brand-info img {
    width: 60px;
    margin-right: 20px;
}

.footer-section.brand .brand-info .info .name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.footer-section.brand .brand-info .info .site {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #787788;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ffae39;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -20px;
}

.server-status {
    background: rgba(255, 174, 57, 0.1);
    border: 1px solid rgba(255, 174, 57, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.server-ip {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    color: #ffae39;
    font-weight: 600;
    margin: 10px 0;
    border: 1px solid rgba(255, 174, 57, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.server-ip:hover {
    background: rgba(255, 174, 57, 0.1);
    box-shadow: 0 0 15px rgba(255, 174, 57, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 174, 57, 0.2);
    color: #ffae39;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 174, 57, 0.3);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 174, 57, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section.brand .brand-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section.brand .brand-info img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}


.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.developer-credit {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.developer-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.developer-link:hover {
    color: #f59e0b;
}

.developer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        gap: 0.75rem;
    }
    
    .footer-bottom p,
    .developer-credit {
        font-size: 0.8rem;
    }
}
