/* Pseudosophy - Vapor Sunset Theme */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #FF6B6B;
    --color-secondary: #A855F7;
    --color-background: #1a1a2e;
    --color-surface: #16213e;
    --color-surface-light: #1f2b4d;
    --color-text: #ffffff;
    --color-text-muted: #a0a0b0;
    --color-accent: #FF6B6B;
    --color-glow: rgba(255, 107, 107, 0.3);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Gradient background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top right, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    padding: 2.5rem 1rem;
    position: relative;
}

header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.tagline {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Main content */
main {
    background: var(--color-surface);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Hero section */
.hero {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.hero h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto;
}

/* Game Forms */
.game-forms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 600px) {
    .game-forms {
        flex-direction: row;
        align-items: stretch;
    }
}

.form-card {
    flex: 1;
    background: var(--color-surface-light);
    border: 1px solid rgba(255, 107, 107, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px 12px 0 0;
}

.form-card h3 {
    font-family: var(--font-display);
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

@media (min-width: 600px) {
    .form-divider {
        padding: 0 1rem;
    }
}

/* Info sections */
.info h3 {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.info p {
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.info ul {
    list-style: none;
}

.info ul li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    position: relative;
}

.info ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

footer a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

footer a:hover {
    opacity: 0.8;
}

/* Ad Container Styles */
.ad-container {
    background: var(--color-surface-light);
    border: 1px dashed rgba(255, 107, 107, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-container.ad-banner {
    min-height: 90px;
}

.ad-container.ad-rectangle {
    min-height: 250px;
}

.ad-placeholder {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    opacity: 0.6;
}

.ad-container ins.adsbygoogle {
    display: block;
}

/* =========================
   Forms & Inputs
   ========================= */

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-background);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.form-group .hint {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* =========================
   Buttons
   ========================= */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

.btn-secondary {
    background: var(--color-surface-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

.btn-copy {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 0.5rem;
    font-weight: 500;
}

/* =========================
   Error Messages
   ========================= */

.error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* =========================
   Lobby Page
   ========================= */

.lobby-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.game-code-display .label {
    color: var(--color-text-muted);
}

.game-code-display .code {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.share-hint {
    margin-top: 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.players-section {
    margin-bottom: 2rem;
}

.players-section h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.player-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.player-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-surface-light);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.player-item.is-you {
    border: 1px solid var(--color-primary);
}

.host-badge {
    background: var(--color-secondary);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.you-badge {
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Mood Selection */
.mood-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--color-surface);
    border-radius: 16px;
}

.mood-section h3 {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.mood-section .hint {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.75rem;
}

.mood-card {
    background: var(--color-surface-light);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.mood-card.selected {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(168, 85, 247, 0.2));
}

.mood-card .emoji {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.25rem;
}

.mood-card .name {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: capitalize;
}

/* Mood Display (after selection) */
.mood-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-surface);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.mood-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.mood-value {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mood badge in header during gameplay */
.mood-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(168, 85, 247, 0.2));
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    .mood-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }

    .mood-card {
        padding: 0.5rem;
    }

    .mood-card .emoji {
        font-size: 1.5rem;
    }

    .mood-card .name {
        font-size: 0.6rem;
    }
}

.host-controls,
.waiting-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.host-controls h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.waiting-message {
    text-align: center;
    padding: 2rem;
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

.spinner.large {
    width: 60px;
    height: 60px;
    border-width: 4px;
}

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

/* =========================
   Game Page
   ========================= */

.your-turn-section,
.waiting-turn-section,
.generating-section {
    text-align: center;
}

.your-turn-section h2,
.waiting-turn-section h2,
.generating-section h2 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.instruction {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.image-container {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface-light);
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.waiting-content,
.generating-content {
    padding: 2rem;
}

.waiting-text {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.player-order {
    background: var(--color-surface-light);
    border-radius: 12px;
    padding: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.player-order h4 {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

#turn-order-list {
    list-style: none;
}

.turn-item {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
}

.turn-item.current {
    background: rgba(255, 107, 107, 0.15);
}

.turn-item.done {
    opacity: 0.5;
}

.current-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
}

.done-badge {
    color: var(--color-text-muted);
    font-size: 0.7rem;
}

/* =========================
   Reveal Page
   ========================= */

.reveal-intro {
    text-align: center;
    padding: 2rem;
}

.reveal-intro h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.reveal-intro p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.reveal-intro .btn {
    margin: 0.5rem;
}

.reveal-content {
    padding: 1rem 0;
}

.reveal-chain {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reveal-step {
    background: var(--color-surface-light);
    border-radius: 12px;
    overflow: hidden;
    animation: fadeInUp 0.4s ease;
}

.reveal-step.new {
    animation: slideIn 0.5s ease;
}

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

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

.step-header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(168, 85, 247, 0.3));
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-display);
}

.reveal-step.prompt .step-header { background: rgba(255, 107, 107, 0.25); }
.reveal-step.phrase .step-header { background: rgba(168, 85, 247, 0.25); }
.reveal-step.guess .step-header { background: rgba(99, 102, 241, 0.25); }

.step-body {
    padding: 1.25rem;
}

.prompt-text,
.phrase-text,
.guess-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.6;
}

.step-meta {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.reveal-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.reveal-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-surface-light);
    border-radius: 8px;
}

.step-indicator {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    min-width: 60px;
    text-align: center;
}

.game-complete {
    text-align: center;
    padding: 2rem;
}

.game-complete h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.drift-summary {
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.final-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================
   Guide Pages
   ========================= */

.guide-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.guide-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.step {
    margin-bottom: 1.75rem;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    flex-shrink: 0;
}

.step p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    padding-left: 1rem;
}

.step ul {
    list-style: none;
    padding-left: 1rem;
}

.step ul li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.step ul li::before {
    content: '~';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 600;
}

.wisdom-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    margin-top: 1rem;
}

/* =========================
   Final Reveal / Wisdom Section
   ========================= */

.final-wisdom {
    text-align: center;
    padding: 2rem 1rem;
}

.final-wisdom h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.journey-summary {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.final-image-container {
    margin: 1.5rem auto;
    max-width: 400px;
}

.final-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3);
}

.final-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-surface-light);
    border-left: 4px solid var(--color-secondary);
    padding: 1.5rem;
    margin: 1.5rem auto;
    max-width: 500px;
    border-radius: 0 12px 12px 0;
    text-align: left;
}

.final-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--color-secondary);
    opacity: 0.3;
    position: absolute;
    margin-left: -0.5rem;
    margin-top: -1rem;
}

