:root {
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-700: #be185d;
    --pink-800: #9d174d;
    --pink-900: #831843;
    
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    
    --peach-50: #fff7ed;
    --peach-100: #ffedd5;
    --peach-200: #fed7aa;
    --peach-300: #fdba74;
    --peach-400: #fb923c;
    
    --bg-primary: #fff7f9;
    --bg-secondary: #fdf2f8;
    --bg-card: #ffffff;
    --text-primary: #1e1b4b;
    --text-secondary: #6366f1;
    --text-muted: #94a3b8;
    
    --shadow-sm: 0 2px 8px rgba(244, 114, 182, 0.15);
    --shadow-md: 0 4px 16px rgba(244, 114, 182, 0.2);
    --shadow-lg: 0 8px 32px rgba(244, 114, 182, 0.25);
    --shadow-xl: 0 16px 48px rgba(244, 114, 182, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html, body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Libre Franklin', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--pink-50) 0%, var(--rose-50) 50%, var(--peach-50) 100%);
    min-height: 100vh;
}

.neumorphism {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 8px 24px rgba(244, 114, 182, 0.15),
        0 2px 8px rgba(244, 114, 182, 0.1);
    transition: all var(--transition-normal);
}

.neumorphism:hover {
    box-shadow: 
        0 12px 32px rgba(244, 114, 182, 0.25),
        0 4px 16px rgba(244, 114, 182, 0.15);
    transform: translateY(-4px);
}

.neumorphism-inset {
    background: linear-gradient(145deg, var(--pink-100), var(--rose-100));
    border-radius: var(--radius-lg);
    box-shadow: 
        inset 0 2px 8px rgba(255, 255, 255, 0.8),
        inset 0 -2px 8px rgba(244, 114, 182, 0.1);
}

.btn-pink {
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5);
}

.btn-pink:active {
    transform: scale(0.98);
}

.btn-pink-outline {
    background: transparent;
    color: var(--pink-500);
    border: 2px solid var(--pink-400);
    border-radius: var(--radius-full);
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-pink-outline:hover {
    background: var(--pink-500);
    color: white;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
}

.btn-soft {
    background: linear-gradient(135deg, var(--pink-100), var(--rose-100));
    color: var(--pink-700);
    border: none;
    border-radius: var(--radius-lg);
    padding: 12px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-soft:hover {
    background: linear-gradient(135deg, var(--pink-200), var(--rose-200));
    transform: translateY(-2px);
}

.input-pink {
    background: linear-gradient(145deg, var(--pink-50), var(--rose-50));
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    box-shadow: inset 0 2px 8px rgba(244, 114, 182, 0.1);
}

.input-pink:focus {
    outline: none;
    border-color: var(--pink-400);
    box-shadow: 
        inset 0 2px 8px rgba(244, 114, 182, 0.1),
        0 0 0 3px rgba(244, 114, 182, 0.1);
}

.card-pink {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 12px 40px rgba(244, 114, 182, 0.18),
        0 4px 12px rgba(244, 114, 182, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.card-pink:hover {
    box-shadow: 
        0 20px 56px rgba(244, 114, 182, 0.25),
        0 8px 24px rgba(244, 114, 182, 0.15);
    transform: translateY(-6px) scale(1.02);
}

.card-pink-header {
    background: linear-gradient(135deg, var(--pink-400), var(--rose-400));
    padding: 24px;
    text-align: center;
    color: white;
}

.card-pink-body {
    padding: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink-600), var(--rose-500), var(--peach-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shimmer {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pulse-pink {
    animation: pulse-pink 2s ease-in-out infinite;
}

@keyframes pulse-pink {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 15px rgba(244, 114, 182, 0);
    }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.avatar-pink {
    border-radius: var(--radius-full);
    border: 4px solid var(--pink-200);
    box-shadow: 0 4px 16px rgba(244, 114, 182, 0.2);
    transition: all var(--transition-normal);
}

.avatar-pink:hover {
    border-color: var(--pink-400);
    box-shadow: 0 8px 24px rgba(244, 114, 182, 0.3);
    transform: scale(1.05);
}

.badge-pink {
    background: linear-gradient(135deg, var(--pink-100), var(--rose-100));
    color: var(--pink-700);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.divider-pink {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-300), transparent);
    border: none;
}

.scrollbar-pink::-webkit-scrollbar {
    width: 8px;
}

.scrollbar-pink::-webkit-scrollbar-track {
    background: var(--pink-100);
    border-radius: var(--radius-full);
}

.scrollbar-pink::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--pink-300), var(--rose-300));
    border-radius: var(--radius-full);
}

.scrollbar-pink::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--pink-400), var(--rose-400));
}

