.aurora-friend-links-section {
    background: var(--aurora-bg-light);
    padding: 60px 0;
    border-top: 2px solid var(--aurora-border);
    position: relative;
    overflow: hidden;
}

.aurora-friend-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%2300d4aa" opacity="0.03"><circle cx="20" cy="20" r="1"/><circle cx="80" cy="40" r="0.8"/><circle cx="40" cy="80" r="1.2"/><circle cx="70" cy="10" r="0.6"/><circle cx="10" cy="60" r="1"/></svg>') repeat;
    background-size: 80px 80px;
    animation: auroraLinksFloat 20s ease-in-out infinite;
}

@keyframes auroraLinksFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

.aurora-friend-links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

.aurora-friend-links-header {
    text-align: center;
    margin-bottom: 40px;
}

.aurora-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.aurora-title-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--aurora-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aurora-title-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px var(--aurora-shadow-dark);
}

.aurora-title-icon i {
    font-size: 24px;
    color: #fff;
    z-index: 1;
    position: relative;
}

.aurora-icon-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--aurora-accent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.aurora-title-icon:hover .aurora-icon-glow {
    opacity: 0.3;
}

.aurora-title-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--aurora-text);
    margin: 0;
    line-height: 1.2;
}

.aurora-title-decoration {
    display: flex;
    align-items: center;
    gap: 8px;
}

.aurora-decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--aurora-primary);
    border-radius: 50%;
    animation: auroraDotPulse 2s ease-in-out infinite;
}

.aurora-decoration-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.aurora-decoration-line {
    width: 40px;
    height: 2px;
    background: var(--aurora-border);
    border-radius: 1px;
}

@keyframes auroraDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.aurora-section-desc {
    font-size: 16px;
    color: var(--aurora-text-light);
    margin: 0;
    line-height: 1.5;
}

.aurora-friend-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.link-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--aurora-glow), transparent);
    transition: left 0.5s ease;
}

.link-item.aurora-hover-effect::before {
    left: 100%;
}

.link-item.aurora-hover-effect {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--aurora-shadow-dark);
    border-color: var(--aurora-primary);
}


.aurora-stats-section {
    background: var(--aurora-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.aurora-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, var(--aurora-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--aurora-shadow) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--aurora-glow) 0%, transparent 50%);
    opacity: 0.1;
    animation: auroraStatsGlow 15s ease-in-out infinite;
}

@keyframes auroraStatsGlow {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.2;
    }
}

.aurora-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

.aurora-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.aurora-stat-card {
    background: var(--aurora-bg);
    border: 2px solid var(--aurora-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.aurora-stats-section.aurora-stat-animate .aurora-stat-card {
    opacity: 1;
    transform: translateY(0);
}

.aurora-stat-card:nth-child(1) {
    transition-delay: 0.1s;
}

.aurora-stat-card:nth-child(2) {
    transition-delay: 0.2s;
}

.aurora-stat-card:nth-child(3) {
    transition-delay: 0.3s;
}

.aurora-stat-card:nth-child(4) {
    transition-delay: 0.4s;
}

.aurora-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--aurora-glow), transparent);
    transition: left 0.6s ease;
}

.aurora-stat-card:hover::before {
    left: 100%;
}

.aurora-stat-card:hover {
    border-color: var(--aurora-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--aurora-shadow-dark);
}

.aurora-stat-icon {
    width: 70px;
    height: 70px;
    background: var(--aurora-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 28px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.aurora-stat-card:hover .aurora-stat-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px var(--aurora-shadow-dark);
}

.aurora-stat-content {
    position: relative;
    z-index: 1;
}

.aurora-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--aurora-text);
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
}

.aurora-stat-label {
    font-size: 16px;
    color: var(--aurora-text-light);
    font-weight: 600;
    margin: 0;
}

.aurora-stat-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--aurora-accent);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.aurora-stat-card:hover .aurora-stat-glow {
    opacity: 0.2;
}


.aurora-footer {
    background: var(--aurora-dark);
    color: var(--aurora-light);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.aurora-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.aurora-footer-light {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(60px);
}

.aurora-footer-light-1 {
    background: var(--aurora-primary);
    top: -150px;
    left: -150px;
    animation: auroraFooterFloat1 12s ease-in-out infinite;
}

.aurora-footer-light-2 {
    background: var(--aurora-accent);
    top: -100px;
    right: -150px;
    animation: auroraFooterFloat2 15s ease-in-out infinite;
}

.aurora-footer-light-3 {
    background: var(--aurora-secondary);
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    animation: auroraFooterFloat3 18s ease-in-out infinite;
}

@keyframes auroraFooterFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.08;
    }

    50% {
        transform: translate(40px, 30px) scale(1.2);
        opacity: 0.12;
    }
}

