/* ========================================
   全局樣式與CSS變量
======================================== */
:root {
  /* 配色方案 - 深藍紫色主題，高級感 */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #8b5cf6;
  --accent: #06b6d4;
  --success: #10b981;
  
  /* 背景色 */
  --bg-primary: #0f0f23;
  --bg-secondary: #1a1a3e;
  --bg-card: #252547;
  --bg-card-hover: #2d2d5f;
  
  /* 文字顏色 */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  /* 其他 */
  --border: rgba(148, 163, 184, 0.1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  
  /* 漸變 */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* ========================================
   基礎樣式重置
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans TC', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ========================================
   容器與佈局
======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ========================================
   Hero Section
======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 62, 0.95) 50%, rgba(37, 37, 71, 0.95) 100%), 
              url('../images/bgc.png') center/cover no-repeat;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, transparent 0%, rgba(15, 15, 35, 0.5) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(99, 102, 241, 0.03) 2px, rgba(99, 102, 241, 0.03) 4px);
  pointer-events: none;
}

/* Hero 圖文佈局 */
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--primary-light);
  font-weight: 700;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

.feature-item i {
  color: var(--primary-light);
  font-size: 16px;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-note i {
  color: var(--accent);
}

/* Hero 圖片區域 */
.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4/5;
  background: var(--gradient-primary);
}

/* 裝飾元素 */
.hero-decoration {
  position: absolute;
  border-radius: 24px;
  z-index: -1;
}

.decoration-1 {
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
  filter: blur(40px);
}

.decoration-2 {
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.4), rgba(245, 87, 108, 0.4));
  filter: blur(50px);
}

/* ========================================
   按鈕樣式
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.btn-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btn-icon-fa {
  font-size: 20px;
}

/* ========================================
   兩欄佈局
======================================== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.column-img {
  position: relative;
}

.img-placeholder {
  background: var(--gradient-primary);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  box-shadow: var(--shadow);
}

.img-placeholder i {
  font-size: 80px;
  opacity: 0.9;
}

.img-placeholder p {
  font-size: 24px;
  font-weight: 700;
}

.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.card-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title i {
  color: var(--primary-light);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list-item {
  display: flex;
  gap: 16px;
}

.item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  margin-top: 2px;
}

.item-icon i {
  color: var(--primary-light);
  font-size: 14px;
}

.item-content strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.item-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   福利網格
======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   適合對象網格
======================================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.who-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-3px);
}

.who-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 28px;
}

.who-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.who-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta-title i {
  color: var(--primary-light);
}

.cta-text {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-note {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-note i {
  color: var(--success);
}

/* ========================================
   Footer
======================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
}

.footer-disclaimer p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}

.footer-disclaimer strong {
  color: var(--text-secondary);
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-copyright p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ========================================
   Fixed Bottom Button
======================================== */
.fixed-bottom-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to top, rgba(15, 15, 35, 0.98) 0%, rgba(15, 15, 35, 0.95) 80%, transparent 100%);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
}

.btn-fixed {
  min-width: 320px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

/* ========================================
   響應式設計
======================================== */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .hero-grid {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .benefits-grid,
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .two-column {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* 通用容器 - 手機端緊湊居中 */
  .container {
    padding: 0 16px;
    max-width: 100%;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .section-title {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .section-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }
  
  /* Hero 手機端優化 */
  .hero {
    min-height: auto;
    padding: 80px 0 50px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-content {
    text-align: center;
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-badge {
    font-size: 13px;
    padding: 10px 18px;
    margin-bottom: 20px;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    font-size: 14px;
    padding: 10px 16px;
    justify-content: center;
  }
  
  .feature-item i {
    font-size: 15px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .hero-note {
    justify-content: center;
    font-size: 13px;
    text-align: center;
  }
  
  .hero-image-wrapper {
    border-radius: 16px;
  }
  
  .hero-img {
    border-radius: 16px;
    aspect-ratio: 3/4;
  }
  
  /* 按鈕手機端優化 */
  .btn {
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
  
  .btn-large {
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .btn-icon {
    width: 20px;
    height: 20px;
  }
  
  /* 兩欄佈局手機端 */
  .two-column {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .left-img .column-img,
  .right-img .column-img {
    order: -1;
  }
  
  .content-card {
    padding: 25px 20px;
  }
  
  .card-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  
  .list-item {
    gap: 12px;
  }
  
  .item-icon {
    width: 24px;
    height: 24px;
  }
  
  .item-content strong {
    font-size: 16px;
  }
  
  .item-content p {
    font-size: 14px;
  }
  
  /* 福利和適合對象網格 */
  .benefits-grid,
  .who-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .benefit-card,
  .who-card {
    padding: 30px 20px;
  }
  
  .benefit-icon,
  .who-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .benefit-title {
    font-size: 20px;
  }
  
  .benefit-desc {
    font-size: 14px;
  }
  
  /* CTA區域手機端 */
  .cta-box {
    padding: 40px 20px;
    border-radius: 20px;
  }
  
  .cta-title {
    font-size: 24px;
    flex-direction: column;
    gap: 10px;
    line-height: 1.3;
  }
  
  .cta-text {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .cta-note {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  
  /* Footer手機端 */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-disclaimer {
    padding: 20px;
    text-align: center;
  }
  
  /* Fixed底部按鈕手機端 */
  .fixed-bottom-btn {
    padding: 12px 16px;
  }
  
  .btn-fixed {
    min-width: auto;
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 15px;
    padding: 14px 20px;
  }
  
  .btn-fixed span {
    display: inline;
  }
}

@media (max-width: 480px) {
  /* 超小屏幕進一步優化 */
  .container {
    padding: 0 12px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 15px;
  }
  
  .btn {
    padding: 12px 18px;
    font-size: 14px;
    gap: 8px;
  }
  
  .btn-large {
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .benefit-card,
  .who-card {
    padding: 25px 16px;
  }
  
  .benefit-title,
  .who-card h4 {
    font-size: 18px;
  }
  
  .cta-box {
    padding: 30px 16px;
  }
  
  .cta-title {
    font-size: 22px;
  }
  
  .cta-text {
    font-size: 14px;
  }
  
  /* 確保所有文字內容居中對齊 */
  .hero-content,
  .section-header,
  .cta-content {
    text-align: center;
  }
}

/* ========================================
   特殊區段背景
======================================== */
.learn-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
}

.about-section {
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ========================================
   語言切換器
======================================== */
.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  gap: 8px;
  background: rgba(15, 15, 35, 0.95);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.lang-btn:hover {
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary-light);
  border-color: rgba(99, 102, 241, 0.3);
}

.lang-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.lang-btn i {
  font-size: 16px;
}

.lang-text {
  font-size: 14px;
}

/* 語言切換通知 */
.lang-notification {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 10000;
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-notification.show {
  transform: translateX(0);
  opacity: 1;
}

/* 手機端語言切換器 */
@media (max-width: 768px) {
  .lang-switcher {
    top: 12px;
    right: 12px;
    padding: 6px;
    gap: 6px;
  }
  
  .lang-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .lang-btn i {
    font-size: 14px;
  }
  
  .lang-text {
    font-size: 13px;
  }
  
  .lang-notification {
    top: 60px;
    right: 12px;
    font-size: 13px;
    padding: 10px 20px;
  }
}
