.footer {
    background-color: #151515;
    color: #b0b0b0;
    padding: 60px 20px 30px 20px;
    margin-top: 80px;
    border-top: 4px solid #424242;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-section h3 {
    font-family: 'MinecraftTen', 'Arial', sans-serif;
    font-size: 20px;
    color: #ffffff;
    /* text-shadow: 1px 1px 0 #737373; */
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-section p {
    font-family: 'Regular', 'Arial', sans-serif;
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    text-decoration: none;
    font-family: 'Regular', 'Arial', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #4ade80;
    transform: translateX(5px);
}

.footer-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-link.discord:hover {
    color: #5865F2;
}

.footer-link.tiktok:hover {
    color: #ff0050;
}

.footer-link.youtube:hover {
    color: #ff0000;
}

.partner-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
    text-decoration: none;
    font-family: 'Regular', 'Arial', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.partner-link:hover {
    color: #4ade80;
    transform: translateX(5px);
}

.partner-link::before {
    content: '→';
    color: #4ade80;
    font-size: 16px;
}

.footer-discord-btn {
    position: relative;
    padding: 12px 30px 22px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    font-family: 'MinecraftTen', 'Arial', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease;
    white-space: nowrap;
    letter-spacing: 2px;
    border: none;
    display: inline-block;
    margin-top: 10px;
    
    background: #424242;
    border: 4px solid #424242;
    color: white;
    text-shadow: 0 3px 0 #3c4a8a;
    isolation: isolate;
}

.footer-discord-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10px;
    background: #5865F2;
    box-shadow: 
        inset 4px 4px 0 #7289DA,
        inset -4px -4px 0 #7289DA;
    pointer-events: none;
    z-index: -1;
}

.footer-discord-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: #4752C4;
    z-index: -1;
}

.footer-discord-btn:hover::before {
    filter: brightness(1.1);
}

.footer-discord-btn:active {
    transform: translateY(2px);
}

.footer-discord-btn:active::before {
    filter: brightness(0.9);
}

.footer-bottom {
    border-top: 3px solid #424242;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-disclaimer {
    font-family: 'Regular', 'Arial', sans-serif;
    font-size: 12px;
    color: #888888;
    line-height: 1.6;
    max-width: 800px;
}

.footer-copyright {
    font-family: 'Regular', 'Arial', sans-serif;
    font-size: 13px;
    color: #b0b0b0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-discord-btn {
        width: 100%;
        padding: 10px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section p,
    .footer-link,
    .partner-link {
        font-size: 13px;
    }
    
    .footer-disclaimer {
        font-size: 11px;
    }
}