/* ========================================
   TRANSPARENCY PRESENTATION - DESIGN SYSTEM
   Premium Dark Theme with Gold/Cyan Accents
   ======================================== */

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

:root {
    --bg-primary: #060d1f;
    --bg-secondary: #0c1a35;
    --bg-card: rgba(15, 30, 60, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --gold: #d4a843;
    --gold-light: #f0d78c;
    --cyan: #00d4ff;
    --cyan-dark: #0094b3;
    --purple: #8b5cf6;
    --green: #10b981;
    --red: #ef4444;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    --font-main: 'Cairo', 'Tajawal', sans-serif;
}

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

html, body {
    width: 100%; height: 100%;
    overflow: hidden;
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    direction: rtl;
}

/* ===== SLIDE CONTAINER ===== */
.presentation { width: 100%; height: 100vh; position: relative; overflow: hidden; }

.slide {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    padding: 60px 80px;
    opacity: 0; visibility: hidden;
    transform: translateX(-60px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-primary);
    overflow-y: auto;
}

.slide.active {
    opacity: 1; visibility: visible;
    transform: translateX(0);
}

.slide.prev {
    opacity: 0; visibility: hidden;
    transform: translateX(60px);
}

/* ===== BACKGROUNDS ===== */
.slide::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(212, 168, 67, 0.04) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
}

.slide > * { position: relative; z-index: 1; }

/* Grid pattern */
.grid-bg::after {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; z-index: 0;
}

/* ===== TYPOGRAPHY ===== */
.slide-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    line-height: 1.4;
}

.slide-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 800px;
}

.section-label {
    font-size: 0.85rem;
    color: var(--cyan);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

/* ===== TITLE SLIDE ===== */
.title-slide {
    background: linear-gradient(135deg, #060d1f 0%, #0c1a35 50%, #0f1e3c 100%);
    text-align: center;
}

.title-slide .main-title {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), #c4922e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out;
}

.title-slide .main-subtitle {
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 15px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-slide .event-info {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.logos-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.logo-box {
    width: 120px; height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.logo-box img { max-width: 90%; max-height: 90%; object-fit: contain; }

.logo-separator {
    width: 2px; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.cards-grid {
    display: grid;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
}

.cards-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.cards-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.cards-grid.cols-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

.card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-icon.cyan { background: rgba(0, 212, 255, 0.15); color: var(--cyan); }
.card-icon.gold { background: rgba(212, 168, 67, 0.15); color: var(--gold); }
.card-icon.purple { background: rgba(139, 92, 246, 0.15); color: var(--purple); }
.card-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.card-icon.red { background: rgba(239, 68, 68, 0.15); color: var(--red); }

.card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CONTENT LAYOUTS ===== */
.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 1100px;
}

.split-layout .content { flex: 1; }
.split-layout .visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-layout .visual img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* ===== LIST ITEMS ===== */
.feature-list { list-style: none; padding: 0; }

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li .bullet {
    width: 8px; height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--cyan);
    margin-top: 10px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* ===== STATS ===== */
.stats-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.stat-card {
    text-align: center;
    padding: 25px 35px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 20px 0;
    width: 100%;
    max-width: 900px;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--cyan), var(--gold), var(--purple));
}

.timeline-item {
    position: relative;
    padding: 15px 50px 15px 0;
    margin-bottom: 10px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: 12px; top: 22px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--cyan);
    z-index: 1;
}

.timeline-item:nth-child(2)::before { border-color: var(--gold); }
.timeline-item:nth-child(3)::before { border-color: var(--purple); }

.timeline-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 5px;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FLOW DIAGRAM ===== */
.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.flow-node {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 24px;
    text-align: center;
    min-width: 140px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.flow-node:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.flow-node .node-icon { font-size: 2rem; margin-bottom: 8px; }
.flow-node .node-label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }

.flow-arrow {
    font-size: 1.5rem;
    color: var(--gold);
    animation: pulse 2s ease-in-out infinite;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    transition: width 0.5s ease;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* ===== NAVIGATION ===== */
.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    border: 1px solid var(--border);
    background: rgba(10, 22, 40, 0.7);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--cyan);
    color: var(--cyan);
}

.nav-arrow-left {
    left: 0;
    border-radius: 0 12px 12px 0;
}

.nav-arrow-right {
    right: 0;
    border-radius: 12px 0 0 12px;
}

.slide-counter-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(10, 22, 40, 0.8);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.slide-counter {
    font-size: 0.85rem;
    color: var(--text-muted);
    direction: ltr;
}