@media (max-width: 768px) {
    .btn-pink {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .card-pink {
        border-radius: var(--radius-lg);
        margin: 0 12px;
    }
    
    .card-pink-body {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .btn-pink {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .card-pink {
        border-radius: var(--radius-lg);
        margin: 0 12px;
    }
    
    .card-pink-body {
        padding: 16px;
    }
    
    .neumorphism {
        border-radius: var(--radius-md);
        box-shadow: 0 4px 16px rgba(244, 114, 182, 0.12);
    }
    
    .input-pink {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    :root {
        --radius-lg: 16px;
        --radius-xl: 20px;
    }
    
    .btn-pink {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }
    
    .btn-pink-outline {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }
    
    .card-pink-header {
        padding: 16px;
    }
    
    .card-pink-body {
        padding: 12px;
    }
    
    .neumorphism {
        border-radius: var(--radius-sm);
        box-shadow: 0 2px 12px rgba(244, 114, 182, 0.1);
    }
    
    .input-pink {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .avatar-pink {
        border-width: 3px;
    }
    
    .badge-pink {
        padding: 3px 8px;
        font-size: 11px;
    }
}

.features-section {
    background: linear-gradient(180deg, var(--pink-50) 0%, var(--rose-50) 50%, var(--bg-primary) 100%);
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(244, 114, 182, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 113, 133, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.features-container {
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px 20px;
    margin-bottom: 16px;
    box-shadow: 
        0 10px 40px rgba(244, 114, 182, 0.15),
        0 4px 12px rgba(244, 114, 182, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-400), var(--rose-400), var(--peach-400));
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 16px 48px rgba(244, 114, 182, 0.25),
        0 6px 20px rgba(244, 114, 182, 0.15);
}

.feature-card-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.feature-card-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.feature-image {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    filter: drop-shadow(0 6px 20px rgba(244, 114, 182, 0.2));
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-image {
    transform: scale(1.05) rotate(2deg);
}

.feature-content {
    flex: 1;
    padding: 16px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--pink-600), var(--rose-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.35);
    border: none;
    cursor: pointer;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.45);
    color: white;
    text-decoration: none;
}

.feature-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--pink-100), var(--rose-100));
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.2);
}

@media (max-width: 992px) {
    .features-section {
        padding: 48px 0;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-card-row {
        flex-direction: column !important;
        gap: 24px;
    }
    
    .feature-image {
        max-height: 180px;
    }
    
    .feature-content {
        padding: 0;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .features-section {
        padding: 36px 0;
    }
    
    .feature-card {
        padding: 20px 16px;
        border-radius: var(--radius-md);
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .feature-btn {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}

.how-it-works-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--pink-50) 50%, var(--rose-50) 100%);
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(244, 114, 182, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(251, 113, 133, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-container {
    position: relative;
    z-index: 1;
}

.how-it-works-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--pink-600), var(--rose-500), var(--peach-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.step-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 16px 12px;
    text-align: center;
    position: relative;
    box-shadow: 
        0 8px 24px rgba(244, 114, 182, 0.12),
        0 4px 12px rgba(244, 114, 182, 0.08);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink-400), var(--rose-400), var(--peach-400));
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 14px 40px rgba(244, 114, 182, 0.2),
        0 6px 20px rgba(244, 114, 182, 0.12);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 12px;
    display: inline-flex;
}

.step-number-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--pink-500), var(--rose-500));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.35);
    position: relative;
    z-index: 2;
}