@keyframes auroraFooterFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.08;
    }

    50% {
        transform: translate(-30px, 40px) scale(1.1);
        opacity: 0.1;
    }
}

@keyframes auroraFooterFloat3 {

    0%,
    100% {
        transform: translateX(-50%) translate(0, 0) scale(1);
        opacity: 0.08;
    }

    50% {
        transform: translateX(-50%) translate(30px, -30px) scale(1.3);
        opacity: 0.12;
    }
}

.aurora-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.aurora-footer-content {
    display: flex;
    flex-direction: column;
}

.aurora-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(0, 212, 170, 0.2);
}


.aurora-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.aurora-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--aurora-light);
    transition: all 0.3s ease;
}

.aurora-footer-logo:hover {
    transform: translateY(-2px);
}

.aurora-footer-logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--aurora-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aurora-footer-logo:hover .aurora-footer-logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px var(--aurora-shadow-dark);
}

.aurora-footer-logo-icon i {
    font-size: 24px;
    color: #fff;
    z-index: 1;
    position: relative;
}

.aurora-footer-logo-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--aurora-accent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.aurora-footer-logo:hover .aurora-footer-logo-glow {
    opacity: 0.3;
}

.aurora-footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--aurora-light);
    line-height: 1.2;
}

.aurora-footer-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(224, 255, 249, 0.8);
    margin: 0;
    max-width: 500px;
}

.aurora-footer-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.aurora-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    font-size: 14px;
    color: var(--aurora-light);
    transition: all 0.3s ease;
}

.aurora-feature-item:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: var(--aurora-primary);
    transform: translateY(-2px);
}

.aurora-feature-item i {
    font-size: 16px;
    color: var(--aurora-primary);
}


.aurora-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aurora-footer-nav-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--aurora-light);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aurora-footer-nav-title i {
    font-size: 22px;
    color: var(--aurora-primary);
}

.aurora-footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aurora-footer-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    color: rgba(224, 255, 249, 0.8);
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aurora-footer-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.1), transparent);
    transition: left 0.4s ease;
}

.aurora-footer-nav-link:hover::before,
.aurora-footer-nav-link.aurora-nav-hover::before {
    left: 100%;
}

.aurora-footer-nav-link:hover,
.aurora-footer-nav-link.aurora-nav-hover {
    color: var(--aurora-primary);
    background: rgba(0, 212, 170, 0.1);
    transform: translateX(5px);
}

.aurora-footer-nav-link i {
    font-size: 16px;
    color: var(--aurora-primary);
    width: 20px;
    text-align: center;
}


.aurora-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aurora-footer-contact-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--aurora-light);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aurora-footer-contact-title i {
    font-size: 22px;
    color: var(--aurora-primary);
}

.aurora-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.aurora-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(224, 255, 249, 0.8);
    font-size: 14px;
}

.aurora-contact-item i {
    font-size: 16px;
    color: var(--aurora-primary);
    width: 20px;
    text-align: center;
}

