/*
Theme Name: Flavor Starter
Theme URI: https://deepcoin.vsquaremall.co.kr
Description: Custom theme for Deepcoin landing page with Anti-Gravity floating effects
Version: 1.0
Author: Custom
Text Domain: flavor-starter
*/

/* Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #10B981;
    --primary-dark: #059669;
    --primary-light: #34D399;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light: #9ca3af;
    --bg-dark: #0a0a0a;
    --bg-light: #f3f4f6;
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-dark: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* SVG Pattern Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

/* Fixed Solid Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.site-logo {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 100px;
    position: relative;
    background: var(--gradient-dark);
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.hero-title {
    font-size: clamp(52px, 9vw, 88px);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #10B981 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    letter-spacing: -1px;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

.hero-subtitle {
    font-size: clamp(22px, 3.5vw, 32px);
    color: #fff;
    margin-bottom: 18px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Round Gradient Button */
.btn-primary {
    display: inline-block;
    padding: 20px 50px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.45);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-block;
    padding: 20px 50px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

/* About Section */
.about-section {
    padding: 120px 20px;
    background: #0a0a0a;
    position: relative;
}

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

.section-title {
    text-align: center;
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* How It Works - Steps */
.steps-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

/* Features Section - 6 Column Grid */
.features-section {
    padding: 120px 20px;
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Image Overlay Card */
.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #0d1117 0%, #0a0a0a 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 45px 40px;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.12);
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-card .benefit-stat {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

/* Trust Badges */
.trust-section {
    padding: 100px 20px;
    background: #0a0a0a;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 40px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-label {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-content {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.testimonial-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 120px 20px;
    background: #0a0a0a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA Section */
.cta-section {
    padding: 120px 20px;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: #050505;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: var(--text-gray);
    font-size: 14px;
}

/* Anti-Gravity Floating Animation */
@keyframes antiGravityFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-18px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-22px) rotate(0.5deg);
    }
}

.floating {
    animation: antiGravityFloat 6s ease-in-out infinite;
    will-change: transform;
}

.floating:nth-child(1) { animation-delay: 0s; animation-duration: 5s; }
.floating:nth-child(2) { animation-delay: 0.5s; animation-duration: 6s; }
.floating:nth-child(3) { animation-delay: 1s; animation-duration: 7s; }
.floating:nth-child(4) { animation-delay: 1.5s; animation-duration: 5.5s; }
.floating:nth-child(5) { animation-delay: 2s; animation-duration: 6.5s; }
.floating:nth-child(6) { animation-delay: 2.5s; animation-duration: 5s; }

/* Floating Bubbles */
.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
    animation: bubbleFloat 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bubbleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    33% { transform: translate(35px, -50px) scale(1.1); opacity: 0.6; }
    66% { transform: translate(-25px, -90px) scale(0.9); opacity: 0.35; }
}

.bubble-1 { width: 350px; height: 350px; top: 8%; left: 3%; animation-delay: 0s; }
.bubble-2 { width: 250px; height: 250px; top: 55%; right: 8%; animation-delay: 2s; }
.bubble-3 { width: 180px; height: 180px; bottom: 15%; left: 18%; animation-delay: 4s; }
.bubble-4 { width: 120px; height: 120px; top: 30%; right: 25%; animation-delay: 3s; }

/* Page Content */
.page-content {
    padding-top: 100px;
    min-height: 100vh;
    background: #0a0a0a;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-wrapper h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-wrapper h2 {
    font-size: 28px;
    color: #fff;
    margin: 40px 0 20px;
    font-weight: 600;
}

.content-wrapper p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.content-wrapper a {
    color: var(--primary-color);
}

.content-wrapper ul, .content-wrapper ol {
    color: var(--text-light);
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

/* Blog Cards */
.blog-section {
    padding: 120px 20px;
    background: #0a0a0a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.blog-card-content {
    padding: 30px;
}

.blog-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-card h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-light);
}

/* Single Post */
.single-post-content {
    padding-top: 120px;
    min-height: 100vh;
    background: #0a0a0a;
}

.post-header {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.post-title {
    font-size: clamp(32px, 5vw, 48px);
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.post-meta {
    color: var(--text-light);
    font-size: 14px;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.post-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.post-content h2 {
    color: #fff;
    font-size: 28px;
    margin: 50px 0 25px;
    font-weight: 600;
}

.post-content h3 {
    color: #fff;
    font-size: 22px;
    margin: 40px 0 20px;
    font-weight: 600;
}

.post-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.post-content a:hover {
    border-bottom-color: var(--primary-color);
}

.post-content ul, .post-content ol {
    color: rgba(255, 255, 255, 0.85);
    margin: 20px 0 25px 25px;
}

.post-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    background: var(--glass-bg);
    border-radius: 0 12px 12px 0;
}

.post-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
}

/* CTA Box in Posts */
.cta-box {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-box .btn-white {
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .steps-grid,
    .features-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid,
    .features-grid,
    .benefits-grid,
    .testimonials-grid,
    .trust-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        padding: 8px 20px;
        font-size: 13px;
    }

    .hero-section {
        padding: 120px 20px 80px;
    }

    .about-section,
    .steps-section,
    .features-section,
    .benefits-section,
    .trust-section,
    .testimonials-section,
    .faq-section,
    .cta-section {
        padding: 80px 20px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-white {
        padding: 16px 35px;
        font-size: 16px;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .floating,
    .floating-bubble,
    .btn-primary::before,
    .cta-section::before {
        animation: none;
    }
}

/* Contact Form 7 Styling */
.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
}

.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.wpcf7-form input[type="submit"] {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.wpcf7-form label {
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}