/* ===== ARCHITECTURE DIAGRAM ===== */
.arch-diagram {
    width: 100%;
    max-width: 900px;
    margin: 5px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arch-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.arch-node {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    min-width: 200px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.arch-node:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.arch-node .node-icon { font-size: 2rem; margin-bottom: 5px; }
.arch-node .node-title { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.arch-node .node-desc { font-size: 0.85rem; color: var(--text-muted); }

.gold-node { border-color: rgba(212, 168, 67, 0.5); background: linear-gradient(180deg, rgba(212,168,67,0.1) 0%, var(--bg-card) 100%); }
.cyan-node { border-color: rgba(0, 212, 255, 0.5); background: linear-gradient(180deg, rgba(0,212,255,0.1) 0%, var(--bg-card) 100%); }
.purple-node { border-color: rgba(139, 92, 246, 0.5); background: linear-gradient(180deg, rgba(139,92,246,0.1) 0%, var(--bg-card) 100%); }
.green-node { border-color: rgba(16, 185, 129, 0.5); background: linear-gradient(180deg, rgba(16,185,129,0.1) 0%, var(--bg-card) 100%); }

.odoo-node {
    border-color: #714B67;
    background: linear-gradient(180deg, rgba(113,75,103,0.15) 0%, var(--bg-card) 100%);
    min-width: 500px;
    padding: 15px;
}

.odoo-modules {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.odoo-modules span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.arch-connectors {
    position: relative;
    width: 100%;
    height: 40px;
    z-index: 1;
}

.arch-connectors .line {
    position: absolute;
    background: linear-gradient(180deg, var(--cyan), var(--purple));
    opacity: 0.6;
}

.vertical-split .center-line { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.vertical-split .left-line { width: 2px; height: 100%; left: 20%; }
.vertical-split .right-line { width: 2px; height: 100%; right: 20%; }
.vertical-split::after {
    content: ''; position: absolute;
    top: 50%; left: 20%; right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    opacity: 0.6;
}

.vertical-single .center-line { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg, var(--purple), #714B67); }

/* ===== FOOTER BRANDING ===== */
.slide-footer {
    position: absolute;
    bottom: 15px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    z-index: 1;
}

.slide-footer .footer-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-footer .footer-logos img {
    height: 28px;
    opacity: 0.5;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.4); }
}

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

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

.slide.active .animate-in {
    animation: fadeInUp 0.7s ease-out forwards;
}

.slide.active .animate-delay-1 { animation-delay: 0.15s; opacity: 0; }
.slide.active .animate-delay-2 { animation-delay: 0.3s; opacity: 0; }
.slide.active .animate-delay-3 { animation-delay: 0.45s; opacity: 0; }
.slide.active .animate-delay-4 { animation-delay: 0.6s; opacity: 0; }
.slide.active .animate-delay-5 { animation-delay: 0.75s; opacity: 0; }
.slide.active .animate-delay-6 { animation-delay: 0.9s; opacity: 0; }

/* ===== PARTICLE BACKGROUND (Title Slide) ===== */
.particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

/* ===== AGENDA ===== */
.agenda-list {
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 700px;
}

.agenda-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    margin-bottom: 8px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    transition: all 0.3s;
    cursor: default;
}

.agenda-list li:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--text-primary);
}

.agenda-num {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--bg-primary);
    flex-shrink: 0;
}

/* ===== IMAGE SLIDE ===== */
.img-showcase {
    width: 100%;
    max-width: 750px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    animation: glow 4s ease-in-out infinite;
}

.img-showcase img {
    width: 100%;
    display: block;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    max-width: 1000px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table th {
    background: rgba(0, 212, 255, 0.1);
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cyan);
    border-bottom: 1px solid var(--border);
}

.comparison-table td {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.comparison-table tr:last-child td { border-bottom: none; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(212, 168, 67, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 30px 35px;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.highlight-box .big-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.highlight-box .small-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== BADGE / TAG ===== */
.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin: 3px;
}

.badge.cyan { background: rgba(0, 212, 255, 0.15); color: var(--cyan); }
.badge.gold { background: rgba(212, 168, 67, 0.15); color: var(--gold); }
.badge.purple { background: rgba(139, 92, 246, 0.15); color: var(--purple); }
.badge.green { background: rgba(16, 185, 129, 0.15); color: var(--green); }

/* ===== PHASE CARDS ===== */
.phase-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.phase-number {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.phase-number.p1 { background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(0,212,255,0.05)); color: var(--cyan); border: 1px solid rgba(0,212,255,0.3); }
.phase-number.p2 { background: linear-gradient(135deg, rgba(212,168,67,0.2), rgba(212,168,67,0.05)); color: var(--gold); border: 1px solid rgba(212,168,67,0.3); }
.phase-number.p3 { background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(139,92,246,0.05)); color: var(--purple); border: 1px solid rgba(139,92,246,0.3); }

/* ===== THANK YOU SLIDE ===== */
.thankyou-slide .big-thanks {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

/* ===== DECORATIVE ===== */
.divider {
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 2px;
    margin: 15px auto;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .slide { padding: 40px 30px; }
    .slide-title { font-size: 2rem; }
    .title-slide .main-title { font-size: 2.2rem; }
    .cards-grid.cols-3, .cards-grid.cols-4 { grid-template-columns: 1fr 1fr; }
    .split-layout { flex-direction: column; gap: 30px; }
    .flow-container { flex-direction: column; }
    .stats-row { gap: 15px; }
}

@media (max-width: 600px) {
    .cards-grid.cols-2, .cards-grid.cols-3, .cards-grid.cols-4 { grid-template-columns: 1fr; }
    .nav-arrow { display: none; }
    .slide-counter-bar { bottom: 15px; padding: 8px 15px; }
}

/* ===== PRINT ===== */
@media print {
    .slide { page-break-after: always; position: relative; height: auto; min-height: 100vh; opacity: 1; visibility: visible; transform: none; }
    .nav-arrow, .slide-counter-bar, .progress-bar { display: none; }
}