* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #0a0a1a;
  --bg-secondary: #12122a;
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --accent3: #f59e0b;
  --text: #e2e8f0;
  --text-dim: #94a3b8;
  --card-bg: rgba(18, 18, 42, 0.8);
  --border: rgba(0, 212, 255, 0.2);
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Particles */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0; width: 100%;
  z-index: 100;
  background: rgba(10, 10, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { font-size: 1.8rem; color: var(--accent); }
.logo-text { font-size: 1.5rem; font-weight: 900; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-dim); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem;
}
.hero-content { z-index: 1; max-width: 800px; }
.glitch {
  font-size: 4.5rem;
  font-weight: 900;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}
.subtitle { font-size: 1.5rem; color: var(--accent); margin: 1rem 0; letter-spacing: 0.3rem; }
.description { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(0, 212, 255, 0.5); }

/* Games Section */
.games-section {
  padding: 6rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
  border-color: var(--accent);
}
.game-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,212,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.game-icon { font-size: 4rem; margin-bottom: 1rem; }
.game-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.game-card p { color: var(--text-dim); margin-bottom: 1rem; }
.game-tags { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem; }
.game-tags span {
  padding: 0.3rem 0.8rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent);
}
.play-btn {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.3s;
}
.play-btn:hover { transform: scale(1.05); }
.play-btn.disabled { background: #333; cursor: not-allowed; }

/* ========== 大话骰游戏 ========== */
.game-container {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 200;
  background: linear-gradient(135deg, #0a0a2e, #1a0a3e);
  overflow-y: auto;
}
.game-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.back-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}
.back-btn:hover { background: rgba(0,212,255,0.1); }
.game-header h2 { flex: 1; text-align: center; font-size: 1.5rem; }
.game-info span { color: var(--text-dim); }

.game-table {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}
.player-area {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  margin: 1rem 0;
}
.player-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.ai-avatar { background: linear-gradient(135deg, var(--accent2), #dc2626); }
.my-avatar { background: linear-gradient(135deg, var(--accent), #06b6d4); }
.player-name { font-size: 1.1rem; font-weight: 700; }
.dice-count { color: var(--text-dim); font-size: 0.9rem; margin-left: auto; }

.dice-area {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.dice {
  width: 64px; height: 64px;
  position: relative;
  border-radius: 10px;
  transition: 0.3s;
  animation: diceRoll 0.5s ease-out;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.dice-my {
  background: linear-gradient(145deg, #e60000, #cc0000);
  border: 2px solid rgba(255,255,255,0.25);
}
.dice-my::after {
  content: '';
  position: absolute;
  top: 2px; left: 4px;
  width: 55px; height: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
  border-radius: 6px;
}
.dice-ai {
  background: linear-gradient(145deg, #b30000, #990000);
  border: 2px solid rgba(255,255,255,0.15);
}
.dice-ai::after {
  content: '';
  position: absolute;
  top: 2px; left: 4px;
  width: 55px; height: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
  border-radius: 6px;
}
.dice-removed { opacity: 0.3; transform: scale(0.8); }

/* Dice dot patterns */
.dice-face {
  position: absolute;
  width: 100%; height: 100%;
  display: grid;
  padding: 8px;
  box-sizing: border-box;
}
/* 1 pip */
.dice-face[data-face="1"] {
  grid-template: 1fr / 1fr;
  place-items: center;
}
.dice-face[data-face="1"] .pip { grid-column: 1; grid-row: 1; }
/* 2 pips */
.dice-face[data-face="2"] {
  grid-template: 1fr 1fr / 1fr 1fr;
}
.dice-face[data-face="2"] .pip:nth-child(1) { grid-column: 2; grid-row: 1; justify-self: end; align-self: start; }
.dice-face[data-face="2"] .pip:nth-child(2) { grid-column: 1; grid-row: 2; justify-self: start; align-self: end; }
/* 3 pips */
.dice-face[data-face="3"] {
  grid-template: 1fr 1fr / 1fr 1fr;
}
.dice-face[data-face="3"] .pip:nth-child(1) { grid-column: 2; grid-row: 1; justify-self: end; align-self: start; }
.dice-face[data-face="3"] .pip:nth-child(2) { grid-column: 1; grid-row: 2; justify-self: center; align-self: center; }
.dice-face[data-face="3"] .pip:nth-child(3) { grid-column: 1; grid-row: 3; justify-self: start; align-self: end; }
/* 4 pips */
.dice-face[data-face="4"] {
  grid-template: 1fr 1fr / 1fr 1fr;
}
.dice-face[data-face="4"] .pip:nth-child(1) { grid-column: 1; grid-row: 1; justify-self: start; align-self: start; }
.dice-face[data-face="4"] .pip:nth-child(2) { grid-column: 2; grid-row: 1; justify-self: end; align-self: start; }
.dice-face[data-face="4"] .pip:nth-child(3) { grid-column: 1; grid-row: 2; justify-self: start; align-self: end; }
.dice-face[data-face="4"] .pip:nth-child(4) { grid-column: 2; grid-row: 2; justify-self: end; align-self: end; }
/* 5 pips */
.dice-face[data-face="5"] {
  grid-template: 1fr 1fr 1fr / 1fr 1fr 1fr;
}
.dice-face[data-face="5"] .pip:nth-child(1) { grid-column: 3; grid-row: 1; }
.dice-face[data-face="5"] .pip:nth-child(2) { grid-column: 1; grid-row: 1; }
.dice-face[data-face="5"] .pip:nth-child(3) { grid-column: 2; grid-row: 2; }
.dice-face[data-face="5"] .pip:nth-child(4) { grid-column: 3; grid-row: 3; }
.dice-face[data-face="5"] .pip:nth-child(5) { grid-column: 1; grid-row: 3; }
/* 6 pips */
.dice-face[data-face="6"] {
  grid-template: 1fr 1fr 1fr / 1fr 1fr;
}
.dice-face[data-face="6"] .pip:nth-child(1) { grid-column: 1; grid-row: 1; }
.dice-face[data-face="6"] .pip:nth-child(2) { grid-column: 2; grid-row: 1; }
.dice-face[data-face="6"] .pip:nth-child(3) { grid-column: 1; grid-row: 2; }
.dice-face[data-face="6"] .pip:nth-child(4) { grid-column: 2; grid-row: 2; }
.dice-face[data-face="6"] .pip:nth-child(5) { grid-column: 1; grid-row: 3; }
.dice-face[data-face="6"] .pip:nth-child(6) { grid-column: 2; grid-row: 3; }

.pip {
  width: 12px; height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.dice-back {
  width: 64px; height: 64px;
  background: linear-gradient(145deg, #2a1a1a, #1a0a0a);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,100,100,0.15);
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Chinese dice pattern on back */
.dice-back::before {
  content: '🎲';
  font-size: 1.5rem;
  opacity: 0.5;
}
@keyframes diceRoll {
  0% { transform: rotateX(90deg) scale(0.5); opacity: 0; }
  100% { transform: rotateX(0) scale(1); opacity: 1; }
}

.table-center {
  text-align: center;
  padding: 1rem;
}
.bidding-area {
  background: rgba(0,0,0,0.3);
  border-radius: 15px;
  padding: 1rem;
  min-height: 80px;
}
.current-bid {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.bid-history {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-height: 60px;
  overflow-y: auto;
}
.game-msg {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 10px;
  font-size: 1.1rem;
  min-height: 40px;
}

/* 操作区 */
.action-area {
  position: sticky;
  bottom: 0;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.bid-controls {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.bid-input-group label {
  display: block;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.face-selector {
  display: flex;
  gap: 0.5rem;
}
.face-btn {
  width: 50px; height: 50px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}
.face-btn:hover { border-color: var(--accent); background: rgba(0,212,255,0.1); }
.face-btn.selected { border-color: var(--accent); background: rgba(0,212,255,0.2); box-shadow: 0 0 20px rgba(0,212,255,0.3); }

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.qty-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--accent);
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}
.qty-btn:hover { border-color: var(--accent); background: rgba(0,212,255,0.1); }
.qty-display {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 60px;
  text-align: center;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.action-btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.action-btn:hover { transform: translateY(-2px); }
.call-bluff {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: white;
}
.place-bid {
  background: linear-gradient(135deg, var(--accent), #06b6d4);
  color: white;
}

/* 结果弹窗 */
.result-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center; justify-content: center;
  z-index: 300;
}
.result-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  animation: modalIn 0.3s ease-out;
}
@keyframes modalIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.result-icon { font-size: 4rem; margin-bottom: 1rem; }
.result-modal h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.result-modal p { color: var(--text-dim); margin-bottom: 1rem; }
.result-dice { margin: 1rem 0; font-size: 1.2rem; }
.play-again-btn {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  color: white;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

/* About */
.about-section {
  padding: 6rem 2rem;
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.about-content p {
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .glitch { font-size: 2.5rem; }
  .games-grid { grid-template-columns: 1fr; }
  .bid-controls { flex-direction: column; align-items: center; }
  .dice { width: 50px; height: 50px; font-size: 1.4rem; }
  .dice-back { width: 50px; height: 50px; }
}

/* ===== Auth ===== */
.auth-buttons { display: flex; gap: 0.5rem; }
.auth-btn {
  padding: 0.4rem 1rem; border-radius: 20px; border: none;
  font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.login-btn { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.login-btn:hover { background: rgba(0,212,255,0.15); }
.register-btn { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: white; }
.register-btn:hover { transform: scale(1.05); }
.logout-btn { background: transparent; border: 1px solid #ef4444; color: #ef4444; font-size: 0.8rem; }
.logout-btn:hover { background: rgba(239,68,68,0.15); }

.user-info { display: flex; align-items: center; gap: 0.5rem; }
.user-avatar { font-size: 1.3rem; }
.user-name { font-size: 0.9rem; color: var(--text); }

/* Auth Modal */
.auth-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7); z-index: 500;
  display: flex; align-items: center; justify-content: center;
}
.auth-modal {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem; width: 380px; max-width: 90vw;
  position: relative; animation: modalIn 0.3s ease-out;
}
.auth-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--text-dim);
  font-size: 1.2rem; cursor: pointer;
}
.auth-tabs { display: flex; gap: 0; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.auth-tab {
  flex: 1; padding: 0.8rem; text-align: center; background: none;
  border: none; color: var(--text-dim); cursor: pointer; font-size: 1rem;
  border-bottom: 2px solid transparent; transition: 0.3s;
}
.auth-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.auth-form { }
.auth-form h3 { text-align: center; margin-bottom: 1rem; font-size: 1.2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; color: var(--text-dim); font-size: 0.85rem; margin-bottom: 0.3rem; }
.form-group input {
  width: 100%; padding: 0.7rem 1rem; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 10px; color: var(--text);
  font-size: 0.95rem; outline: none; transition: 0.3s; box-sizing: border-box;
}
.form-group input:focus { border-color: var(--accent); box-shadow: 0 0 15px rgba(0,212,255,0.15); }
.form-error { color: #ef4444; font-size: 0.85rem; min-height: 1.2rem; text-align: center; }
.submit-btn {
  width: 100%; padding: 0.8rem; margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none; border-radius: 30px; color: white; font-size: 1rem;
  font-weight: 700; cursor: pointer; transition: 0.3s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 25px rgba(0,212,255,0.3); }

/* ===== Mode Select ===== */
.mode-select {
  max-width: 800px; margin: 0 auto; padding: 3rem 1rem; text-align: center;
}
.mode-select h2 { font-size: 1.8rem; margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.mode-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.mode-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem; cursor: pointer; transition: 0.3s;
}
.mode-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,212,255,0.15); border-color: var(--accent); }
.mode-icon { font-size: 3rem; width: 80px; height: 80px; margin: 0 auto 1rem; border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.mode-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.mode-card p { color: var(--text-dim); font-size: 0.9rem; }

.player-count-select { margin-top: 2rem; }
.player-count-select h3 { margin-bottom: 1rem; }
.count-buttons { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.count-buttons button {
  padding: 0.8rem 1.5rem; border-radius: 15px; border: 2px solid var(--border);
  background: transparent; color: var(--text); font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.count-buttons button:hover { border-color: var(--accent); background: rgba(0,212,255,0.1); transform: scale(1.05); }

/* ===== Multi-player UI ===== */
.game-play { display: flex; flex-direction: column; height: calc(100vh - 60px); }
.game-table { flex: 1; overflow-y: auto; padding: 0.5rem; }

.multi-player-area { max-width: 900px; margin: 0 auto; }
.multi-opponents { display: flex; flex-direction: column; gap: 0.5rem; }
.player-card {
  background: rgba(255,255,255,0.03); border: 2px solid var(--border);
  border-radius: 14px; padding: 0.8rem 1rem; transition: 0.3s;
}
.player-card.current-turn {
  border-color: var(--accent); box-shadow: 0 0 20px rgba(0,212,255,0.1);
  background: rgba(0,212,255,0.05);
}
.pc-info { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.pc-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.pc-name { font-size: 0.9rem; font-weight: 600; flex: 1; }
.pc-dice-count { font-size: 0.8rem; color: var(--text-dim); }
.pc-dice-area { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.dice-hidden { width: 40px; height: 40px; background: linear-gradient(145deg,#2a1a1a,#1a0a0a); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: rgba(255,255,255,0.3); border: 2px solid rgba(255,100,100,0.15); }

.multi-my-area { margin-top: 0.5rem; }
.eliminated { color: #666; font-size: 0.9rem; padding: 0.5rem; }

/* Smaller dice for multi */
#multiPlayerArea .dice { width: 42px; height: 42px; }
#multiPlayerArea .dice-face { padding: 5px; }
#multiPlayerArea .pip { width: 8px; height: 8px; }

.table-center { max-width: 900px; margin: 0.3rem auto; }
.bidding-area { background: rgba(0,0,0,0.3); border-radius: 12px; padding: 0.6rem 1rem; min-height: 50px; }
.current-bid { font-size: 1rem; color: var(--accent); }
.bid-history { font-size: 0.8rem; color: var(--text-dim); max-height: 40px; overflow-y: auto; }
.game-msg { text-align: center; padding: 0.3rem; font-size: 0.95rem; min-height: 30px; }

.result-dice { font-size: 0.9rem; line-height: 1.6; padding: 0.5rem; background: rgba(0,0,0,0.2); border-radius: 10px; }

