/* =============================================
   BOMAT - Bodo Amat Generator
   Main Stylesheet
   ============================================= */

/* =============================================
   CSS Variables
   ============================================= */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #151520;
    --accent-yellow: #f7e547;
    --accent-pink: #ff6b9d;
    --accent-blue: #4ecdc4;
    --accent-orange: #ff9f43;
    --accent-purple: #a855f7;
    --accent-red: #ff6b6b;
    --accent-green: #4ade80;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
}

/* =============================================
   Reset & Base
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =============================================
   Background Decoration
   ============================================= */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.bg-blob:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--accent-pink);
    top: -200px;
    right: -200px;
}

.bg-blob:nth-child(2) {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    bottom: -200px;
    left: -200px;
    animation-delay: -5s;
}

.bg-blob:nth-child(3) {
    width: 400px;
    height: 400px;
    background: var(--accent-yellow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(-50px, -30px) scale(1.05); }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* =============================================
   Container
   ============================================= */
.container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Wider container for static pages */
.container.wide {
    max-width: 800px;
}

/* =============================================
   Header
   ============================================= */
header {
    text-align: center;
    margin-bottom: 40px;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    font-family: 'Dela Gothic One', cursive;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    text-decoration: none;
    display: inline-block;
}

.logo:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Smaller logo for static pages */
.logo.small {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 8px;
}

.tagline span { 
    color: var(--accent-blue); 
}

.page-title {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(78, 205, 196, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-purple);
}

.ai-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--accent-purple);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* =============================================
   Usage Indicator
   ============================================= */
.usage-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
}

.usage-dots { 
    display: flex; 
    gap: 6px; 
}

.usage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-yellow);
    transition: all 0.3s ease;
}

.usage-dot.used { 
    background: rgba(255,255,255,0.2); 
}

.usage-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.usage-text strong { 
    color: var(--accent-yellow); 
}

/* =============================================
   Main Card
   ============================================= */
.main-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    position: relative;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   Input Section
   ============================================= */
.input-section { 
    margin-bottom: 24px; 
}

.input-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-wrapper { 
    position: relative; 
}

.worry-input {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    resize: none;
    min-height: 120px;
    transition: all 0.3s ease;
}

.worry-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 30px rgba(247, 229, 71, 0.1);
}

.worry-input::placeholder { 
    color: var(--text-secondary); 
}

.worry-input:disabled { 
    opacity: 0.5; 
    cursor: not-allowed; 
}

.char-count {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* =============================================
   Tone Buttons
   ============================================= */
.tone-section { 
    margin-bottom: 24px; 
}

.tone-options { 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
}

.tone-btn {
    padding: 10px 18px;
    border-radius: 100px;
    border: 2px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tone-btn:hover:not(:disabled) {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-primary);
}

.tone-btn:disabled { 
    opacity: 0.5; 
    cursor: not-allowed; 
}

.tone-btn.active {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--bg-primary);
}

.tone-btn.active[data-tone="savage"] {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
}

.tone-btn.active[data-tone="wise"] {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* =============================================
   Generate Button
   ============================================= */
.generate-btn {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    color: var(--bg-primary);
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.generate-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(247, 229, 71, 0.3);
}

.generate-btn:disabled { 
    opacity: 0.5; 
    cursor: not-allowed; 
}

.generate-btn .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer { 
    100% { left: 100%; } 
}

/* =============================================
   Limit Overlay
   ============================================= */
.limit-overlay {
    display: none;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 15, 0.95);
    border-radius: 24px;
    z-index: 10;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

.limit-overlay.show { 
    display: flex; 
}

.limit-emoji { 
    font-size: 4rem; 
    margin-bottom: 16px; 
}

.limit-title {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 12px;
}

.limit-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.limit-cta {
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 12px;
}

.limit-timer {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.limit-timer strong { 
    color: var(--accent-blue); 
}

/* =============================================
   Result Section
   ============================================= */
.result-section {
    margin-top: 32px;
    display: none;
    animation: popIn 0.5s ease-out;
}

.result-section.show { 
    display: block; 
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.8); }
    50% { transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

.result-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-pink), var(--accent-blue));
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.result-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(247, 229, 71, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-yellow);
}

.result-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-purple);
}

