/*
Theme Name: GoldLens
Theme URI: https://goldlensapp.com
Author: LDM Digital LLC
Author URI: https://goldlensapp.com
Description: Official website theme for GoldLens — the precious metals price tracking app for iOS and Android.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: goldlens
*/

/* =============================================
   GoldLens WordPress Theme — Main Stylesheet
   Colors: Dark Blue (#0A1628), Gold (#D4AF37), White, Green (#22C55E)
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --dark-blue: #0A1628;
    --navy: #0F2240;
    --navy-light: #162D54;
    --gold: #D4AF37;
    --gold-light: #E8CC6E;
    --gold-dark: #B8962E;
    --white: #FFFFFF;
    --off-white: #F8F9FC;
    --gray-50: #F1F3F7;
    --gray-100: #E2E6EF;
    --gray-200: #C8CDD9;
    --gray-300: #9BA3B5;
    --gray-400: #6B7489;
    --gray-500: #4A5167;
    --gray-600: #323848;
    --gray-700: #1E2433;
    --green: #22C55E;
    --green-light: #DCFCE7;
    --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,.16);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color .2s;
}
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
    color: var(--gray-700);
    line-height: 1.2;
    font-weight: 700;
}

ul { list-style: none; }

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utility --- */
.gold-text { color: var(--gold); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark-blue);
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,175,55,.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

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

.card-white {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.bg-light { background: var(--off-white); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
    background: rgba(10, 22, 40, .98);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo img {
    height: 44px;
    width: auto;
}

.site-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--gray-300);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.06);
}

.header-cta { display: none; }

@media (min-width: 1024px) {
    .header-cta { display: inline-flex; }
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-blue);
    padding: 32px 24px;
    z-index: 10000;
    overflow-y: auto;
}

.mobile-menu.open { display: block; }

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.mobile-nav-list .nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 1024px) {
    .mobile-menu { display: none !important; }
    .main-nav { display: flex; }
}

@media (max-width: 1023px) {
    .main-nav { display: none; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    background: linear-gradient(160deg, var(--dark-blue) 0%, var(--navy) 50%, #0D1E3A 100%);
    padding: 140px 0 80px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: .06;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -100px;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -150px;
    left: -100px;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
    .hero { padding: 160px 0 100px; }
}

.hero-content { text-align: center; }

@media (min-width: 1024px) {
    .hero-content { text-align: left; }
}

.hero-badge {
    display: inline-block;
    background: rgba(212,175,55,.12);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: .03em;
    border: 1px solid rgba(212,175,55,.2);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

@media (max-width: 1023px) {
    .hero-subtitle { margin: 0 auto 32px; }
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

@media (max-width: 1023px) {
    .hero-ctas { justify-content: center; }
}

.store-badge-link {
    display: inline-block;
    transition: transform .2s, opacity .2s;
}

.store-badge-link:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.store-badge-link img {
    height: 52px;
    width: auto;
}

.hero-note {
    font-size: 13px;
    color: var(--gray-400);
}

@media (max-width: 1023px) {
    .hero-note { text-align: center; }
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    max-width: 100%;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212,175,55,.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-screenshot {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
}

@media (min-width: 1024px) {
    .phone-mockup { width: 320px; }
}

/* =============================================
   METALS BAR
   ============================================= */
.metals-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 24px 0;
}

.metals-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.metal-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.metal-icon { font-size: 24px; }

.metal-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: .02em;
}

/* =============================================
   SECTIONS
   ============================================= */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.02em;
    line-height: 1.15;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    padding: 100px 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,.2);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-700);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* =============================================
   SCREENSHOTS SECTION
   ============================================= */
.screenshots-section {
    padding: 100px 0;
    background: var(--white);
}

.screenshots-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 24px;
    scrollbar-width: none;
}

.screenshots-carousel::-webkit-scrollbar { display: none; }

.screenshot-item {
    flex: 0 0 220px;
    scroll-snap-align: center;
    text-align: center;
}

.screenshot-item img {
    width: 220px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: transform .3s;
}

.screenshot-item:hover img {
    transform: scale(1.03);
}

.screenshot-label {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
}

@media (min-width: 1024px) {
    .screenshots-carousel {
        justify-content: center;
        overflow-x: visible;
        padding: 0;
    }
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
    padding: 100px 0;
    background: var(--off-white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    flex: 0 1 280px;
    text-align: center;
    padding: 32px 24px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark-blue);
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

.step-connector {
    display: none;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 55px;
}

@media (min-width: 768px) {
    .step-connector { display: block; }
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
    padding: 100px 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--navy) 100%);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,.1) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.cta-card h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: var(--gray-300);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--dark-blue), var(--navy));
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero-short { padding: 130px 0 50px; }

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

.page-hero p {
    color: var(--gray-300);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}

.page-hero .section-label {
    display: block;
    margin-bottom: 16px;
}

/* =============================================
   FEATURES DETAIL PAGE
   ============================================= */
.feature-detail {
    padding: 80px 0;
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .feature-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.feature-detail-reverse .feature-detail-visual {
    order: -1;
}

@media (max-width: 767px) {
    .feature-detail-reverse .feature-detail-visual { order: 0; }
}

.feature-detail-icon {
    font-size: 42px;
    display: block;
    margin-bottom: 16px;
}

.feature-detail-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.feature-detail-content p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-checklist {
    list-style: none;
    padding: 0;
}

.feature-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 10px;
    line-height: 1.5;
}

.feature-checklist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
}

.feature-screenshot {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.feature-detail-visual {
    display: flex;
    justify-content: center;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
    padding: 60px 0 80px;
}

.legal-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-700);
    margin: 36px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-600);
    margin: 20px 0 10px;
}

.legal-content p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--gold);
    font-weight: 600;
}

.legal-intro {
    margin-bottom: 32px;
}

.legal-highlight {
    background: rgba(212,175,55,.06);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin: 16px 0;
}

.legal-highlight p {
    margin: 0;
    color: var(--gray-600);
    font-weight: 500;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card { padding: 24px; }

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon { font-size: 28px; flex-shrink: 0; }

.contact-method h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-method p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.contact-cta-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-download-card {
    text-align: center;
}

.contact-download-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-download-card p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.contact-store-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-store-badges img { height: 44px; }

.contact-company {
    font-size: 14px;
    color: var(--gray-300);
    text-align: center;
    margin-top: 8px;
}

/* =============================================
   GENERIC PAGE CONTENT
   ============================================= */
.page-content {
    padding: 60px 0 80px;
}

.page-content p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--dark-blue);
    padding: 64px 0 0;
    color: var(--gray-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }
}

.footer-logo img {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-store-badges {
    display: flex;
    gap: 10px;
}

.footer-store-badges img { height: 36px; }

.footer-links h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

.footer-links ul { list-style: none; padding: 0; }

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

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color .2s;
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 12px !important;
    color: var(--gray-400) !important;
    opacity: .6;
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-animate="fade-up-delay"] {
    transition-delay: .15s;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE FINE-TUNING
   ============================================= */
@media (max-width: 640px) {
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 15px; }
    .features-section,
    .screenshots-section,
    .how-it-works,
    .final-cta { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.6rem; }
    .cta-card { padding: 40px 24px; }
    .phone-mockup { width: 240px; }
    .feature-detail { padding: 48px 0; }
    .page-hero { padding: 110px 0 40px; }
    .page-hero h1 { font-size: 1.8rem; }
    .store-badge-link img { height: 44px; }
}

/* Print styles */
@media print {
    .site-header,
    .hero-bg-shapes,
    .cta-card,
    .mobile-menu { display: none; }
    body { color: #000; background: #fff; }
}
