/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #f5f5f5; margin: 0; color: #333; line-height: 1.6; }
a { color: #d4af37; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
header { background: #2e2e2e; color: #f1f1f1; padding: 18px 16px; border-bottom: 5px solid #d4af37; }
.logo-nav { display: flex; align-items: center; justify-content: center; gap: 18px; max-width: 1100px; margin: 0 auto; }
.logo { height: 56px; width: auto; }
.brand-block h1 { margin: 0; font-size: 2rem; letter-spacing: .4px; }
.tagline { font-style: italic; margin: 4px 0 8px; color: #d4af37; }
nav { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
nav a { font-weight: 600; }

/* Hero */
.hero { text-align: center; }
.hero-img { width: 100%; height: auto; max-height: 420px; object-fit: cover; border-bottom: 5px solid #d4af37; }

/* Layout */
main { padding: 28px; max-width: 1100px; margin: auto; }
h2 { color: #2e2e2e; border-bottom: 2px solid #d4af37; padding-bottom: 6px; margin-top: 24px; }
h3 { margin-top: 16px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid #ddd; padding: 16px; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,.04); }
.card h3 { margin-top: 0; }
.btn { display: inline-block; padding: 8px 14px; border: 2px solid #d4af37; border-radius: 8px; font-weight: 700; }
.btn:hover { background: #fff3d6; }
.ticker { background: #fff8e1; padding: 12px; font-weight: bold; border: 1px solid #ccc; border-left: 5px solid #d4af37; }

/* Table */
.deal-table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 0.95em; background: #fff; }
.deal-table th { background: #2e2e2e; color: #f1f1f1; text-align: center; padding: 10px; border: 1px solid #ccc; }
.deal-table td { border: 1px solid #ccc; padding: 8px 10px; text-align: center; }
.deal-table tr:nth-child(even) { background: #f9f9f9; }
.deal-table tr:hover { background: #fff3d6; }

/* Footer */
footer { background: #2e2e2e; color: #ccc; text-align: center; padding: 18px; margin-top: 40px; font-size: .9em; }
