/* 
* Bocoran Prediksi - Main Stylesheet
* Modern, responsive design with Brazilian-inspired color palette
*/

:root {
  --primary: #05386B;
  --secondary: #379683;
  --accent: #FF9000;
  --light: #EDF5E1;
  --dark: #1A1A1A;
  --gradient-primary: linear-gradient(135deg, #05386B 0%, #379683 100%);
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background-color: #f8f9fa;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 40px;
}

h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--accent);
  bottom: -15px;
  left: 0;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

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

section {
  padding: 80px 0;
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--accent);
  color: white;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu li a {
  font-weight: 600;
  position: relative;
}

.nav-menu li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-menu li a:hover:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
#hero {
  background: var(--gradient-primary);
  color: white;
  padding: 160px 0 80px;
  text-align: center;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Predictions Section */
.prediction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.prediction-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.prediction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.prediction-header {
  padding: 20px;
  background: var(--primary);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prediction-header h3 {
  margin: 0;
}

.date {
  font-size: 0.9rem;
  opacity: 0.8;
}

.prediction-content {
  padding: 25px;
}

.prediction-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  text-align: center;
}

.stat {
  flex: 1;
}

.number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prediction-card.featured {
  border: 2px solid var(--accent);
}

.prediction-card.featured .prediction-header {
  background: var(--accent);
}

/* Games Section */
.games-section {
  background-color: #f1f5f9;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #666;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.game-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--light);
  border-radius: 50%;
  color: var(--primary);
}

.game-icon span {
  font-size: 30px;
}

.game-card h3 {
  margin-bottom: 15px;
}

.news-sources {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.news-sources h3 {
  margin-bottom: 20px;
  text-align: center;
}

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

.news-item {
  padding: 15px;
  background: #f8f9fa;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.news-item:hover {
  background: var(--light);
}

/* Analysis Section */
.analysis-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.methodology {
  margin-top: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: var(--border-radius);
}

.methodology h4 {
  margin-bottom: 15px;
}

.methodology ul {
  list-style: none;
}

.methodology li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.methodology li:last-child {
  border-bottom: none;
}

.analysis-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: white;
  text-align: center;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
#about {
  background: linear-gradient(rgba(5, 56, 107, 0.9), rgba(5, 56, 107, 0.9)), url('https://source.unsplash.com/random/1200x800?casino') no-repeat center/cover;
  color: white;
}

#about h2:after {
  background: var(--accent);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

/* Footer */
footer {
  background: var(--dark);
  color: #bbb;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  color: white;
  margin: 20px 0 10px;
}

.footer-links h4,
.footer-legal h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

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

.footer-links a,
.footer-legal a {
  color: #bbb;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* Icon styles */
.icon-slot:before {
  content: '🎰';
  font-size: 32px;
}

.icon-cards:before {
  content: '🃏';
  font-size: 32px;
}

.icon-vip:before {
  content: '👑';
  font-size: 32px;
}

.icon-pro:before {
  content: '🏆';
  font-size: 32px;
}

.icon-accuracy:before {
  content: '📊';
  font-size: 24px;
}

.icon-updates:before {
  content: '🔄';
  font-size: 24px;
}

.icon-community:before {
  content: '👥';
  font-size: 24px;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .analysis-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  #hero {
    padding: 140px 0 60px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: none;
  }
  
  .nav-menu.active {
    display: block;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .prediction-stats {
    flex-direction: column;
  }
  
  .stat {
    margin-bottom: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links,
  .footer-legal {
    text-align: center;
  }
  
  .analysis-stats {
    grid-template-columns: 1fr;
  }
}
