:root {
    --bg-primary: #000000;
    --bg-secondary: #050505;
    --bg-tertiary: #0a0a0a;
    --bg-card: rgba(10, 10, 10, 0.9);
    --accent-primary: #8b5cf6;
    --accent-secondary: #6366f1;
    --accent-glow: rgba(139, 92, 246, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(139, 92, 246, 0.2);
    --success: #22c55e;
    --error: #ef4444;
    --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    --gradient-3: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    animation: logoFloat 3s ease-in-out infinite, logoGlow 2s ease-in-out infinite alternate;
}

.logo-icon i {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(2deg); }
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 10px var(--accent-glow); }
    100% { box-shadow: 0 0 25px var(--accent-glow), 0 0 40px rgba(139, 92, 246, 0.2); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text .accent {
    color: var(--accent-primary);
}

.nav-links {
    display: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-auth .nav-link {
    display: none;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--gradient-1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

@media (min-width: 480px) {
    .nav-auth .nav-link {
        display: block;
    }
}

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 80px 16px 30px;
    position: relative;
    overflow: visible;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 12px;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-title .line {
    display: block;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    align-items: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.hero-visual {
    display: none;
}

.runtime-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    margin: 30px auto;
    max-width: 600px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.runtime-bar span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.runtime-bar img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.runtime-bar img:hover {
    transform: scale(1.2);
}

@media (max-width: 480px) {
    .runtime-bar {
        gap: 10px;
        padding: 10px 16px;
        flex-wrap: wrap;
    }
    .runtime-bar span {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    .runtime-bar img {
        width: 24px;
        height: 24px;
    }
}

.features {
    padding: 40px 0 80px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing {
    padding: 60px 0 40px;
    background: var(--gradient-3);
}

.pricing-card-single {
    max-width: 500px;
    margin: 0 auto;
    background: #000000;
    border: 2px solid var(--accent-primary);
    border-radius: 24px;
    padding: 32px 24px;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-1);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 8px;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-price .currency {
    font-size: 20px;
    color: var(--text-secondary);
}

.pricing-price .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-primary);
}

.pricing-price .period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 16px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.pricing-feature i {
    color: var(--success);
    font-size: 14px;
}

.config-section {
    margin-bottom: 24px;
}

.config-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.server-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.server-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.server-type-card:hover,
.server-type-card.active {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent-primary);
}

.server-type-card i {
    font-size: 24px;
    color: var(--text-secondary);
}

.server-type-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.server-type-card.active i {
    color: var(--accent-primary);
}

.server-type-card span {
    font-size: 11px;
    font-weight: 500;
}

.duration-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.duration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.duration-card:hover,
.duration-card.active {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent-primary);
}

.duration-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.duration-label {
    font-size: 12px;
    color: var(--text-muted);
}

.duration-price {
    font-size: 11px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-top: 4px;
}

.pricing-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.total-label {
    font-size: 16px;
    font-weight: 600;
}

.total-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
}

.faq {
    padding: 40px 0 60px;
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    gap: 12px;
}

.faq-question span {
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.faq-question i {
    color: var(--accent-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer {
    padding: 60px 0 30px;
    background: #000000;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.sea-wave-text {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #1dd1a1, #5f27cd, #ff9ff3, #00d2d3, #ff6b6b);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: seaWave 5s ease-in-out infinite;
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-primary);
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a i {
    font-size: 16px;
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-contact a {
        justify-content: center;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 20px;
    animation: modalSlideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 16px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-group label i {
    color: var(--accent-primary);
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent-primary);
}

.form-hint {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.order-summary {
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.order-summary h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    padding-top: 12px;
    margin-top: 6px;
    border-top: 2px solid var(--border-color);
    border-bottom: none;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.summary-row.total span:last-child {
    color: var(--accent-primary);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.loading-overlay.active {
    display: flex;
}

.loader {
    text-align: center;
}

.loader-ring {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-tertiary);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.loader-text {
    font-size: 14px;
    color: var(--text-secondary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (min-width: 480px) {
    .hero-title { font-size: 42px; }
    .hero-cta { flex-direction: row; }
    .server-types { grid-template-columns: repeat(6, 1fr); }
    .duration-options { grid-template-columns: repeat(4, 1fr); }
    .pricing-features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .hero-title { font-size: 52px; }
    .hero-subtitle { font-size: 17px; }
    .section-title { font-size: 36px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pricing-card-single { padding: 40px 32px; }
    .footer-content { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 992px) {
    .hero { padding: 120px 20px 80px; }
    .hero-content { 
        text-align: left; 
        max-width: 600px;
        margin-left: 10%;
    }
    .hero-cta { justify-content: flex-start; }
    .hero-stats { justify-content: flex-start; }
    .hero-title { font-size: 64px; }
    .hero-visual { display: block; position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 400px; height: 400px; }
    .floating-card { position: absolute; display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; backdrop-filter: blur(10px); font-weight: 500; font-size: 14px; animation: float 6s ease-in-out infinite; }
    .floating-card i { font-size: 20px; }
    .card-1 { top: 10%; left: 20%; animation-delay: 0s; }
    .card-1 i { color: #68a063; }
    .card-2 { top: 30%; right: 10%; animation-delay: 1s; }
    .card-2 i { color: #3776ab; }
    .card-3 { bottom: 30%; left: 10%; animation-delay: 2s; }
    .card-3 i { color: #f5a623; }
    .card-4 { bottom: 10%; right: 20%; animation-delay: 3s; }
    .card-4 i { color: #ed8b00; }
    .server-illustration { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    .server-rack { display: flex; flex-direction: column; gap: 6px; padding: 16px; background: var(--bg-secondary); border-radius: 14px; border: 1px solid var(--border-color); }
    .server-unit { width: 160px; height: 24px; background: var(--bg-tertiary); border-radius: 5px; position: relative; }
    .server-unit::before { content: ''; position: absolute; left: 8px; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--text-muted); border-radius: 50%; }
    .server-unit.active::before { background: var(--success); box-shadow: 0 0 8px var(--success); animation: pulse 2s infinite; }
    @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .section-title { font-size: 44px; }
}

.file-upload-area {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--accent-primary);
    background: rgba(139, 92, 246, 0.05);
}

.file-upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content i {
    font-size: 32px;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.file-upload-content p {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.file-upload-content span {
    font-size: 12px;
    color: var(--text-muted);
}

.file-list {
    margin-top: 12px;
    text-align: left;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 13px;
}

.file-item i {
    color: var(--accent-primary);
}

.file-item .file-size {
    color: var(--text-muted);
    margin-left: auto;
}

#contactModal .modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

#contactModal textarea {
    resize: vertical;
    min-height: 100px;
}