.step-blob {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.step-blob svg {
    width: 100%;
    height: 100%;
}

.step-blob svg path {
    fill: url(#pinkGradient);
}

.step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    color: white;
    z-index: 3;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    opacity: 0.85;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 12px;
}

.wave-decoration {
    margin-top: 32px;
    overflow: hidden;
}

.wave-decoration svg {
    width: 100%;
    height: auto;
    display: block;
}

.wave-decoration path {
    fill: var(--pink-100);
}

@media (max-width: 992px) {
    .how-it-works-section {
        padding: 24px 0;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .step-card {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 20px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .how-it-works-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .step-card {
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }
    
    .step-number-badge {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 16px 0;
    }
    
    .how-it-works-title {
        font-size: 22px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .btn-pink {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .card-pink-body {
        padding: 8px;
    }
    
    .neumorphism:hover {
        transform: none;
    }
}

.to_index_nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 0 !important;
}

.to_index_nav .nav-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.to_index_nav .header_logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    position: relative !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.to_index_nav .brand-logo {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
}

.header-danmaku {
    position: static !important;
    width: calc(100% - 20px) !important;
    max-width: 800px !important;
    height: 40px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    margin-top: 8px !important;
    padding: 0 10px !important;
}

.danmaku-container {
    display: flex;
    animation: danmaku-scroll 45s linear infinite;
    width: max-content;
}

.danmaku-container:hover {
    animation-play-state: paused;
}

@keyframes danmaku-scroll {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.danmaku-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.danmaku-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #f472b6, #fb7185);
    object-fit: cover;
}

.danmaku-text {
    font-size: 13px;
}

.page_footer#footer {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.1) 0%, rgba(251, 113, 133, 0.1) 50%, rgba(251, 146, 60, 0.1) 100%);
    border-top: 1px solid rgba(244, 114, 182, 0.2);
    padding: 15px 0;
}

.page_footer#footer .footer-copyright {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    color: #5c4033 !important;
    border-color: rgba(244, 114, 182, 0.2) !important;
    font-weight: 500;
    padding: 15px 20px !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.page_footer#footer .footer-copyright > span:first-child {
    order: 1;
}

.page_footer#footer .dt_fotr_spn {
    order: 2;
}

.page_footer#footer .dt_footer_links {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.page_footer#footer .dt_footer_links li {
    list-style: none;
}

.page_footer#footer .dt_footer_links li a {
    color: #f472b6 !important;
    transition: all 0.3s ease;
    font-size: 13px;
    text-decoration: none;
}

.page_footer#footer .dt_footer_links li a:hover {
    color: #fb7185 !important;
    text-decoration: underline;
}

.page_footer#footer center {
    margin-top: 10px;
    padding-bottom: 5px;
    text-align: center;
}

.page_footer#footer center font {
    color: #ff6b6b;
    font-size: 11px;
    line-height: 1.6;
}

.page_footer#footer {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.1) 0%, rgba(251, 113, 133, 0.1) 50%, rgba(251, 146, 60, 0.1) 100%);
    border-top: 1px solid rgba(244, 114, 182, 0.2);
    padding: 15px 0;
    margin-top: 10px;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(244, 114, 182, 0.15);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #9ca3af;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

.footer-links,
.footer-legal {
    text-align: center;
}

.footer-links h4,
.footer-legal h4 {
    color: #f472b6;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.footer-legal a {
    color: #5c4033;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #f472b6;
}

.footer-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(251, 146, 60, 0.1);
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #fb923c;
}

.warning-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.warning-content {
    color: #78350f;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    color: #9ca3af;
    font-size: 13px;
}

.modal-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f472b6 0%, #fb7185 100%);
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: 50vh;
}

.modal-body h4 {
    color: #f472b6;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 15px;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 12px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #f472b6 0%, #fb7185 100%);
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.4);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-legal ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-warning {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
}

@media (max-width: 1023px) {
    .header-danmaku {
        width: calc(100% - 10px);
        max-width: 280px;
        margin-top: 6px;
    }

    .danmaku-item {
        font-size: 11px;
        padding: 5px 12px;
        margin-right: 20px;
    }

    .danmaku-avatar {
        width: 22px;
        height: 22px;
    }

    .danmaku-text {
        font-size: 11px;
    }
}