:root {
    --primary: #00ff88;
    --secondary: #00d4ff;
    --dark: #0a0e27;
    --darker: #050814;
    --card-bg: #131829;
    --text: #e4e4e7;
    --text-dim: #9ca3af;
    --border: #1f2937;
    --accent: #ff0080;
    --warning: #fbbf24;
    --success: #10b981;
}

/* Light Theme Variables */
body.light-theme {
    --primary: #00c46e;
    --secondary: #0099cc;
    --dark: #f8f9fa;
    --darker: #ffffff;
    --card-bg: #f3f4f6;
    --text: #1f2937;
    --text-dim: #6b7280;
    --border: #e5e7eb;
    --accent: #dc2626;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.light-theme .bg-grid {
    background-image: 
        linear-gradient(rgba(0, 196, 110, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 196, 110, 0.05) 1px, transparent 1px);
}

.bg-gradient {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient-1 {
    top: -200px;
    left: -200px;
    background: var(--primary);
    animation: float 20s ease-in-out infinite;
}

.bg-gradient-2 {
    bottom: -200px;
    right: -200px;
    background: var(--secondary);
    animation: float 25s ease-in-out infinite reverse;
}

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

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease;
}

.light-theme header {
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.logo-icon {
    font-size: 2rem;
    animation: spin 10s linear infinite;
}

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

.logo-text .logo-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Search Bar */
.search-container {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#searchInput {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 3rem;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

#searchInput:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.light-theme #searchInput:focus {
    box-shadow: 0 0 0 3px rgba(0, 196, 110, 0.15);
}

#searchInput::placeholder {
    color: var(--text-dim);
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--text-dim);
    pointer-events: none;
}

#clearSearch {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1.25rem;
    display: none;
    transition: color 0.2s ease;
}

#clearSearch:hover {
    color: var(--accent);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    color: var(--text);
}

.theme-toggle:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Desktop Only */
.desktop-only {
    display: block;
}

/* Mobile Floating Theme Toggle */
.mobile-floating {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    padding: 0;
}

.light-theme .mobile-floating {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* How to Use Section */
.how-to-use {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.light-theme .how-to-use {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.how-to-use h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.step {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.light-theme .step {
    background: rgba(0, 196, 110, 0.08);
    border: 1px solid rgba(0, 196, 110, 0.25);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.light-theme .step:hover {
    box-shadow: 0 10px 30px rgba(0, 196, 110, 0.2);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--darker);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Content Section */
.content-section {
    margin: 3rem 0;
}

.content-article {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.content-article h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.content-article h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.content-article p {
    margin-bottom: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.content-article ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-article li {
    margin-bottom: 0.5rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.content-article strong {
    color: var(--text);
}

/* Popular Codes */
.popular-codes, .code-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.popular-code-item, .code-type-item {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.light-theme .popular-code-item,
.light-theme .code-type-item {
    background: rgba(0, 196, 110, 0.08);
    border: 1px solid rgba(0, 196, 110, 0.25);
}

.popular-code-item:hover,
.code-type-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.15);
}

/* Tips List */
.tips-list {
    margin-top: 1.5rem;
}

.tip-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.light-theme .tip-item {
    background: rgba(0, 153, 204, 0.08);
    border: 1px solid rgba(0, 153, 204, 0.25);
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* FAQ Items */
.faq-item {
    padding: 1.5rem;
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.light-theme .faq-item {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Search Results Header */
.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.search-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    color: var(--primary);
}

.back-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--darker);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.back-btn:hover {
    background: var(--secondary);
    transform: translateX(-5px);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text-dim);
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--darker);
}

/* Cheat Code Cards */
.codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.code-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.code-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.code-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.2);
}

.light-theme .code-card:hover {
    box-shadow: 0 15px 40px rgba(0, 196, 110, 0.2);
}

.code-card:hover::before {
    opacity: 1;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.code-icon {
    font-size: 2rem;
    line-height: 1;
}

.favorite-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color:#6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.5;
}

.favorite-btn:hover,
.favorite-btn.active {
    opacity: 1;
    transform: scale(1.2);
}

.code-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.code-category {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.code-value-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.light-theme .code-value-container {
    background: rgba(0, 196, 110, 0.08);
    border: 2px solid rgba(0, 196, 110, 0.25);
}

.code-value {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.copy-btn {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--darker);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.copy-btn.copied {
    background: var(--success);
}

.code-description {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-dim);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* Footer */
footer {
    background: var(--darker);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--card-bg);
    border: 2px solid var(--success);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    animation: slideIn 0.3s ease;
    z-index: 10000;
}

.light-theme .toast {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.toast.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .search-container {
        width: 100%;
        max-width: 100%;
        order: 3;
    }
    
    .logo {
        order: 1;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-floating {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .codes-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .toast {
        bottom: 6rem;
        right: 1rem;
        left: 1rem;
    }
    
    .search-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .back-btn {
        width: 100%;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin-loader 0.8s linear infinite;
}

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

/* Legal Pages Styles */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.legal-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page .last-updated {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page .intro-text {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section h4 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.back-to-home {
    text-align: center;
    margin: 3rem 0;
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.light-theme .contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 196, 110, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.contact-card p {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--darker);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
    font-style: italic;
}

.contact-highlight {
    color: var(--primary);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--primary);
    color: var(--darker);
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: var(--darker);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.light-theme .form-group input:focus,
.light-theme .form-group select:focus,
.light-theme .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 196, 110, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--darker);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.form-note {
    margin-top: 1rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.form-notice {
    background: rgba(255, 184, 36, 0.1);
    border: 1px solid rgba(255, 184, 36, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.form-notice p {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-notice ul {
    margin-left: 1.5rem;
}

.form-notice li {
    color: var(--text-dim);
}

.expectations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.expectation-item {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.light-theme .expectation-item {
    background: rgba(0, 196, 110, 0.08);
    border: 1px solid rgba(0, 196, 110, 0.25);
}

.expectation-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.expectation-item p {
    color: var(--text-dim);
}

.quick-answers {
    margin-top: 1.5rem;
}

.qa-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.qa-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.qa-item p {
    color: var(--text-dim);
    margin-bottom: 0;
}