:root {
    --bg-color: #0b0f19;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --secondary-glow: rgba(236, 72, 153, 0.4);
    --accent: #6366f1;
    --accent-hover: #4f46e5;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Premium Aesthetic */
.blob {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    border-radius: 50%;
    animation: float 10s infinite ease-in-out alternate;
}
.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-glow);
}
.blob-2 {
    top: 40%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--secondary-glow);
    animation-delay: 2s;
}
.blob-3 {
    bottom: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: rgba(16, 185, 129, 0.2);
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

/* Glassmorphism Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1, #ec4899, #6366f1);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShine 4s linear infinite;
}

@keyframes gradientShine {
    to { background-position: 200% center; }
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255,255,255,0.05);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 0 5%;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Phone Mockup - Real App UI Replica (Pixel-Perfect) */
.phone-mockup {
    width: 340px;
    height: 720px;
    border-radius: 46px;
    padding: 1.2rem 1rem;
    background: #000000;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.95), 0 0 60px rgba(168, 85, 247, 0.4);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

.phone-mockup:hover {
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.98), 0 0 75px rgba(236, 72, 153, 0.5);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #fff;
}

.app-header {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.greeting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.greeting-text {
    font-size: 0.72rem;
    color: #a1a1aa;
    font-weight: 500;
}
.notification-bell {
    width: 30px;
    height: 30px;
    background: #18181b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.bell-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: #fff;
    font-size: 0.58rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.app-dashboard-title {
    font-size: 1.35rem;
    font-weight: 800;
}

.main-net-card {
    background: linear-gradient(145deg, #1d1d22 0%, #121215 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.net-badge {
    background: #27272a;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.68rem;
    color: #e4e4e7;
    font-weight: 500;
}
.card-date {
    font-size: 0.68rem;
    color: #a1a1aa;
}
.main-balance-val {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}
.stats-mini-box {
    background: #18181b;
    border-radius: 14px;
    padding: 0.55rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.stat-lbl { font-size: 0.6rem; color: #a1a1aa; }
.stat-val { font-size: 0.78rem; font-weight: bold; }
.stat-val.green { color: #10b981; }
.stat-val.red { color: #f43f5e; }
.stat-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.08); }
.progress-bar-container {
    width: 100%;
    height: 5px;
    background: #27272a;
    border-radius: 3px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #6366f1);
    border-radius: 3px;
}
.progress-sub-text {
    font-size: 0.6rem;
    color: #a1a1aa;
    text-align: right;
}

.quick-actions-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
}
.action-btn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.62rem;
    color: #d4d4d8;
}
.action-icon-box {
    width: 44px;
    height: 44px;
    background: #18181b;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    transition: transform 0.2s ease, background 0.2s ease;
}
.action-btn-item:hover .action-icon-box {
    background: #27272a;
    transform: translateY(-2px);
}

.three-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}
.stat-mini-card {
    background: #141416;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 0.55rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}
.mini-card-icon-box {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mini-card-lbl { font-size: 0.58rem; color: #a1a1aa; }
.mini-card-val { font-size: 0.88rem; font-weight: bold; }
.mini-card-tag { font-size: 0.56rem; color: #a1a1aa; }
.mini-card-tag.green { color: #10b981; }

.mock-accounts-section {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.accounts-head-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.2rem;
}
.acc-head-title { font-weight: bold; font-size: 0.82rem; }
.acc-head-count { font-size: 0.68rem; color: #a1a1aa; }
.mock-acc-item {
    background: #141416;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 0.55rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.acc-icon-box {
    width: 32px;
    height: 32px;
    background: #1f1f23;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.acc-details { display: flex; flex-direction: column; }
.acc-name { font-weight: 600; font-size: 0.75rem; }
.acc-type { font-size: 0.62rem; color: #a1a1aa; }
.acc-amt { margin-left: auto; font-weight: bold; font-size: 0.8rem; }

.floating-nav-mockup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-bottom: 0.2rem;
}
.nav-pill-stadium {
    flex: 1;
    height: 44px;
    background: #141416;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 0.5rem;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #71717a;
    position: relative;
}
.nav-item.active {
    color: #a855f7;
}
.active-dot {
    width: 4px;
    height: 4px;
    background: #a855f7;
    border-radius: 50%;
    position: absolute;
    bottom: -6px;
    box-shadow: 0 0 6px #a855f7;
}
.floating-fab-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 18px rgba(168, 85, 247, 0.55);
}

/* Hover Shimmer & Glow Effects */
.glass-panel {
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
    pointer-events: none;
}

.glass-panel:hover::before {
    animation: shimmerPass 1.5s ease-in-out;
}

@keyframes shimmerPass {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}


/* Features Section */
.features {
    padding: 6rem 5%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.1s ease-out, background 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.feature-card:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3), 0 0 20px rgba(99, 102, 241, 0.2);
}

.feature-card > * {
    transform: translateZ(20px);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 5%;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.step {
    flex: 1;
    min-width: 260px;
    padding: 3.5rem 2rem 2.5rem;
    position: relative;
    overflow: visible !important;
    margin-top: 1rem;
    border-radius: 24px;
}

.step::before {
    border-radius: 24px;
}

.step-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border: 3px solid #0d0d0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
    z-index: 20;
}

.step h3 {
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.step p {
    color: var(--text-secondary);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Privacy Policy Page Overrides */
.privacy-page .content-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
}

/* Floating Shapes in Hero */
.floating-shape {
    position: absolute;
    font-size: 2.5rem;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    animation: bounceFloat 6s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

.shape-1 {
    top: 20%;
    left: 45%;
    font-size: 3rem;
    animation-delay: 0s;
}

.shape-2 {
    bottom: 25%;
    left: 5%;
    font-size: 2rem;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.shape-3 {
    top: 15%;
    right: 5%;
    font-size: 3.5rem;
    animation-delay: 3s;
    animation-duration: 8s;
}

@keyframes bounceFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.privacy-page h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.privacy-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.privacy-page p, .privacy-page ul {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.privacy-page ul {
    margin-left: 1.5rem;
}

.privacy-page a {
    color: var(--accent);
}

/* Mobile Navigation Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.7rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    z-index: 1001;
    transition: transform 0.2s ease;
}
.mobile-menu-btn:active {
    transform: scale(0.9);
}

/* Ultra-Responsive Mobile Design System */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .navbar {
        padding: 1rem 5%;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        background: rgba(9, 9, 11, 0.92);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background: rgba(14, 14, 18, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 2rem 1.5rem;
        gap: 1.2rem;
        text-align: center;
        backdrop-filter: blur(25px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        font-size: 1.15rem;
        padding: 0.6rem;
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6.5rem;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 2rem;
        max-width: 90%;
    }

    .hero .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .hero-image-container {
        width: 100%;
        display: flex;
        justify-content: center;
        overflow: hidden;
        padding: 1rem 0;
    }

    /* Scaling mockup seamlessly on mobile */
    .phone-mockup {
        width: 320px;
        height: 680px;
        transform: scale(0.92) !important;
        margin: -25px 0;
        transform-origin: center center;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .features {
        padding: 4rem 5%;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feature-card {
        padding: 1.8rem 1.2rem;
    }

    .how-it-works {
        padding: 4rem 5%;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .step {
        width: 100%;
        max-width: 340px;
        padding: 3rem 1.4rem 2rem;
    }

    footer {
        padding: 3rem 1.5rem 2rem;
        margin-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(14, 14, 18, 0.8);
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.8rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 0.4rem;
    }

    .footer-brand p {
        font-size: 0.95rem;
        color: var(--text-secondary);
        max-width: 280px;
        margin: 0 auto;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.7rem 1rem;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .footer-links a {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1.1rem;
        border-radius: 20px;
        font-size: 0.88rem;
        color: var(--text-primary);
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .footer-links a:hover, .footer-links a:active {
        background: rgba(168, 85, 247, 0.2);
        border-color: rgba(168, 85, 247, 0.5);
        color: #ffffff;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: var(--text-secondary);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 1.5rem;
    }
}

@media (max-width: 400px) {
    .phone-mockup {
        transform: scale(0.82) !important;
        margin: -50px 0;
    }
}

/* FAQ Section Styling */
.faq-section {
    padding: 6rem 5%;
    max-width: 960px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-search-box {
    position: relative;
    max-width: 540px;
    margin: 2rem auto 0;
}

.faq-search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    backdrop-filter: blur(16px);
    transition: all 0.3s;
}

.faq-search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.faq-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.2rem;
    pointer-events: none;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1.4rem 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.faq-toggle-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), margin-top 0.3s ease;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    margin-top: 1rem;
    transition: max-height 0.5s ease-in-out, margin-top 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
    display: none;
}

