/* Professional Footer Styles for GoldenAura Casino */
/* Enhanced mobile-first responsive design */

.website-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f4c75 100%);
    color: #ffffff;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #ffd700;
}

/* Animated header line */
.website-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #ff6b35 25%, #f7931e 50%, #ffd700 75%, #ff6b35 100%);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

/* Main footer content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
.footer-section:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand section */
.footer-brand {
    max-width: 380px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.footer-brand-name {
    color: #ffd700;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-tagline {
    color: #ffd700;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #b8c5d6;
    font-size: 15px;
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-feature {
    display: flex;
    align-items: center;
    color: #4ade80;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-feature:hover {
    color: #22c55e;
    padding-left: 5px;
}

.footer-feature i {
    margin-right: 10px;
    width: 20px;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(76, 222, 128, 0.5);
}

/* Section titles */
.footer-title {
    color: #ffd700;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    border-radius: 2px;
}

/* Links styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    border-radius: 4px;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 8px;
    background: rgba(255, 215, 0, 0.1);
    padding-right: 8px;
}

.footer-links a i {
    margin-right: 10px;
    width: 20px;
    transition: all 0.3s ease;
}

.footer-links a:hover i {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Cryptocurrency grid */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.crypto-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.crypto-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.crypto-item:hover::before {
    left: 100%;
}

.crypto-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-3px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.crypto-icon {
    margin-right: 8px;
    font-size: 18px;
    color: #ffd700;
    transition: all 0.3s ease;
}

.crypto-item:hover .crypto-icon {
    transform: rotate(360deg);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.crypto-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 215, 0, 0.4);
    border-radius: 8px;
    font-size: 13px;
    color: #ffd700;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.crypto-more:hover {
    border-style: solid;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.crypto-note {
    font-size: 13px;
    color: #b8c5d6;
    font-style: italic;
    text-align: center;
    opacity: 0.8;
}

/* Provider badges */
.provider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.provider-badge {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.provider-badge:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Support hours */
.support-hours {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    border-left: 4px solid #4ade80;
    transition: all 0.3s ease;
}

.support-hours:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.support-hours h5 {
    color: #4ade80;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
}

.support-hours p {
    color: #b8c5d6;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Security section */
.footer-security {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.security-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.security-title {
    color: #ffd700;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.security-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(76, 222, 128, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.security-badge:hover {
    background: rgba(76, 222, 128, 0.1);
    border-color: #4ade80;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 222, 128, 0.2);
}

.security-badge i {
    color: #4ade80;
    margin-right: 12px;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(76, 222, 128, 0.5);
}

.security-badge span {
    font-size: 14px;
    color: #b8c5d6;
    font-weight: 600;
}

/* Responsible gambling links */
.responsible-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.resp-link {
    display: flex;
    align-items: center;
    color: #b8c5d6;
    text-decoration: none;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
}

.resp-link:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.resp-link i {
    margin-right: 8px;
    width: 18px;
    transition: all 0.3s ease;
}

.resp-link:hover i {
    transform: scale(1.2);
}

/* Languages grid */
.languages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lang-item, .lang-more {
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #b8c5d6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.lang-more {
    color: #ffd700;
    border: 1px dashed rgba(255, 215, 0, 0.4);
    font-weight: 600;
}

.lang-more:hover {
    border-style: solid;
    background: rgba(255, 215, 0, 0.1);
}

/* Bottom section */
.footer-bottom {
    background: rgba(0, 0, 0, 0.6);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    color: #b8c5d6;
    font-size: 15px;
    font-weight: 500;
}

.version {
    font-size: 12px !important;
    color: #888 !important;
    font-weight: 400 !important;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.legal-links a:hover {
    color: #ffd700;
}

.divider {
    color: #555;
    font-weight: 300;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #b8c5d6;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: #000;
    transform: translateY(-5px) scale(1.1);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Disclaimer section */
.footer-disclaimer {
    background: rgba(0, 0, 0, 0.8);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.age-restriction {
    display: flex;
    align-items: center;
    color: #ef4444;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(239, 68, 68, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.age-restriction i {
    margin-right: 8px;
    font-size: 22px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.disclaimer-text {
    flex: 1;
}

.disclaimer-text p {
    margin: 0 0 10px 0;
    color: #b8c5d6;
    font-size: 14px;
    line-height: 1.6;
}

.small-print {
    font-size: 12px !important;
    color: #888 !important;
    line-height: 1.4 !important;
}

.awareness-logo {
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.awareness-logo:hover {
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
    }

    .security-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }

    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-features {
        align-items: center;
    }

    .security-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .security-badges {
        grid-template-columns: 1fr;
    }

    .responsible-links {
        grid-template-columns: 1fr;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .age-restriction {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-brand-name {
        font-size: 24px;
    }

    .crypto-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .crypto-item {
        padding: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .support-hours {
        margin-top: 20px;
        padding: 15px;
    }

    .legal-links {
        gap: 8px;
    }

    .legal-links a {
        font-size: 13px;
    }

    .disclaimer-text p {
        font-size: 13px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }

    .footer-brand-name {
        font-size: 20px;
    }

    .footer-title {
        font-size: 16px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .website-footer {
        background: #000;
        border-top-color: #fff;
    }

    .footer-title,
    .footer-brand-name,
    .footer-tagline {
        color: #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .website-footer::before,
    .crypto-item:hover .crypto-icon,
    .age-restriction i {
        animation: none;
    }

    .footer-section,
    .crypto-item,
    .security-badge,
    .social-link {
        transition: none;
    }
}

/* Print styles */
@media print {
    .website-footer {
        background: none;
        color: #000;
    }

    .footer-title,
    .footer-brand-name {
        color: #000;
    }

    .social-links,
    .security-badges {
        display: none;
    }
}