.expanded-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    font-style: italic;
}

/* Expansion display (shows AI expansion of player's guess) */
.expansion-display {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    text-align: center;
}

.expansion-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.expansion-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    font-style: italic;
}

/* Voting panel */
.voting-panel {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-surface-light);
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.voting-panel h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    background: var(--color-surface-light);
    color: var(--color-text-muted);
}

.badge.success {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

/* Timer bar */
.timer-container {
    position: relative;
    width: 100%;
    height: 28px;
    background: var(--color-surface-light);
    border-radius: 14px;
    margin: 1rem 0;
    overflow: hidden;
}

.timer-bar {
    height: 100%;
    border-radius: 14px;
    transition: width 0.3s ease, background 0.5s ease;
}

.timer-green {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.timer-yellow {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.timer-red {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.timer-pulse {
    animation: timer-pulse 0.5s ease-in-out infinite;
}

@keyframes timer-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Loading phrase animation */
.loading-phrase {
    transition: opacity 0.2s ease;
    min-height: 1.5em;
}

/* Waiting panel */
.waiting-panel {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--color-surface-light);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.waiting-panel h4 {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* =========================
   Responsive Design
   ========================= */

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    header {
        padding: 2rem 0.5rem;
    }

    main {
        padding: 1.5rem 1rem;
    }

    .hero {
        padding: 1rem 0;
    }
}

@media (max-width: 400px) {
    header h1 {
        font-size: 1.75rem;
    }

    main {
        padding: 1rem;
        border-radius: 12px;
    }
}
