/* Landing Page Specific Styles */

/* Floating animation for icons */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(14, 165, 233, 0.4);
    }
}

.split-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.split-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
    z-index: 1;
    overflow: hidden;
}

/* Premium Gradient Backgrounds */
.educational-section {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 50%, #ffebbd 100%);
    border-right: 1px solid rgba(197, 157, 70, 0.15);
}

.tool-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

/* Content Styling */
.content-wrapper {
    text-align: center;
    max-width: 500px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 4s ease-in-out infinite;
}

.educational-section .icon-wrapper {
    color: #C59D46;
    background: linear-gradient(145deg, #ffffff 0%, #fff8e6 100%);
}

.tool-section .icon-wrapper {
    color: #1e293b;
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
}

.split-section h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.split-section p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 400px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-link:hover::before {
    left: 100%;
}

.educational-section .cta-link {
    background: linear-gradient(135deg, #C59D46 0%, #A88439 100%);
    color: white;
    box-shadow:
        0 8px 30px rgba(197, 157, 70, 0.35),
        0 4px 12px rgba(197, 157, 70, 0.2);
}

.tool-section .cta-link {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.35),
        0 4px 12px rgba(15, 23, 42, 0.2);
}

/* Hover Effects */
.split-section:hover {
    flex: 1.3;
}

.educational-section:hover {
    background: linear-gradient(135deg, #fff8e6 0%, #ffebbd 50%, #ffd873 100%);
}

.tool-section:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
}

.split-section:hover .content-wrapper {
    transform: translateY(-15px);
}

.split-section:hover .icon-wrapper {
    transform: scale(1.15) translateY(-5px);
    animation: none;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.split-section:hover h2 {
    letter-spacing: 0;
}

.educational-section:hover .cta-link {
    background: linear-gradient(135deg, #A88439 0%, #8B6D2F 100%);
    padding: 16px 40px;
    box-shadow:
        0 12px 40px rgba(197, 157, 70, 0.45),
        0 6px 16px rgba(197, 157, 70, 0.25);
}

.tool-section:hover .cta-link {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    padding: 16px 40px;
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.45),
        0 6px 16px rgba(15, 23, 42, 0.25);
}

/* Background Patterns */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.educational-section .bg-pattern {
    background-image:
        radial-gradient(circle at 10% 20%, rgba(197, 157, 70, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(197, 157, 70, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(197, 157, 70, 0.04) 0%, transparent 50%);
}

.tool-section .bg-pattern {
    background-image:
        radial-gradient(circle at 90% 20%, rgba(15, 23, 42, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(15, 23, 42, 0.03) 0%, transparent 30%);
}

.split-section:hover .bg-pattern {
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        height: auto;
        overflow-y: auto;
    }

    .split-section {
        min-height: 50vh;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .split-section:hover {
        flex: 1;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .split-section h2 {
        font-size: 2rem;
    }
}

/* --- Training Platform Styles --- */

.training-container {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
    border: none;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 157, 70, 0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.intro-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.intro-section p {
    position: relative;
}

.module-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(14, 165, 233, 0.2);
    z-index: -1;
}

/* LEARN Grid (5 cards) */
.leap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .leap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .leap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .leap-grid {
        grid-template-columns: 1fr;
    }
}

.leap-card {
    background-color: transparent;
    width: 100%;
    height: 450px;
    /* Increased from 400px */
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
}

.leap-card:hover .card-inner {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08);
}

.leap-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* Reduced from 30px */
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    overflow: hidden;
    /* Prevent overflow */
}

.card-front {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.card-back {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    color: white;
    transform: rotateY(180deg);
    border: none;
    text-align: center;
    padding: 18px;
    /* Tighter padding for back */
}

/* Premium Card Back Colors with Gradients */
.leap-card:nth-child(1) .card-back {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
}

.leap-card:nth-child(2) .card-back {
    background: linear-gradient(145deg, #0369a1 0%, #0284c7 100%);
}

.leap-card:nth-child(3) .card-back {
    background: linear-gradient(145deg, #b91c1c 0%, #dc2626 100%);
}

.leap-card:nth-child(4) .card-back {
    background: linear-gradient(145deg, #15803d 0%, #16a34a 100%);
}

.letter {
    font-size: 5.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C59D46 0%, #A88439 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.leap-card:hover .letter {
    transform: scale(1.05);
}

.card-front h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.card-front p {
    color: var(--text-muted);
}

.tap-hint {
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    padding: 6px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.leap-card:hover .tap-hint {
    background: var(--accent-color);
    color: white;
}

.card-back h3 {
    font-size: 1.5rem;
    /* Reduced from 1.8rem */
    margin-bottom: 12px;
    /* Reduced from 20px */
    color: white;
    font-weight: 700;
}

.card-back p {
    font-size: 0.95rem;
    /* Reduced from 1.1rem */
    line-height: 1.5;
    /* Reduced from 1.6 */
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    /* Reduced from 20px */
}

.card-back .card-content-box {
    background: rgba(255, 255, 255, 0.12);
    padding: 12px;
    /* Reduced from 18px */
    border-radius: 12px;
    font-size: 0.9rem;
    /* Reduced from 1rem */
    width: 100%;
    text-align: center;
    line-height: 1.5;
    /* Reduced from 1.6 */
    backdrop-filter: blur(4px);
}

.card-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-back ul li {
    margin-bottom: 6px;
    /* Reduced from 10px */
    font-size: 0.9rem;
    /* Reduced from 1rem */
}

/* Value Framing Tabs */
.framing-container {
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.06),
        0 2px 12px rgba(0, 0, 0, 0.04);
}

.tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tab-btn:hover {
    background: rgba(14, 165, 233, 0.05);
    color: var(--primary-color);
}

.tab-btn:hover::after {
    width: 50%;
}

.tab-btn.active {
    color: var(--accent-color);
    background: white;
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    padding: 50px;
    opacity: 0;
    transition: opacity 0.4s ease-in;
}

.tab-content.active {
    display: block;
}

.content-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.visual {
    flex: 0 0 100px;
    height: 100px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--accent-color);
}

.text h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Comparison Box */
.comparison {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
}

.bad {
    color: #ef4444;
    margin-bottom: 8px;
}

.good {
    color: #10b981;
    font-weight: 600;
}

.quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    font-style: italic;
    color: var(--primary-color);
}

.roi-calc {
    background: #ecfdf5;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #10b981;
}

.roi-calc p {
    margin-bottom: 5px;
    color: #064e3b;
}

.roi-calc hr {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #10b981;
}

@media (max-width: 768px) {
    .content-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Objection Handling Matrix Styles --- */

.table-container {
    padding: 0;
    overflow-x: auto;
}

.battle-card-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.battle-card-table th {
    background: #f1f5f9;
    padding: 20px;
    text-align: left;
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
}

.battle-card-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.battle-card-table tr:last-child td {
    border-bottom: none;
}

.argument {
    background: #f8fafc;
}

.arg-bubble {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 10px 15px;
    border-radius: 12px;
    border-bottom-left-radius: 2px;
    color: #334155;
    font-style: italic;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.strategy-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.script-box {
    background: #ecfdf5;
    /* Emerald 50 */
    border-left: 4px solid #10b981;
    padding: 15px;
    border-radius: 8px;
    color: #064e3b;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}

.quote-icon {
    opacity: 0.3;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .battle-card-table thead {
        display: none;
    }

    .battle-card-table,
    .battle-card-table tbody,
    .battle-card-table tr,
    .battle-card-table td {
        display: block;
        width: 100%;
    }

    .battle-card-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
    }

    .battle-card-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #f1f5f9;
    }

    .argument {
        background: #f1f5f9;
        font-weight: bold;
    }
}

/* --- Quiz Section Styles --- */
.quiz-container {
    padding: 0;
    overflow: hidden;
}

.quiz-question {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.quiz-question.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.question-number {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar .progress {
    height: 100%;
    background: linear-gradient(90deg, #C59D46, #E5C078);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.scenario {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #e2e8f0;
}

.scenario i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.scenario p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.5;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.option-btn:hover:not(.answered) {
    border-color: var(--accent-color);
    background: #fffbf0;
}

.option-letter {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.option-text {
    flex: 1;
    font-size: 1rem;
    color: var(--primary-color);
}

.feedback {
    display: none;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    margin-left: auto;
}

.option-btn.correct {
    border-color: #10b981;
    background: #ecfdf5;
}

.option-btn.correct .option-letter {
    background: #10b981;
    color: white;
}

.option-btn.correct .feedback {
    display: block;
    background: #d1fae5;
    color: #065f46;
}

.option-btn.wrong {
    border-color: #ef4444;
    background: #fef2f2;
}

.option-btn.wrong .option-letter {
    background: #ef4444;
    color: white;
}

.option-btn.wrong .feedback {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

.option-btn.answered {
    pointer-events: none;
    opacity: 0.7;
}

.option-btn.answered.correct,
.option-btn.answered.wrong {
    opacity: 1;
}

/* Quiz Results */
.quiz-results {
    display: none;
    padding: 60px 40px;
    text-align: center;
}

.quiz-results.active {
    display: block;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C59D46 0%, #E5C078 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 40px rgba(197, 157, 70, 0.3);
}

.results-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.results-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* --- Success Stories Styles --- */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

.story-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C59D46 0%, #E5C078 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.story-meta {
    display: flex;
    flex-direction: column;
}

.author {
    font-weight: 700;
    color: var(--primary-color);
}

.role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.story-content {
    flex: 1;
}

.handwritten {
    font-family: 'Caveat', 'Segoe Script', cursive;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--primary-color);
    font-style: italic;
}

.story-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #ecfdf5;
    border-radius: 10px;
    color: #065f46;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-result i {
    color: #10b981;
}

/* --- Confetti Canvas --- */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* --- Primary Button --- */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #C59D46 0%, #A88439 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #A88439 0%, #8B6D2F 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 157, 70, 0.3);
}

/* Responsive Quiz */
@media (max-width: 768px) {
    .scenario {
        flex-direction: column;
        text-align: center;
    }

    .option-btn {
        flex-direction: column;
        text-align: center;
    }

    .feedback {
        margin-left: 0;
        margin-top: 10px;
    }
}