/* v4-10.css - Royal Reels Casino Footer */

.rr-footer {
    background: linear-gradient(180deg, rgba(26, 20, 37, 0.98) 0%, rgba(15, 10, 31, 1) 100%);
    color: var(--footer-text-main);
    padding: 48px 0 32px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.1)
}

/* Decorative background */
.rr-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffd700 25%, 
        #7c3aed 50%, 
        #ffd700 75%, 
        transparent 100%
    );
    animation: rr-gradient-slide 10s linear infinite
}

@keyframes rr-gradient-slide {
    from { transform: translateX(-100%) }
    to { transform: translateX(100%) }
}

.rr-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center bottom, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none
}

.rr-footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    container-name: footer-container;
    container-type: inline-size;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 48px;
    position: relative;
    z-index: 1
}

/* Logo */
.rr-footer__logo {
    width: var(--logo-width, 140px);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.2))
}

.rr-footer__logo:hover {
    transform: scale(1.05)
}

.rr-footer__logo-img {
    display: block;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

/* Content Layout */
.rr-footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 48px
}

/* Menu Section */
.rr-footer__menu {
    min-width: 150px;
    animation: rr-footer-fade-in 0.6s ease-out backwards;
    animation-delay: calc(var(--menu-index, 0) * 0.1s)
}

@keyframes rr-footer-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.rr-footer__menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 32px
}

.rr-footer__menu-title {
    font-family: var(--font-2);
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffd700 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 8px
}

.rr-footer__menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700 0%, transparent 100%);
    border-radius: 2px
}

.rr-footer__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 12px;
    list-style: none
}

.rr-footer__menu-list__item {
    position: relative;
    transition: transform 0.3s ease
}

.rr-footer__menu-list__item:hover {
    transform: translateX(4px)
}

.rr-footer__menu-list__item-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative
}

.rr-footer__menu-list__item-link:hover {
    color: #ffd700
}

.rr-footer__menu-list__item-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffd700;
    transition: width 0.3s ease
}

.rr-footer__menu-list__item-link:hover::before {
    width: 100%
}

/* Social Media Section */
.rr-footer__menu-sm__title {
    font-family: var(--font-2);
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.rr-footer__menu-sm__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px
}

.rr-footer__menu-sm__links-item {
    color: rgba(255, 255, 255, 0.6);
    height: 32px;
    width: 32px;
    text-decoration: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 4px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1)
}

.rr-footer__menu-sm__links-item:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.2)
}

.rr-footer__menu-sm__links-item svg {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

/* Info Section */
.rr-footer__info-wrapper {
    container-name: footer-info;
    container-type: inline-size;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 200px;
    flex: 1 0 200px;
    max-width: 50%
}

@container footer-container (min-width: 720px) {
    .rr-footer__info-wrapper {
        max-width: 100%
    }
}

/* Buttons */
.rr-footer__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%
}

.rr-footer__buttons-item {
    background: linear-gradient(135deg, #ffd700 0%, #fbbf24 100%);
    color: #0f0a1f;
    font-family: var(--font-2);
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
    line-height: 150%;
    padding: 12px 32px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden
}

.rr-footer__buttons-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s
}

.rr-footer__buttons-item:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3)
}

.rr-footer__buttons-item:hover::before {
    width: 300%;
    height: 300%
}

.rr-footer__buttons-item svg {
    height: 24px;
    width: 24px
}

/* DMCA Section */
.rr-footer__dmca {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    padding: 16px;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease
}

.rr-footer__dmca:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2)
}

.rr-footer__dmca-age-limit {
    background: linear-gradient(135deg, #ffd700 0%, #fbbf24 100%);
    color: #0f0a1f;
    font-size: 12px;
    font-weight: 700;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2)
}

/* Copyright */
.rr-footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 24px
}

/* Responsive */
@media (max-width: 768px) {
    .rr-footer {
        padding: 24px 0
    }
    
    .rr-footer .container {
        gap: 32px
    }
    
    .rr-footer__logo {
        width: 100px
    }
    
    .rr-footer__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px
    }
    
    .rr-footer__menu-title {
        font-size: 18px;
        margin-bottom: 8px
    }
    
    .rr-footer__menu-list {
        gap: 8px
    }
    
    .rr-footer__menu-sm__title {
        font-size: 20px
    }
    
    .rr-footer__buttons-item {
        padding: 10px 24px;
        font-size: 14px
    }
}

@media (max-width: 766px) {
    .rr-footer__info-wrapper {
        container-type: normal;
        max-width: 100%
    }
}

/* Hover effects for desktop */
@media not all and (pointer: coarse) {
    .rr-footer__menu-sm__links-item:hover {
        color: #ffd700
    }
}


.footer_copyright {
        margin: 0;
        align-self: center
    }