﻿/* 648bet - 巴西风格主题CSS
 * 采用巴西风格的鲜艳色彩和流畅设计
 */

:root {
    /* 文章内容变量 */
    --article-primary: var(--primary-color, #00d26a);
    --article-primary-70: rgba(0, 210, 106, 0.7);
    --article-primary-20: rgba(0, 210, 106, 0.2);

  --primary-color: #009c3b; /* 巴西国旗绿色 */
  --secondary-color: #ffdf00; /* 巴西国旗黄色 */
  --accent-color: #002776; /* 巴西国旗蓝色 */
  --text-light: #ffffff;
  --text-dark: #222222;
  --gradient-primary: linear-gradient(135deg, #009c3b, #006400);
  --gradient-secondary: linear-gradient(135deg, #ffdf00, #ffa500);
  --border-radius: 10px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #000000, #222222);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
}

.col-12 {
  width: 100%;
}

/* 响应式列 */
@media (min-width: 768px) {
  .container {
    max-width: 960px;
  }
  
  .col-lg-6 {
    width: 50%;
  }
  
  .col-md-4 {
    width: 33.333333%;
  }
}

@media (max-width: 767px) {
  .col-sm-12 {
    width: 100%;
  }
  
  .row {
    margin: 0 -10px;
  }
  
  [class*="col-"] {
    padding: 0 10px;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .justify-content-center {
    justify-content: center;
  }
}

/* 头部样式 */
header {
  background-color: #000000;
  padding: 15px 0;
  border-bottom: 3px solid var(--primary-color);
}

header .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

header img {
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--secondary-color);
}

/* 按钮样式 */
.btn {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  letter-spacing: 1px;
  margin: 5px;
}

.btn-primary {
  background: var(--accent-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background: #001a57;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 39, 118, 0.3);
}

.btn-success {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-success:hover {
  background: #00752c;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 156, 59, 0.3);
}

.btn-highlight {
  background: var(--gradient-secondary);
  color: var(--text-dark);
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.btn-highlight:hover {
  background: #ffdf00;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 223, 0, 0.5);
}

.bg-primary .btn-success {
  background: var(--gradient-secondary);
  color: var(--text-dark);
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

.bg-primary .btn-success:hover {
  background: #ffdf00;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 223, 0, 0.5);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 18px;
}

.rounded-2 {
  border-radius: 2px;
}

.rounded-5 {
  border-radius: 0;
}

/* 文本样式 */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--text-light);
}

.text-decoration-none {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

h2 {
  font-size: 2rem;
  color: var(--secondary-color);
}

h3 {
  font-size: 1.75rem;
  color: var(--text-light);
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* 内容区域样式 */
section {
  padding: 40px 0;
}

.bg-primary {
  background: var(--gradient-primary);
}

.py-2 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-5 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.my-2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.me-2, .me-3 {
  margin-right: 20px;
}

.ms-3 {
  margin-left: 20px;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 223, 0, 0.3);
}

/* 辅助类 */
.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

/* 页脚样式 */
footer {
  background-color: #000000;
  padding: 30px 0;
  border-top: 3px solid var(--primary-color);
  margin-top: 40px;
}

footer a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: inline-block;
  padding: 8px 15px;
  margin: 0 10px;
}

footer a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

footer .col-12 {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .text-decoration-none {
  position: relative;
}

footer .text-decoration-none:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

footer .text-decoration-none:hover:after {
  width: 100%;
}

/* 隐私政策和条款部分 */
#politica-privacidade, #termos-condicoes {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 20px auto;
  border-left: 5px solid var(--primary-color);
  text-align: center;
  max-width: 800px;
}

#politica-privacidade h2, #termos-condicoes h2 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

#politica-privacidade p, #termos-condicoes p {
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
}

/* 动画效果 */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.btn-success {
  animation: pulse 2s infinite;
}

/* 响应式调整 */
@media (max-width: 767px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  header .d-flex {
    flex-direction: column;
    text-align: center;
  }
  
  header img {
    margin-bottom: 15px;
  }
  
  .d-flex {
    flex-direction: column;
    align-items: center;
  }
  
  section {
    padding: 30px 0;
  }
}

/* 巴西赌场新用户奖励区域样式 */
.bonus-banner {
    background: linear-gradient(135deg, #8B0000, #000000);
    border-top: 3px solid gold;
    border-bottom: 3px solid gold;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.bonus-title {
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    color: white;
    text-align: center;
}

.bonus-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    color: white;
    text-align: center;
}

.bonus-value {
    color: gold;
    font-weight: bold;
    font-size: 1.5rem;
}

.bonus-card {
    background-color: rgba(0,0,0,0.7);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid gold;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-card h3 {
    color: gold;
}

/* 添加响应式样式 */
@media (max-width: 767px) {
    .bonus-card {
        padding: 15px 10px;
    }
    
    .bonus-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .bonus-card p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    .bonus-title {
        font-size: 1.8rem;
    }
    
    .bonus-subtitle {
        font-size: 1rem;
    }
    
    .bonus-value {
        font-size: 1.2rem;
    }
}

.bonus-cta {
  background: linear-gradient(135deg, #8B0000, #000000);
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 3px solid gold;
  border-bottom: 3px solid gold;
}

.bonus-button {
    background-color: gold;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    margin: 0;
}

.bonus-button:hover {
    background-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
    transform: scale(1.05);
}

.bonus-disclaimer {
    color: white;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* 清理后的统一样式 */
.bonus-banner, .bonus-cta {
    background: linear-gradient(135deg, #8B0000, #000000);
    border-top: 3px solid gold;
    border-bottom: 3px solid gold;
    height: 200px; /* 更高的固定高度 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.bonus-banner .container, .bonus-cta .container {
    width: 100%;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

/* 移动设备上的横幅优化 */
@media (max-width: 767px) {
    .bonus-banner, .bonus-cta {
        height: 150px; /* 固定相同高度 */
        min-height: 150px;
        padding: 15px 10px;
        overflow: hidden; /* 防止内容溢出 */
    }
    
    .bonus-title {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .bonus-subtitle {
        font-size: 0.9rem;
        margin-top: 5px;
    }
    
    .bonus-value {
        font-size: 1rem;
    }
    
    .bonus-button {
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 25px; /* 更圆润的按钮 */
        max-width: 80%; /* 限制宽度 */
        margin: 0 auto;
        display: block;
    }
    
    .bonus-disclaimer {
        font-size: 0.7rem;
        margin-top: 5px;
    }
} /* ============================================
   Article Page Styles - 通用文章页面样式
   适用于所有模板
   ============================================ */

/* Article Page Main Container */
.article-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

/* Article Content Container */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.98));
    border-radius: 20px;
    padding: 40px 50px;
    border: 1px solid rgba(var(--primary-rgb, 35, 181, 109), 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(var(--primary-rgb, 35, 181, 109), 0.1);
    position: relative;
    overflow: hidden;
}

.article-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient, linear-gradient(135deg, #23b56d, #0e9e55));
}

/* Article Title */
.article-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color, #23b56d);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Article Meta Info */
.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.article-meta .article-date::before {
    content: '📅 ';
}

/* Article Body - Main Content Styling */
.article-body {
    line-height: 1.9;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Headings in Article */
.article-body h2 {
    font-size: 1.8rem;
    color: var(--primary-color, #23b56d);
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(var(--primary-rgb, 35, 181, 109), 0.3);
}

.article-body h2::before {
    content: '📌 ';
}

.article-body h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color, #23b56d);
}

.article-body h4 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 25px 0 12px;
}

/* Paragraphs */
.article-body p {
    margin-bottom: 20px;
    text-align: justify;
    color: rgba(255, 255, 255, 0.85);
}

.article-body p:first-of-type {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Strong/Bold Text */
.article-body strong {
    color: var(--primary-color, #23b56d);
    font-weight: 600;
}

/* Links in Article */
.article-body a {
    color: var(--primary-color, #23b56d);
    text-decoration: underline;
    text-decoration-color: rgba(var(--primary-rgb, 35, 181, 109), 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.article-body a:hover {
    color: #fff;
}

/* Lists */
.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 0;
}

.article-body ul {
    list-style: none;
}

.article-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.article-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color, #23b56d);
    font-weight: bold;
}

.article-body ol {
    counter-reset: item;
    list-style: none;
}

.article-body ol li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    counter-increment: item;
}

.article-body ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient, linear-gradient(135deg, #23b56d, #0e9e55));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: #000;
}

/* Images in Article */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(var(--primary-rgb, 35, 181, 109), 0.2);
    display: block;
}

/* Blockquotes */
.article-body blockquote {
    margin: 30px 0;
    padding: 25px 30px;
    background: rgba(var(--primary-rgb, 35, 181, 109), 0.1);
    border-left: 4px solid var(--primary-color, #23b56d);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* Tables */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.article-body th {
    background: var(--gradient, linear-gradient(135deg, #23b56d, #0e9e55));
    color: #000;
    font-weight: 600;
    padding: 15px;
    text-align: left;
}

.article-body td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.article-body tr:hover td {
    background: rgba(var(--primary-rgb, 35, 181, 109), 0.1);
}

/* DIV containers from GPT content */
.article-body > div {
    margin-bottom: 25px;
}

/* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-navigation .nav-previous,
.article-navigation .nav-next {
    max-width: 45%;
}

.article-navigation a {
    color: var(--primary-color, #23b56d);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-navigation a:hover {
    color: #fff;
}

/* Related Articles */
.related-articles {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border-radius: 20px;
    border: 1px solid rgba(var(--primary-rgb, 35, 181, 109), 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.related-articles h2 {
    font-size: 1.6rem;
    color: var(--primary-color, #23b56d);
    margin-bottom: 25px;
    text-align: center;
}

.related-articles h2::before {
    content: '📚 ';
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-articles-grid a {
    display: block;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-articles-grid a:hover {
    border-color: var(--primary-color, #23b56d);
    transform: translateY(-5px);
}

.related-articles-grid a h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.related-articles-grid a .date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article-page {
        padding: 100px 15px 80px;
    }
    
    .article-content {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .article-content h1 {
        font-size: 1.8rem;
    }
    
    .article-body h2 {
        font-size: 1.4rem;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .article-navigation .nav-previous,
    .article-navigation .nav-next {
        max-width: 100%;
    }
    
    .related-articles {
        padding: 25px 20px;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}
