:root {
    --primary-color: #ff9f68;
    --secondary-color: #ff6b6b;
    --accent-color: #ffd3b6;
    --dark-brown: #5e3719;
    --light-beige: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.92);
    --shadow: 0 8px 24px rgba(94, 55, 25, 0.15);
    --transition: all 0.3s ease;
    --section-padding: 80px 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    opacity: 0;
    align-items: center;
    animation: fadeIn 0.6s forwards;
}

a {
    color: black;
    text-decoration: none;
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.nav-placeholder {
    height: 80px;
}

.FursNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 15px 5%;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    text-decoration: none;
    flex-direction: row;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.logo-img {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
    transition: var(--transition);
}

.NavLinks {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-link {
    color: var(--dark-brown);
    padding: 8px 20px;
    margin: 0 8px;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 8px;
    font-size: 18px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    background: rgba(255, 159, 104, 0.15);
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    padding: 10px;
    margin-right: 15px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark-brown);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.page-header {
    padding: 60px 5% 30px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 211, 182, 0.1), transparent);
    border-bottom: 1px solid rgba(94, 55, 25, 0.1);
    margin-bottom: 40px;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: #FF806A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.page-subtitle {
    font-size: clamp(1rem, 2.3vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--dark-brown);
    opacity: 0.85;
    line-height: 1.6;
}

.content-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.main-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.announcements {
    width: 30%;
    min-width: 300px;
    background: var(--light-beige);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.content-block {
    background: var(--light-beige);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 25px;
    transition: var(--transition);
}

.content-block:hover {
    box-shadow: 0 12px 30px rgba(94, 55, 25, 0.2);
}

.content-title {
    font-size: clamp(1.6rem, 3.5vw, 1rem);
    margin-bottom: 30px;
    color: var(--dark-brown);
    position: relative;
    padding-bottom: 10px;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    padding: 15px;
    border-bottom: 1px solid rgba(94, 55, 25, 0.1);
    transition: var(--transition);
}

.news-item:hover {
    background: rgba(255, 214, 180, 0.2);
}

.news-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
}

.news-title .new-indicator {
    background: var(--secondary-color);
    color: white;
    font-size: 0.7rem;
    border-radius: 20px;
    padding: 2px 10px;
    margin-left: 10px;
}

.news-info {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}

.event-card {
    width: 50vw;
    min-width: 200px;
    max-width: 1000px;
    margin-left: 20vw;
    margin-right: 20vw;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: auto;
}

.event-card:hover {
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.2);
}

.event-image {
    position: relative;
    height: 160px;
    background: var(--primary-color);
    overflow: hidden;
    border-radius: inherit;
}

.event-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(18px) brightness(1.18) saturate(1.2);
    transform: scale(1.2);
    z-index: 0;
    transition: transform 0.5s cubic-bezier(.4, 2, .6, 1), filter 0.5s;
}

.event-image:hover .event-image-bg {
    transform: scale(1.2);
    filter: blur(24px) brightness(1.1) saturate(1.3);
}

.event-image-main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 90%;
    height: 90%;
    object-fit: contain;
    background: transparent;
    display: block;
}

.bilibili-player {
    border: none;
    overflow: hidden;
}

@keyframes loadingShimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

#furMeetErrorContainer {
    font-family: system-ui, sans-serif;
    font-weight: 500;
}

.event-content {
    padding: 20px;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-brown);
}

.event-details {
    color: #777;
    margin-bottom: 15px;
    font-size: 0.9rem;
    height: 7rem;
    overflow: auto;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    color: var(--dark-brown);
    font-weight: 600;
}

.event-status {
    background: var(--accent-color);
    color: var(--dark-brown);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.announcement-container {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.announcement-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.announcement-title i {
    margin-right: 10px;
}

.announcement-content {
    color: var(--dark-brown);
    line-height: 1.7;
    margin-bottom: 15px;
}

.announcement-date {
    color: #777;
    font-size: 0.85rem;
    text-align: right;
}

.announcement-slider .announcement-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.announcement-slider .announcement-container.active {
    position: relative;
    opacity: 1;
}

.hero {
    padding: 120px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.FirstTitle {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: #FF806A;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--dark-brown);
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    transition: var(--transition);
    margin: 20px 10px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--dark-brown);
    box-shadow: none;
}

.secondary-button:hover {
    background: rgba(255, 159, 104, 0.1);
}

.CopyRight {
    background: rgba(255, 255, 255, 0.9);
    margin-top: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(5px);
    width: 100%;
    padding: 80px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    text-align: left;
    width: 100%;
}

.footer-info {
    max-width: 400px;
}

.footer-info .logo-text {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--dark-brown);
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.link-group h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-brown);
    position: relative;
    padding-bottom: 10px;
}

.link-group a {
    display: block;
    color: var(--dark-brown);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    opacity: 0.9;
}

.link-group a:hover {
    color: var(--primary-color);
}

.CopyRightInfor {
    color: var(--dark-brown);
    font-size: 0.9rem;
    margin-top: 50px;
    opacity: 0.8;
    padding-top: 20px;
    border-top: 1px solid rgba(94, 55, 25, 0.1);
    text-align: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 159, 104, 0.5);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 159, 104, 0.8);
    }
}

@media (max-width: 860px) {
    .NavLinks {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        transition: 0.4s;
        padding: 30px 0;
        z-index: 999;
    }

    .NavLinks.active {
        left: 0;
    }

    .nav-link {
        width: 80%;
        margin: 12px auto;
        padding: 15px;
        font-size: 1.2rem;
    }

    .logo-container {
        gap: 8px;
    }

    .logo-img {
        height: 35px;
        max-width: 100px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
    }

    .logo {
        margin-right: 15px;
    }

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

    .footer-info {
        max-width: 100%;
        text-align: center;
    }

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

    .news-grid {
        grid-template-columns: 1fr;
    }

    .content-container {
        flex-direction: column;
    }

    .main-content,
    .announcements {
        width: 100%;
    }

    .announcements {
        order: -1;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .main-container {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 5% 60px;
    }

    .page-header {
        padding: 30px 5% 20px;
    }

    .page-title {
        margin-bottom: 10px;
    }

    .page-subtitle {
        margin-bottom: 20px;
    }

    .about-content {
        padding: 25px;
    }

    .cta-button {
        display: block;
        margin: 15px auto;
        width: 80%;
    }

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

}

@media (max-width: 480px) {
    .logo-container {
        gap: 6px;
    }

    .logo-img {
        height: 30px;
        max-width: 80px;
    }

    .logo-text {
        font-size: 1rem;
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.team-grid,
.values-container,
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    justify-items: center;
}

.team-member,
.value-card,
.event-card {
    width: 100%;
    max-width: 350px;
}

@media (min-width: 769px) {

    .about-page .content-container,
    .news-page .content-container {
        display: block !important;
        max-width: 1200px;
        margin: 0 auto;
    }

    .about-page .about-section,
    .news-page .about-section {
        width: 100% !important;
    }
}