.result-worry {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.result-bomat {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-reason {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.result-emoji {
    font-size: 3rem;
    margin-top: 16px;
}

/* =============================================
   Feedback Section
   ============================================= */
.feedback-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.feedback-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feedback-buttons {
    display: flex;
    gap: 8px;
}

.feedback-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.feedback-btn:hover:not(:disabled) {
    transform: scale(1.1);
}

.feedback-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.feedback-btn.up:hover:not(:disabled),
.feedback-btn.up.selected {
    background: rgba(74, 222, 128, 0.2);
    border-color: var(--accent-green);
}

.feedback-btn.down:hover:not(:disabled),
.feedback-btn.down.selected {
    background: rgba(255, 107, 107, 0.2);
    border-color: var(--accent-red);
}

.feedback-btn.selected {
    transform: scale(1.1);
}

.feedback-thanks {
    display: none;
    font-size: 0.85rem;
    color: var(--accent-green);
    animation: fadeIn 0.3s ease;
}

.feedback-thanks.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =============================================
   Action Buttons
   ============================================= */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.action-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.action-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.action-btn.primary {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--bg-primary);
}

/* =============================================
   Loading
   ============================================= */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
}

.loading.show { 
    display: block; 
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

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

.loading-text { 
    color: var(--text-secondary); 
}

.loading-subtext {
    color: var(--accent-purple);
    font-size: 0.8rem;
    margin-top: 8px;
}

/* =============================================
   Examples Section
   ============================================= */
.examples-section { 
    margin-top: 40px; 
}

.section-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-align: center;
}

.examples-grid { 
    display: grid; 
    gap: 12px; 
}

.example-chip {
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.example-chip:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    transform: translateX(5px);
}

.example-chip.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.example-chip.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    color: transparent;
    pointer-events: none;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =============================================
   Footer
   ============================================= */
footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.disclaimer {
    margin-top: 16px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* =============================================
   Toast Notification
   ============================================= */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--accent-blue);
    color: var(--bg-primary);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.toast.show { 
    transform: translateX(-50%) translateY(0); 
}

.toast.error { 
    background: var(--accent-red); 
    color: white; 
}

/* =============================================
   Init Overlay
   ============================================= */
.init-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-primary);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.init-overlay.hide { 
    opacity: 0; 
    pointer-events: none; 
}

.init-logo {
    font-family: 'Dela Gothic One', cursive;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.init-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--accent-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* =============================================
   Download Card (Hidden - for export)
   ============================================= */
.download-card-wrapper {
    position: fixed;
    left: -9999px;
    top: 0;
    z-index: -1;
    padding: 24px;
    background: #ffffff;
}

.download-card {
    width: 540px;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f7e547, #ff6b9d, #4ecdc4);
}

.download-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.download-card-logo {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #f7e547, #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-card-badge {
    padding: 6px 14px;
    background: rgba(247, 229, 71, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f7e547;
}

.download-card-worry {
    font-size: 1rem;
    color: #a0a0b0;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.5;
}

.download-card-bomat {
    font-family: 'Dela Gothic One', cursive;
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #f7e547, #ff9f43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-card-response {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-card-emoji {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.download-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.download-card-url {
    font-size: 0.85rem;
    color: #a0a0b0;
}

.download-card-ai {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #a855f7;
}

/* =============================================
   Static Pages (Terms, Privacy)
   ============================================= */
.content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.content h2 {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    margin-top: 32px;
    margin-bottom: 16px;
}

.content h2:first-of-type {
    margin-top: 0;
}

.content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.content ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

.content li {
    margin-bottom: 8px;
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.data-table th,
.data-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.data-table th {
    color: var(--text-primary);
    font-weight: 600;
    background: rgba(255,255,255,0.05);
}

.data-table td {
    color: var(--text-secondary);
}

.highlight-box {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--accent-blue);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 480px) {
    .logo { 
        font-size: 3rem; 
    }
    
    .logo.small {
        font-size: 2rem;
    }
    
    .result-bomat { 
        font-size: 1.5rem; 
    }
    
    .action-buttons { 
        flex-direction: column; 
    }
    
    .feedback-section { 
        flex-direction: column; 
        gap: 12px; 
    }

    .content {
        padding: 24px;
    }

    .data-table th,
    .data-table td {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}