/* --- VandaHost Core Styles --- */

/* 1. Variables & Reset */
:root {
    --bg-deep: #050810;
    --bg-surface: #0A0F1A;
    --bg-glass: rgba(10, 15, 26, 0.95);

    --neon-cyan: #00F0FF;
    --electric-blue: #0077FF;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;

    --font-primary: 'YekanBakh', sans-serif;
    --transition: all 0.3s ease;
}

@font-face {
    font-family: 'YekanBakh';
    src: url('../fonts/YekanBakh-Variable.woff2') format('woff2-variations'),
        url('../fonts/YekanBakh-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

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

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.text-neon {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* 2. Header Styles */
.main-header {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* -----------------------------------
   Real Image Logo with Neon CSS Filters
------------------------------------ */
.logo {
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vanda-real-logo {
    height: 50px;
    width: auto;
    /* این فیلترها، رنگ‌های لوگوی اصلی شما را حفظ کرده اما به آن‌ها درخشش نئونی می‌دهند */
    filter: hue-rotate(-5deg) saturate(1.5) brightness(1.1) drop-shadow(0 0 8px rgba(0, 240, 255, 0.3));
    transition: var(--transition);
}

.logo-link:hover .vanda-real-logo {
    filter: hue-rotate(-5deg) saturate(2) brightness(1.2) drop-shadow(0 0 15px rgba(0, 240, 255, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav>ul>li>a {
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav>ul>li>a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-surface);
    min-width: 260px; /* عرض منو کمی بیشتر شد */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    white-space: nowrap; /* این خط جادویی از شکستن کلمات جلوگیری می‌کند */
}

.dropdown li a:hover {
    background: rgba(255, 255, 255, 0.03);
}

.menu-title {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

.menu-desc {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Header Actions */
.header-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--neon-cyan);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-portal {
    background: var(--neon-cyan);
    color: #050810;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.btn-portal:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* 3. Hero Section */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--electric-blue), #0055ff);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 119, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 119, 255, 0.5);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.hero-features {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

/* -----------------------------------
   Hero Visuals & Neon Glow Effects
------------------------------------ */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

/* 1. هاله نوری پشت عکس که حالا مثل یک رآکتور تپش دارد */
.glow-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, var(--electric-blue) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

/* 2. عکس سرور با قاب نئونی و درخشان */
.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    z-index: 2;
    position: relative;
    border: 2px solid rgba(0, 240, 255, 0.4);
    box-shadow:
        0 0 20px rgba(0, 240, 255, 0.2),
        0 0 50px rgba(0, 119, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.6);

    animation: float 6s ease-in-out infinite;
}

/* 3. انیمیشن های حرکت و تپش نور */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.35;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* 4. Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin: 15px 0;
}

.section-badge {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: var(--bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

/* کارت ویژه (وسط) */
.pricing-card.featured {
    background: linear-gradient(145deg, #111827, #0d121f);
    border: 2px solid var(--electric-blue);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 119, 255, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--electric-blue);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.pkg-name {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.pkg-cat {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

.card-price {
    text-align: center;
    margin-bottom: 30px;
    color: var(--neon-cyan);
}

.card-price .amount {
    font-size: 32px;
    font-weight: 900;
}

.card-price .currency {
    font-size: 14px;
    margin-right: 5px;
}

.card-price .period {
    font-size: 12px;
    color: var(--text-muted);
}

.card-features {
    margin-bottom: 30px;
}

.card-features li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.btn-block {
    display: block;
    text-align: center;
    width: 100%;
}

/* Pricing Switcher - Fixed for RTL */
.pricing-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333; /* پیش‌فرض: خاکستری */
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    /* تغییر اصلی: قرارگیری نقطه در سمت راست (ماهانه) */
    right: 3px; 
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--neon-cyan); /* بعد از کلیک: فیروزه‌ای */
}

input:checked + .slider:before {
    /* تغییر دوم: حرکت به سمت چپ (سالانه) بعد از کلیک */
    transform: translateX(-24px); 
}

.switch-label.active {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* 5. Features Section (Why Us) */
.features-section {
    padding: 80px 0;
    position: relative;
}

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

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.icon-box {
    font-size: 40px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-muted);
}

/* 6. Trust Section (Real Photos) */
.trust-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-deep), #080c14);
}

.trust-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.trust-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--electric-blue);
}

.stat-label {
    font-size: 14px;
    color: var(--text-main);
}

.trust-image {
    flex: 1;
}

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

.rounded-neon {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

/* 7. Footer Styles */
.main-footer {
    background: #020305;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    border-bottom: 2px solid var(--neon-cyan);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--neon-cyan);
    padding-right: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-3px);
}

/* --- Trust Badges Grid Styles --- */
.trust-badges-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-row {
    display: flex;
    gap: 15px;
}

.trust-badge {
    background: #fff;
    width: 85px;
    height: 85px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.trust-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* افکت هاور فقط برای مجوزهای لینک‌دار */
.trust-badge:not(.no-link):hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
}

.trust-badge.no-link {
    opacity: 0.9;
    cursor: default;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 13px;
}

/* اصلاحیه ریسپانسیو برای بخش جدید */
@media (max-width: 768px) {
    .trust-container {
        flex-direction: column;
    }

    .stats-row {
        justify-content: space-between;
        width: 100%;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(5, 8, 16, 0.9), rgba(5, 8, 16, 0.9)), url('../img/server-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Grid for 5 Items (Shared Hosting) */
.grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 1200px) {
    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* About & Content Pages */
.content-section {
    padding: 80px 0;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.story-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 16px;
    text-align: justify;
}

.story-img {
    flex: 1;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

/* Stats Grid in About Page */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.stat-box i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.stat-box .num {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}

.stat-box .label {
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {

    .story-block,
    .story-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .story-text p {
        text-align: center;
    }
}

/* Rules Page Styles */
.rules-box {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
}

.rule-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rule-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.rule-item h3 {
    color: var(--neon-cyan);
    font-size: 20px;
    margin-bottom: 15px;
    border-right: 3px solid var(--electric-blue);
    padding-right: 15px;
}

.rule-item p {
    color: var(--text-main);
    margin-bottom: 15px;
    text-align: justify;
}

.rule-item ul {
    list-style: disc;
    padding-right: 20px;
    color: var(--text-muted);
}

.rule-item ul li {
    margin-bottom: 8px;
}

.rule-item strong {
    color: #fff;
    font-weight: 700;
}

/* Contact Page Styles */
.contact-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.contact-info {
    flex: 1;
    display: grid;
    gap: 20px;
}

.info-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
}

.info-card h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #fff;
}

.info-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--electric-blue);
    font-weight: 700;
    font-size: 16px;
}

.contact-link:hover {
    color: var(--neon-cyan);
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

/* Location Section (Map + Building) */
.location-section {
    display: flex;
    gap: 30px;
}

.building-img {
    flex: 1;
}

.map-box {
    flex: 2;
}

@media (max-width: 768px) {

    .contact-grid,
    .location-section {
        flex-direction: column;
    }

    .contact-visual,
    .building-img,
    .map-box {
        width: 100%;
    }
}

/* Domain Page Styles */
.domain-hero {
    background: linear-gradient(rgba(5, 8, 16, 0.9), rgba(5, 8, 16, 0.8)), url('../img/server-racks.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.domain-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.domain-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.domain-search-form {
    display: flex;
    max-width: 700px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.domain-search-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: #fff;
    font-size: 16px;
    font-family: var(--font-primary);
    outline: none;
}

.domain-search-form button {
    border-radius: 40px;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
}

.domain-tlds {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tld-tag {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
}

.tld-tag small {
    color: var(--neon-cyan);
    margin-right: 5px;
    font-weight: 400;
}

.tld-tag.active {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Domain Table */
.domain-table-container {
    overflow-x: auto;
}

.domain-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.domain-table th {
    text-align: right;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 14px;
}

.domain-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.domain-table .tld-name {
    font-weight: 900;
    color: var(--electric-blue);
    font-size: 18px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .domain-search-form {
        flex-direction: column;
        border-radius: 16px;
    }

    .domain-search-form button {
        width: 100%;
        border-radius: 12px;
        margin-top: 10px;
    }
}