/* ==================== Hello Kitty 主题 - VortexMC ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF69B4;
    --primary-dark: #E05599;
    --secondary: #FF1493;
    --accent: #FFB6C1;
    --bg-dark: #FFF0F5;
    --bg-card: rgba(255, 182, 193, 0.15);
    --bg-card-hover: rgba(255, 182, 193, 0.3);
    --text-primary: #4A4A4A;
    --text-secondary: #888888;
    --border-color: rgba(255, 105, 180, 0.3);
    --glow: 0 0 20px rgba(255, 105, 180, 0.4);
    --admin-color: #FF6B6B;
    --card-bg: rgba(255, 255, 255, 0.75);
    --nav-bg: rgba(255, 240, 245, 0.92);
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==================== 漂浮爱心/蝴蝶结背景 ==================== */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars {
    background:
        radial-gradient(3px 3px at 30px 50px, #FFB6C1, transparent),
        radial-gradient(2px 2px at 80px 120px, #FF69B4, transparent),
        radial-gradient(3px 3px at 150px 30px, #FFD1DC, transparent),
        radial-gradient(2px 2px at 200px 160px, #FF69B4, transparent),
        radial-gradient(3px 3px at 280px 90px, #FFB6C1, transparent),
        radial-gradient(2px 2px at 350px 200px, #FFD1DC, transparent);
    background-repeat: repeat;
    background-size: 400px 400px;
    animation: floatUp 80s linear infinite;
    opacity: 0.5;
}

.stars2 {
    background:
        radial-gradient(4px 4px at 60px 80px, #FF69B4, transparent),
        radial-gradient(3px 3px at 180px 140px, #FFB6C1, transparent),
        radial-gradient(4px 4px at 300px 60px, #FF1493, transparent);
    background-repeat: repeat;
    background-size: 450px 450px;
    animation: floatUp 120s linear infinite;
    opacity: 0.3;
}

.stars3 {
    background:
        radial-gradient(5px 5px at 100px 180px, rgba(255,182,193,0.6), transparent),
        radial-gradient(3px 3px at 250px 100px, rgba(255,105,180,0.4), transparent);
    background-repeat: repeat;
    background-size: 500px 500px;
    animation: floatUp 160s linear infinite;
    opacity: 0.35;
}

@keyframes floatUp {
    from { transform: translateY(0); }
    to { transform: translateY(-800px); }
}

/* ==================== 导航栏 ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(255, 105, 180, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    color: var(--primary);
    text-shadow: var(--glow);
    animation: pulse 2s ease-in-out infinite;
    font-size: 1.6rem;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: var(--glow);
    border-radius: 2px;
}

.nav-user, .nav-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-name {
    color: var(--primary);
    font-weight: 600;
}

.admin-badge {
    background: linear-gradient(135deg, #FF6B8A, #FF1493);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    animation: glowBadge 2s ease-in-out infinite;
}

.admin-label {
    background: linear-gradient(135deg, #FF6B8A, #FF1493);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    margin-left: 0.5rem;
}

@keyframes glowBadge {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 105, 180, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 105, 180, 0.8); }
}

/* ==================== 按钮样式 ==================== */
.btn-login, .btn-register, .btn-logout {
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-login:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--glow);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-logout {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.btn-logout:hover {
    background: #ff6b6b;
    color: white;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-icon {
    font-size: 0.8rem;
}

/* ==================== 主要内容 ==================== */
.main-content {
    padding-top: 80px;
}

/* ==================== 英雄区域 ==================== */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    color: var(--primary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.gradient-text {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary), #FF6B8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
}

.sub-title {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 轨道动画 */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.planet {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(255, 105, 180, 0.5),
        inset -20px -20px 40px rgba(0, 0, 0, 0.1);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 50%;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation: orbit 10s linear infinite;
}

.orbit-2 {
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    animation: orbit 15s linear infinite reverse;
}

.orbit-3 {
    width: 360px;
    height: 360px;
    margin: -180px 0 0 -180px;
    animation: orbit 20s linear infinite;
}

.satellite {
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==================== 公告区域 ==================== */
.announcements-section {
    padding: 4rem;
    background: linear-gradient(180deg, transparent, rgba(255, 105, 180, 0.04));
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.section-title .icon {
    color: var(--primary);
}

.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.announcement-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.announcement-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(255, 105, 180, 0.15);
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.announcement-title {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
}

.announcement-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.announcement-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== 特性区域 ==================== */
.features {
    padding: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(255, 20, 147, 0.15));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== 产品展示 ==================== */
.showcase {
    padding: 4rem;
    background: linear-gradient(180deg, rgba(255, 20, 147, 0.03), transparent);
}

.showcase-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-large {
    min-height: 350px;
}

.showcase-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.9), rgba(255, 228, 235, 0.95));
    padding: 2rem;
}

.showcase-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(74, 74, 74, 0.9));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-overlay h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.showcase-overlay p {
    color: #ddd;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .showcase-large {
        grid-row: span 1;
        min-height: 250px;
    }
    .showcase {
        padding: 2rem 1rem;
    }
}

/* ==================== 使用说明 ==================== */
.how-to-use {
    padding: 4rem;
    background: linear-gradient(180deg, transparent, rgba(255, 105, 180, 0.04));
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 200px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step h3 {
    margin: 1rem 0 0.5rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* ==================== 页脚 ==================== */
.footer {
    padding: 2rem 4rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
    background: var(--nav-bg);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== 模态框 ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 74, 74, 0.5);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    animation: modalIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.modal-large {
    max-width: 600px;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--primary);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #FFF5F8;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.2);
    background: #fff;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.form-switch {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.form-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.form-switch a:hover {
    text-decoration: underline;
}

/* ==================== Toast提示 ==================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #fff;
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 12px;
    color: var(--text-primary);
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 105, 180, 0.15);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    border-color: #10b981;
    color: #10b981;
}

.toast.error {
    border-color: #ef4444;
    color: #ef4444;
}

/* ==================== 双客户端选择卡片 ==================== */
.client-selector {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 2rem;
    flex-wrap: wrap;
}

.client-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    width: 380px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}

.client-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(255, 105, 180, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.client-card:hover::before {
    opacity: 1;
}

.client-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.client-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.client-card .btn-enter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.client-card .btn-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* Adam 卡片特殊配色 */
.client-card.adam-card {
    --card-accent: #6C5CE7;
}

.client-card.adam-card h2 {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-card.adam-card::before {
    background: linear-gradient(90deg, #6C5CE7, #A29BFE);
}

.client-card.adam-card .btn-enter {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
}

.client-card.adam-card .btn-enter:hover {
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .gradient-text {
        font-size: 3rem;
    }
    .orbit-container {
        width: 300px;
        height: 300px;
    }
    .client-selector {
        flex-direction: column;
        gap: 2rem;
    }
    .client-card {
        width: 90%;
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
    }
    .nav-brand {
        font-size: 1.2rem;
    }
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        padding-top: 0.8rem;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    .nav-link {
        font-size: 0.85rem;
    }
    .nav-user, .nav-user-info {
        gap: 0.5rem;
    }
    .btn-login, .btn-register, .btn-logout {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    .hero {
        padding: 1rem;
        margin-top: 100px;
    }
    .gradient-text {
        font-size: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .orbit-container {
        width: 200px;
        height: 200px;
        margin: 1rem auto;
    }
    .features, .how-to-use, .announcements-section {
        padding: 2rem 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-card {
        padding: 1.2rem;
    }
    .steps-container {
        flex-direction: column;
    }
    .step-line {
        width: 2px;
        height: 30px;
    }
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 10px;
        padding: 1.2rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-header h2 {
        font-size: 1.2rem;
    }
    .form-group label {
        font-size: 0.9rem;
    }
    .form-group input {
        padding: 0.7rem;
        font-size: 1rem;
    }
    .btn-submit {
        width: 100%;
        padding: 0.8rem;
    }
    .announcement-card {
        padding: 1rem;
    }
    .announcement-title {
        font-size: 1rem;
    }
    .toast {
        width: 90%;
        left: 5%;
        transform: translateX(0) translateY(100px);
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    .toast.show {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0.8rem;
    }
    .nav-brand {
        font-size: 1rem;
    }
    .logo-icon {
        font-size: 1.2rem;
    }
    .nav-links {
        gap: 0.5rem;
    }
    .nav-link {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    .admin-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    .gradient-text {
        font-size: 1.5rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .orbit-container {
        display: none;
    }
}