.aurora-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.aurora-social-link {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(224, 255, 249, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.aurora-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--aurora-primary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.aurora-social-link:hover::before {
    transform: scale(1);
}

.aurora-social-link:hover {
    color: #fff;
    border-color: var(--aurora-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--aurora-shadow-dark);
}

.aurora-social-link.aurora-clicked {
    transform: scale(0.9);
}

.aurora-social-link i {
    font-size: 20px;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.aurora-social-link:hover i {
    transform: scale(1.1);
}

.aurora-social-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--aurora-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.aurora-social-link:hover .aurora-social-glow {
    opacity: 0.3;
}


.aurora-footer-bottom {
    padding: 30px 0;
}

.aurora-footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.aurora-copyright-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.aurora-icp-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    font-size: 13px;
}

.aurora-icp-info i {
    font-size: 14px;
    color: var(--aurora-primary);
}

.aurora-icp-link {
    color: rgba(224, 255, 249, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.aurora-icp-link:hover {
    color: var(--aurora-primary);
}

.aurora-copyright-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(224, 255, 249, 0.7);
    line-height: 1.5;
}

.aurora-copyright-text i {
    font-size: 16px;
    color: var(--aurora-primary);
}

.aurora-copyright-right {
    display: flex;
    align-items: center;
}

.aurora-runtime {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 20px;
    font-size: 13px;
    color: rgba(224, 255, 249, 0.8);
}

.aurora-runtime i {
    font-size: 14px;
    color: var(--aurora-primary);
}

.aurora-runtime strong {
    color: var(--aurora-primary);
    font-weight: 700;
}


.aurora-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--aurora-primary);
    border: 2px solid var(--aurora-border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px var(--aurora-shadow-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    overflow: hidden;
}

.aurora-back-to-top.aurora-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aurora-back-to-top.aurora-clicked {
    transform: scale(0.9);
}

.aurora-back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--aurora-secondary);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.aurora-back-to-top:hover::before {
    transform: scale(1);
}

.aurora-back-to-top:hover {
    border-color: var(--aurora-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--aurora-shadow-dark);
}

.aurora-back-icon {
    position: relative;
    z-index: 1;
}

.aurora-back-icon i {
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease;
}

.aurora-back-to-top:hover .aurora-back-icon i {
    transform: translateY(-2px);
}

.aurora-back-text {
    font-size: 10px;
    color: #fff;
    font-weight: 600;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}

.aurora-back-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--aurora-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.aurora-back-to-top:hover .aurora-back-glow {
    opacity: 0.3;
}


@media (max-width: 1024px) {

    .aurora-friend-links-container,
    .aurora-stats-container,
    .aurora-footer-container {
        padding: 0 20px;
    }

    .aurora-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .aurora-footer-contact {
        grid-column: 1 / -1;
    }

    .aurora-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .aurora-friend-links-section {
        padding: 50px 0;
    }

    .aurora-stats-section {
        padding: 60px 0;
    }

    .aurora-footer {
        padding: 60px 0 0;
    }

    .aurora-friend-links-container,
    .aurora-stats-container,
    .aurora-footer-container {
        padding: 0 15px;
    }

    .aurora-title-text {
        font-size: 24px;
    }

    .aurora-footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .aurora-footer-features {
        justify-content: center;
    }

    .aurora-social-links {
        justify-content: center;
    }

    .aurora-footer-copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .aurora-copyright-left {
        justify-content: center;
    }

    .aurora-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aurora-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .aurora-back-icon i {
        font-size: 20px;
    }

    .aurora-back-text {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .aurora-friend-links-section {
        padding: 40px 0;
    }

    .aurora-stats-section {
        padding: 50px 0;
    }

    .aurora-footer {
        padding: 50px 0 0;
    }

    .aurora-friend-links-container,
    .aurora-stats-container,
    .aurora-footer-container {
        padding: 0 12px;
    }

    .aurora-title-text {
        font-size: 20px;
    }

    .aurora-section-desc {
        font-size: 14px;
    }

    .aurora-footer-main {
        gap: 30px;
        padding-bottom: 40px;
    }

    .aurora-footer-bottom {
        padding: 25px 0;
    }

    .aurora-copyright-text {
        font-size: 12px;
    }

    .aurora-social-link {
        width: 40px;
        height: 40px;
    }

    .aurora-social-link i {
        font-size: 18px;
    }

    .aurora-back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .aurora-back-icon i {
        font-size: 18px;
    }

    .aurora-back-text {
        font-size: 8px;
    }

    .aurora-stat-card {
        padding: 25px;
    }

    .aurora-stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .aurora-stat-number {
        font-size: 28px;
    }

    .aurora-stat-label {
        font-size: 14px;
    }

    .aurora-footer-logo-text {
        font-size: 20px;
    }

    .aurora-footer-desc {
        font-size: 14px;
    }

    .aurora-footer-nav-title,
    .aurora-footer-contact-title {
        font-size: 18px;
    }

    .aurora-footer-nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }

    .aurora-contact-item {
        font-size: 13px;
    }

    .aurora-feature-item {
        font-size: 12px;
        padding: 6px 12px;
    }
}


.aurora-friend-links-section:focus-within,
.aurora-stats-section:focus-within,
.aurora-footer:focus-within {
    outline: 2px solid var(--aurora-accent);
    outline-offset: 2px;
}

.aurora-social-link:focus,
.aurora-footer-nav-link:focus,
.aurora-back-to-top:focus {
    outline: 2px solid var(--aurora-accent);
    outline-offset: 2px;
}


@media (prefers-contrast: high) {

    .aurora-stat-card,
    .aurora-social-link,
    .aurora-back-to-top {
        border-width: 3px;
    }

    .aurora-friend-links-section,
    .aurora-footer {
        border-width: 3px;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .aurora-friend-links-section::before,
    .aurora-stats-section::before,
    .aurora-footer-light,
    .aurora-decoration-dot {
        display: none;
    }
}


.aurora-friend-links-section ::selection,
.aurora-stats-section ::selection,
.aurora-footer ::selection {
    background: var(--aurora-accent);
    color: #fff;
}

.aurora-friend-links-section ::-moz-selection,
.aurora-stats-section ::-moz-selection,
.aurora-footer ::-moz-selection {
    background: var(--aurora-accent);
    color: #fff;
}


.aurora-friend-links-section *,
.aurora-stats-section *,
.aurora-footer * {
    box-sizing: border-box;
}


.aurora-stat-card,
.aurora-social-link,
.aurora-footer-nav-link,
.aurora-back-to-top,
.aurora-title-icon,
.aurora-footer-logo-icon {
    will-change: transform;
    backface-visibility: hidden;
}


@media print {

    .aurora-friend-links-section,
    .aurora-stats-section,
    .aurora-footer {
        background: #fff !important;
        color: #000 !important;
    }

    .aurora-friend-links-section::before,
    .aurora-stats-section::before,
    .aurora-footer-bg,
    .aurora-back-to-top {
        display: none !important;
    }

    .aurora-footer {
        background: #f5f5f5 !important;
        border-top: 2px solid #000 !important;
    }

    .aurora-stat-card {
        border: 2px solid #000 !important;
        break-inside: avoid;
    }

    .aurora-social-links {
        display: none !important;
    }

    .aurora-title-text,
    .aurora-footer-logo-text,
    .aurora-footer-nav-title,
    .aurora-footer-contact-title {
        color: #000 !important;
    }

    .aurora-stat-number,
    .aurora-stat-label {
        color: #000 !important;
    }
}


.aurora-friend-links-grid::-webkit-scrollbar,
.aurora-footer-nav-list::-webkit-scrollbar {
    width: 6px;
}

.aurora-friend-links-grid::-webkit-scrollbar-track,
.aurora-footer-nav-list::-webkit-scrollbar-track {
    background: var(--aurora-bg-light);
    border-radius: 3px;
}

.aurora-friend-links-grid::-webkit-scrollbar-thumb,
.aurora-footer-nav-list::-webkit-scrollbar-thumb {
    background: var(--aurora-primary);
    border-radius: 3px;
}

.aurora-friend-links-grid::-webkit-scrollbar-thumb:hover,
.aurora-footer-nav-list::-webkit-scrollbar-thumb:hover {
    background: var(--aurora-secondary);
}


.aurora-dark-mode .aurora-footer {
    background: #0a1a1a;
}

.aurora-dark-mode .aurora-footer-light {
    opacity: 0.05;
}

.aurora-dark-mode .aurora-stat-card {
    background: var(--aurora-bg-light);
    border-color: var(--aurora-border);
}

.aurora-dark-mode .aurora-back-to-top {
    background: var(--aurora-primary);
    border-color: var(--aurora-border);
}


.aurora-loading {
    opacity: 0.6;
    pointer-events: none;
}

.aurora-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid var(--aurora-border);
    border-top-color: var(--aurora-primary);
    border-radius: 50%;
    animation: auroraLoadingSpin 1s linear infinite;
}

@keyframes auroraLoadingSpin {
    to {
        transform: rotate(360deg);
    }
}


.aurora-error {
    background: #fee;
    border-color: #fcc;
    color: #c33;
}

.aurora-error .aurora-stat-icon {
    background: #c33;
}


.aurora-success {
    background: #efe;
    border-color: #cfc;
    color: #3c3;
}

.aurora-success .aurora-stat-icon {
    background: #3c3;
}


.aurora-warning {
    background: #ffe;
    border-color: #ffc;
    color: #cc3;
}

.aurora-warning .aurora-stat-icon {
    background: #cc3;
}


@keyframes auroraFlicker {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.aurora-flicker {
    animation: auroraFlicker 2s ease-in-out infinite;
}


@keyframes auroraPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--aurora-glow);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent;
    }
}

