.footer-component {
    background-color: var(--footer-bg, #1a1a1a);
    color: var(--footer-text, #ffffff);
    margin-top: 60px;
    border-top: 3px solid var(--footer-accent, #c0392b);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}
.footer-main {
    padding: 50px 0 30px;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-section {
    animation: fadeInUp 0.6s ease-out;
    margin-bottom: 20px;
}
.footer-title {
    color: var(--footer-accent, #c0392b);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title i {
    font-size: 1.1rem;
    color: var(--footer-accent, #c0392b);
}
.footer-about .footer-description {
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 0.95rem;
    color: var(--footer-text, #ffffff);
}
.social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}
.social-facebook {
    background-color: #1877f2;
    color: white;
}
.social-facebook:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
    color: #166fe5;
}

.social-x {
    background-color: #000000;
    color: white;
}
.social-x:hover {
    transform: translateY(-3px);
    background-color: white;
    color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(0, 0, 1, 0.558)
}
.social-x svg {
    width: 20px;
    height: 20px;
    color: white;
}
.social-x:hover svg {
    color: #1a1a1a;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}
.social-instagram:hover {
    background: white; 
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
    color: #dc2743;
}

.social-youtube {
    background-color: white;
    color: #ff0000;
}
.social-youtube:hover {
    background-color: #e60000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    color: white;
}

.social-telegram {
    background-color: #0088cc;
    color: white;
}
.social-telegram:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
    color: #0077b5;
}

.social-discord {
    background-color: #4511be;
    color: white;
}

.social-discord:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(133, 0, 204, 0.4);
    color: #4511be;
}


.social-whatsapp {
    background: #25d366;
    color: white;
}

.social-whatsapp:hover {
    background: white;
    transform: translateY(-2px);
    color: #25d366;
}
.social-icon:not([class*="social-"]) {
    background-color: var(--footer-border, #333333);
    color: var(--footer-text, #ffffff);
}

.social-icon:not([class*="social-"]):hover {
    background-color: var(--footer-accent, #c0392b);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.4);
    color: white;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--footer-text, #ffffff);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--footer-accent, #c0392b);
    opacity: 1;
    transform: translateX(5px);
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--footer-accent, #c0392b);
}

.footer-link:hover i {
    transform: translateX(3px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.contact-item i {
    color: var(--footer-accent, #c0392b);
    width: 20px;
    text-align: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item a {
    color: var(--footer-text, #ffffff);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
}
.contact-item a:hover {
    color: var(--footer-accent, #c0392b);
    opacity: 1;
}
.contact-item span {
    color: var(--footer-text, #ffffff);
    opacity: 0.9;
}
.footer-newsletter .newsletter-description {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--footer-text, #ffffff);
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: var(--footer-border, #333333);
    color: var(--footer-text, #ffffff);
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: #404040;
    box-shadow: 0 0 0 2px var(--footer-accent, #c0392b);
}

.newsletter-button {
    padding: 12px 20px;
    background: var(--footer-accent, #c0392b);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-family: inherit;
}

.newsletter-button:hover {
    background: #a93226;
}

.newsletter-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.footer-bottom {
    background: rgba(0, 0, 0, 0.807);
    border-top: 1px solid var(--footer-border, #333333);
    padding: 20px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    font-size: 1.2rem;
    opacity: 0.8;
    color: var(--footer-text, #ffffff);
}

.copyright-text p {
    margin: 0;
}

.copyright-text strong {
    color: var(--footer-accent, #c0392b);
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-bottom-link {
    color: var(--footer-text, #ffffff);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--footer-accent, #c0392b);
    opacity: 1;
}

.separator {
    opacity: 0.5;
    color: var(--footer-text, #ffffff);
}