* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink-black: #fff0f5;
    --deep-teal: #ffe4ec;
    --jade-green: #ffb6c1;
    --gold-accent: #ff69b4;
    --light-gold: #ff1493;
    --indigo-blue: #ffc0cb;
    --cream-white: #4a4a4a;
    --mist-gray: #888888;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4ec 50%, #ffc0cb 100%);
    color: var(--cream-white);
    line-height: 1.8;
    overflow-x: hidden;
}

.serif-font {
    font-family: 'Noto Serif SC', serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 105, 180, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 182, 193, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 20, 147, 0.2), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 105, 180, 0.2), transparent);
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
    animation: sparkle 8s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 40px;
    border-radius: 8px;
}

.nav-logo-text {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff1493;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #ff1493;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #c71585;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel .carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    letter-spacing: 8px;
}

.hero .subtitle {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.hero .slogan {
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 52px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #ff69b4 100%);
    background-size: 200% 100%;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 
        0 4px 20px rgba(255, 105, 180, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    background-position: 100% 0;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 20, 147, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.hero-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #ff69b4;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.5rem;
    color: #ff1493;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.section-header p {
    color: #888888;
    font-size: 1.1rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 228, 236, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 105, 180, 0.2),
        0 0 0 1px rgba(255, 105, 180, 0.3) inset;
}

.card-icon {
    font-size: 2.5rem;
    color: #ff69b4;
    margin-bottom: 15px;
}

.card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    color: #ff1493;
    margin-bottom: 10px;
}

.card p {
    color: #666666;
    font-size: 0.95rem;
}

.warning-box {
    background: linear-gradient(145deg, rgba(255, 240, 245, 0.75), rgba(255, 182, 193, 0.5));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.warning-box:hover::before {
    left: 100%;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.warning-header i {
    font-size: 2rem;
    color: #ff69b4;
}

.warning-header h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    color: #ff1493;
}

.warning-list {
    list-style: none;
}

.warning-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 182, 193, 0.4);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.warning-list li:last-child {
    border-bottom: none;
}

.warning-list li i {
    color: #ff69b4;
    margin-top: 5px;
}

.warning-list li strong {
    color: #ff1493;
}

.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.rule-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 228, 236, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.rule-card:hover::before {
    left: 100%;
}

.rule-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 20px 60px rgba(255, 105, 180, 0.2),
        0 0 0 1px rgba(255, 105, 180, 0.3) inset;
}

.rule-card.public {
    border-color: rgba(255, 105, 180, 0.6);
}

.rule-card.business {
    border-color: rgba(255, 182, 193, 0.6);
}

.rule-card.triad {
    border-color: rgba(255, 20, 147, 0.5);
}

.rule-card.civilian {
    border-color: rgba(255, 182, 193, 0.6);
}

.rule-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    color: #ff1493;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rule-card ul {
    list-style: none;
}

.rule-card li {
    padding: 10px 0;
    color: #666666;
    font-size: 0.95rem;
    padding-left: 25px;
    position: relative;
}

.rule-card li::before {
    content: '❤';
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-size: 0.7rem;
}

.reputation-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(255, 228, 236, 0.75));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 44px;
    text-align: center;
    margin-bottom: 44px;
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.reputation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.reputation-box:hover::before {
    left: 100%;
}

.reputation-box i {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 20px;
}

.reputation-box h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    color: #ff1493;
    margin-bottom: 15px;
}

.reputation-box p {
    color: #666666;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    background: linear-gradient(180deg, #fff0f5 0%, #ffe4ec 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(255, 228, 236, 0.75));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 44px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 24px 60px rgba(255, 105, 180, 0.25),
        0 0 0 1px rgba(255, 105, 180, 0.4) inset;
}

.contact-card i {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    color: #ff1493;
    margin-bottom: 15px;
}

.contact-number {
    display: inline-block;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 50%, #ff69b4 100%);
    background-size: 200% 100%;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 12px;
    box-shadow: 
        0 4px 20px rgba(255, 105, 180, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.contact-number:hover::before {
    left: 100%;
}

.contact-number:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 35px rgba(255, 20, 147, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.contact-number.highlight {
    background: linear-gradient(135deg, #ff1493 0%, #c71585 50%, #ff1493 100%);
    background-size: 200% 100%;
}

footer {
    background: linear-gradient(180deg, #ffe4ec, #ffc0cb);
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid rgba(255, 182, 193, 0.5);
}

footer p {
    color: #666666;
}

footer .seal {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem;
    color: #ff69b4;
    margin-bottom: 15px;
    opacity: 0.9;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    color: #ff69b4;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #ff69b4;
    transform: scale(1.2);
}

.status-section {
    padding: 80px 0;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.status-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 228, 236, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.status-card:hover::before {
    left: 100%;
}

.status-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(255, 105, 180, 0.2),
        0 0 0 1px rgba(255, 105, 180, 0.3) inset;
}

.status-icon {
    font-size: 2.5rem;
    color: #ff69b4;
    margin-bottom: 15px;
}

.status-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.2rem;
    color: #ff1493;
    margin-bottom: 10px;
}

.status-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #666666;
}

.status-online {
    color: #4CAF50;
}

.player-list {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 228, 236, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.player-list h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    color: #ff1493;
    margin-bottom: 20px;
    text-align: center;
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.player-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.1);
    transition: all 0.3s;
}

.player-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
}

.player-name {
    font-weight: 600;
    color: #ff1493;
    margin-bottom: 5px;
}

.player-ping {
    font-size: 0.9rem;
    color: #666666;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-number {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(255, 228, 236, 0.85));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 
        0 32px 96px rgba(255, 20, 147, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255, 182, 193, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(255, 105, 180, 0.1), rgba(255, 20, 147, 0.05));
}

.modal-header h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    color: #ff1493;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-close {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: #ff69b4;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.modal-close:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.3);
}

.modal-body {
    padding: 32px;
}

.modal-description {
    color: #666666;
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.server-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.server-option {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 182, 193, 0.5);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.server-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s;
}

.server-option:hover::before {
    left: 100%;
}

.server-option:hover {
    transform: translateY(-4px);
    border-color: #ff69b4;
    box-shadow: 
        0 12px 40px rgba(255, 105, 180, 0.2),
        0 0 0 1px rgba(255, 105, 180, 0.3) inset;
}

.server-icon {
    font-size: 2rem;
    color: #ff69b4;
    background: rgba(255, 105, 180, 0.1);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.server-info {
    flex: 1;
}

.server-info h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    color: #ff1493;
    margin: 0 0 6px 0;
}

.server-info p {
    color: #888888;
    font-size: 0.95rem;
    margin: 0 0 12px 0;
}

.server-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
}

.server-meta span {
    color: #666666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.server-select {
    color: #ff69b4;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.server-option:hover .server-select {
    transform: translateX(4px);
}

.modal-hint {
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 12px;
    padding: 16px;
    color: #ff1493;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 90%;
    }
    
    .server-option {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .server-meta {
        justify-content: center;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

html {
    scroll-behavior: smooth;
}