.aurora-pulse {
    animation: auroraPulse 2s infinite;
}


@keyframes auroraShake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
    }
}

.aurora-shake {
    animation: auroraShake 0.5s ease-in-out;
}


@keyframes auroraBounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateY(0);
    }

    40%,
    43% {
        transform: translateY(-10px);
    }

    70% {
        transform: translateY(-5px);
    }

    90% {
        transform: translateY(-2px);
    }
}

.aurora-bounce {
    animation: auroraBounce 1s ease-in-out;
}


.aurora-hidden {
    display: none !important;
}

.aurora-visible {
    display: block !important;
}

.aurora-text-center {
    text-align: center !important;
}

.aurora-text-left {
    text-align: left !important;
}

.aurora-text-right {
    text-align: right !important;
}

.aurora-no-margin {
    margin: 0 !important;
}

.aurora-no-padding {
    padding: 0 !important;
}

.aurora-full-width {
    width: 100% !important;
}

.aurora-relative {
    position: relative !important;
}

.aurora-absolute {
    position: absolute !important;
}

.aurora-fixed {
    position: fixed !important;
}

.aurora-z-high {
    z-index: 9999 !important;
}

.aurora-overflow-hidden {
    overflow: hidden !important;
}

.aurora-pointer-events-none {
    pointer-events: none !important;
}

.aurora-user-select-none {
    user-select: none !important;
}