/* Bounty Bash - Pirate Adventure Mobile Game Website - Muffin Style */

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

:root {
  --primary-gold: #FFD700;
  --primary-blue: #1E3A8A;
  --accent-red: #DC2626;
  --dark-navy: #0F172A;
  --light-cream: #FEF3C7;
  --ocean-blue: #0EA5E9;
  --treasure-bronze: #CD7F32;
  --shadow-dark: rgba(0, 0, 0, 0.3);
  --muffin-bg: #f8fafc;
  --muffin-accent: #3b82f6;
  --muffin-soft: #e2e8f0;
  --text-primary: #000000;
  --text-secondary: #374151;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--muffin-bg);
  overflow-x: hidden;
}

/* Muffin Style Specific */
.muffin-style {
  background: var(--muffin-bg);
}

.muffin-style .main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

/* Top Up Link Styling */
.top-up-link {
  background: linear-gradient(45deg, var(--primary-gold), var(--treasure-bronze)) !important;
  color: var(--dark-navy) !important;
  border-radius: 20px !important;
  padding: 0.5rem 1rem !important;
  font-weight: bold !important;
  animation: pulse 2s infinite;
}

.top-up-link:hover {
  background: var(--primary-gold) !important;
  color: var(--dark-navy) !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive image rules based on display size */
img[src*="Splash_Screen"], 
img[src*="Heroes"], 
img[src*="Dragon_LS"] {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Container-based responsive sizing */
.gallery-item {
  max-width: 380px;
}

.gallery-item.large {
  max-width: none; /* Allow large item to use all space */
}

.showcase-image {
  max-width: 500px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .showcase-image {
    max-width: 380px;
  }
  
  .gallery-item {
    max-width: 320px;
  }
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--dark-navy);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.post-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--ocean-blue);
}

.read-more.disabled {
  color: var(--text-secondary);
  cursor: not-allowed;
}

.newsletter {
  background: var(--muffin-bg);
  padding: 3rem 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto;
  gap: 1rem;
}

.email-input {
  flex: 1;
  padding: 1rem;
  border: 2px solid var(--muffin-soft);
  border-radius: 10px;
  font-size: 1rem;
}

.email-input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.newsletter-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* Game Showcase Styles */
.game-showcase {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.game-image {
  flex: 0 0 300px;
}

.game-image img {
  width: 100%;
  border-radius: 15px;
}

.game-details {
  flex: 1;
}

.key-features {
  background: var(--muffin-bg);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.key-features ul {
  margin-bottom: 0;
}

.download-cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--ocean-blue));
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  color: white;
  margin-top: 1.5rem;
}

.download-buttons {
  margin-top: 1rem;
}

.final-cta {
  background: var(--dark-navy);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 3rem 0;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.2rem;
}

/* Comparison Table Styles */
.comparison-table {
  overflow-x: auto;
  margin: 2rem 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
  background: var(--dark-navy);
  color: white;
  padding: 1rem;
  font-weight: bold;
  text-align: left;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--muffin-soft);
}

.comparison-table tr:hover {
  background: var(--muffin-bg);
}

.comparison-table tr:first-child td {
  font-weight: bold;
  background: var(--light-cream);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .game-showcase {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .game-image {
    flex: none;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: 3rem;
  color: var(--text-primary);
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
}

h3 {
  font-size: 2rem;
  color: var(--text-primary);
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* Header & Navigation */
.header {
  background: var(--dark-navy);
  box-shadow: 0 4px 20px var(--shadow-dark);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 3px solid var(--primary-gold);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 100px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--light-cream);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-links a:hover {
  color: var(--primary-gold);
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Main Content */
.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--ocean-blue) 50%, var(--dark-navy) 100%);
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="white" opacity="0.2"/><circle cx="40" cy="30" r="1.5" fill="white" opacity="0.3"/><circle cx="70" cy="20" r="1" fill="white" opacity="0.2"/><circle cx="20" cy="60" r="1" fill="white" opacity="0.25"/><circle cx="80" cy="70" r="1.5" fill="white" opacity="0.3"/><circle cx="50" cy="80" r="1" fill="white" opacity="0.2"/></svg>') repeat;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounceIn 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--light-cream);
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  cursor: pointer;
  margin: 0.5rem;
  box-shadow: 0 6px 20px var(--shadow-dark);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-blue), var(--ocean-blue));
  color: white;
  border-color: var(--primary-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-dark);
  background: var(--primary-blue);
}

.btn-secondary {
  background: #000000;
  color: white;
  border-color: #000000;
}

.btn-secondary:hover {
  background: #333333;
  color: white;
  transform: translateY(-3px);
  border-color: #333333;
}

/* Store Buttons */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-blue);
}

.store-btn:hover {
  background: var(--ocean-blue);
  color: white;
  transform: scale(1.05);
}

/* Content Sections */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-navy);
  border-radius: 20px;
  margin: 2rem;
  box-shadow: 0 10px 40px var(--shadow-dark);
}

/* Cards & Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-dark);
  transition: transform 0.3s ease;
  border: 3px solid var(--primary-gold);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--shadow-dark);
}

/* Blog Styles */
.blog-post {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 20px;
  margin: 2rem 0;
  box-shadow: 0 10px 40px var(--shadow-dark);
}

.blog-meta {
  color: var(--treasure-bronze);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-content {
  line-height: 1.8;
}

.blog-content h2,
.blog-content h3 {
  color: var(--primary-blue);
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: var(--dark-navy);
  color: var(--light-cream);
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-top: 3px solid var(--primary-gold);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light-cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.social-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--primary-gold);
  color: var(--dark-navy);
  text-decoration: none;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--light-cream);
  transform: scale(1.1);
}

/* Animations */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-dark);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .section-alt {
    margin: 1rem;
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .blog-post {
    padding: 2rem 1.5rem;
  }
}

/* Download Hero Section */
.download-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: url('img/bg_piratebay.jpg') center/cover no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
}


.download-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.download-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.title-skull {
  height: 2.5em;
  width: auto;
  margin-right: 0.5rem;
  display: inline-block;
  flex-shrink: 0;
}

.title-ship {
  height: 3.5em;
  width: auto;
  margin-right: 0.5rem;
  display: inline-block;
}

.download-hero .hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
  opacity: 0.9;
}

/* Download Buttons */
.download-section {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.download-btn:hover {
  background: var(--ocean-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
}

/* Store Button Images */
.store-btn-img {
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.store-btn-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.store-button-image {
  height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.store-btn-img:hover .store-button-image {
  transform: scale(1.05);
}

.ios-btn {
  background: linear-gradient(45deg, #007AFF, #0051D0);
}

.android-btn {
  background: linear-gradient(45deg, #34A853, #0F9D58);
}

.btn-icon {
  font-size: 1.5rem;
}

.btn-text {
  font-size: 1.1rem;
}

/* Game Gallery Grid */
.game-gallery {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.overlay p {
  font-size: 0.9rem;
  margin: 0;
  color: white;
}

/* Quick Features */
.quick-features {
  padding: 3rem 2rem;
  background: white;
}

.features-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--muffin-soft);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-pill:hover {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.05);
  border-color: var(--primary-blue);
}

.feature-icon {
  font-size: 1.2rem;
}

/* Social Section */
.social-section {
  padding: 2rem;
  background: var(--muffin-soft);
}

.social-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover { background: #1877F2; color: white; }
.social-link.twitter:hover { background: #1DA1F2; color: white; }
.social-link.instagram:hover { background: #E4405F; color: white; }
.social-link.youtube:hover { background: #FF0000; color: white; }
.social-link.discord:hover { background: #5865F2; color: white; }

/* Reasons Section */
.reasons-section {
  padding: 2rem 0;
  background: var(--muffin-bg);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

.reason-item {
  background: white;
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  min-height: 140px;
}

.reason-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.reason-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .reason-item {
    padding: 1rem;
  }
}

/* Video Section */
.video-section {
  padding: 3rem 0;
  background: var(--muffin-bg);
}

.video-container-large {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
}

.video-container-large lite-youtube {
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-dark);
}


.video-container-large iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .video-container-large {
    max-width: 95%;
    margin: 0 auto;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 3rem 0;
  background: white;
}

.ratings-image-container {
  text-align: center;
  margin: 2rem 0;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ratings-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review {
  min-width: 300px;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  scroll-snap-align: start;
}

.review .stars {
  color: #ff9500;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.review h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1d1d1f;
}

.review p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #424245;
  margin-bottom: 0.75rem;
}

.review cite {
  font-size: 0.85rem;
  color: #666666;
  font-style: normal;
}

.review-separator {
  display: none;
}

.featured-review {
  min-width: 350px;
}

@media (max-width: 768px) {
  .reviews-grid {
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .review {
    min-width: 280px;
  }
}

/* Info Section */
.info-section {
  padding: 4rem 2rem;
  background: white;
}

.info-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.info-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.info-container p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: var(--muffin-bg);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.info-card p {
  font-size: 1rem;
  margin: 0;
  color: var(--text-secondary);
}

/* Navigation Section */
.navigation-section {
  padding: 3rem 2rem;
  background: var(--muffin-soft);
}

.nav-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.nav-link {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.nav-link:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Simple Footer */
.simple-footer {
  padding: 2rem;
  background: var(--dark-navy);
  color: white;
  text-align: center;
}

.simple-footer p {
  margin: 0.5rem 0;
  color: white;
}

.tagline {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Responsive Design for Muffin Style */
@media (max-width: 768px) {
  .logo-img {
    height: 80px;
  }
  
  .download-hero h1 {
    font-size: 2.5rem;
  }
  
  .download-hero .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .download-section {
    flex-direction: column;
    align-items: center;
  }
  
  .download-btn {
    width: 200px;
    justify-content: center;
  }
  
  .store-button-image {
    height: 50px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 0.5rem;
  }
  
  .gallery-item.large,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .features-container {
    justify-content: center;
  }
  
  .feature-pill {
    flex: 0 0 auto;
  }
  
  .social-container {
    flex-wrap: wrap;
  }
  
  .nav-container {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-link {
    width: 250px;
    text-align: center;
  }
  
  .info-container h2 {
    font-size: 2rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 70px;
  }
  
  .download-hero {
    padding: 3rem 1rem;
  }
  
  .download-hero h1 {
    font-size: 2rem;
  }
  
  .download-hero .hero-subtitle {
    font-size: 1rem;
  }
  
  .download-btn {
    width: 180px;
    padding: 0.8rem 1.5rem;
  }
  
  .store-button-image {
    height: 45px;
  }
  
  .btn-text {
    font-size: 1rem;
  }
  
  .game-gallery {
    padding: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 150px);
    gap: 0.25rem;
  }
  
  .quick-features,
  .social-section,
  .info-section,
  .navigation-section {
    padding: 2rem 1rem;
  }
  
  .feature-pill {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Top Up Page Styles */
.topup-hero {
  background: url('img/bg_piratebay.jpg') center/cover no-repeat;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.topup-hero::before {
  content: '💰💎⚓🏴‍☠️';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 8rem;
  opacity: 0.1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1;
}

.topup-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.discount-badge {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--dark-navy);
  padding: 1rem 2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  animation: bounce 2s infinite;
}

.discount-text {
  font-size: 2rem;
  display: block;
  line-height: 1;
}

.discount-subtitle {
  font-size: 1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.main-cta-btn, .shop-now-btn, .final-cta-btn {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-gold), var(--treasure-bronze));
  color: var(--dark-navy);
  padding: 1.5rem 3rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  margin: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.main-cta-btn:hover, .shop-now-btn:hover, .final-cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background: var(--primary-gold);
}

.cta-description {
  font-size: 1rem;
  margin-top: 1rem;
  opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 2rem;
  background: white;
}

.benefits-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--muffin-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Packages Section */
.packages-section {
  padding: 4rem 2rem;
  background: var(--muffin-soft);
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.packages-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.package-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card.popular {
  border: 3px solid var(--primary-gold);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gold);
  color: var(--dark-navy);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.package-discount {
  background: var(--accent-red);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.package-gems {
  font-size: 2rem;
  margin: 1rem 0;
  color: var(--primary-blue);
}

.package-price {
  margin: 1rem 0;
}

.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 0.5rem;
}

.sale-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-red);
}

.package-bonus {
  font-size: 0.9rem;
  color: var(--treasure-bronze);
  font-weight: 600;
  margin-top: 1rem;
}

/* How It Works */
.how-it-works {
  padding: 4rem 2rem;
  background: white;
}

.how-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  background: var(--muffin-soft);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.faq-item p {
  margin: 0;
  color: #64748b;
}

/* Final CTA */
.final-cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
  color: white;
  text-align: center;
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Back Arrow Styles */
.back-arrow {
  position: fixed;
  top: 140px;
  left: 30px;
  width: 48px;
  height: 48px;
  background: rgba(26, 26, 46, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.back-arrow:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateX(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.back-arrow svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .back-arrow {
    top: 120px;
    left: 20px;
    width: 44px;
    height: 44px;
  }
  
  .back-arrow svg {
    width: 22px;
    height: 22px;
  }
}

/* Blog Page New Layout Styles */
.featured-posts {
  padding: 3rem 2rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-card {
  background: #1a1a2e;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.featured-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  padding: 2rem;
  background: #1a1a2e;
  color: white;
}

.featured-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: white;
  transition: color 0.3s ease;
}

.featured-card-link {
  text-decoration: none;
  display: block;
}

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

.featured-card-link:hover h2 {
  color: var(--primary-gold);
}

.featured-content p {
  color: #b0b0b0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.more-articles {
  padding: 3rem 2rem;
  background: #0f0f1e;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.article-card {
  background: #1a1a2e;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-3px);
}

.article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 1.5rem;
  background: #1a1a2e;
}

.article-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  color: white;
  transition: color 0.3s ease;
}

.article-card-link {
  text-decoration: none;
  display: block;
}

.article-card-link:hover .article-card {
  transform: translateY(-3px);
}

.article-card-link:hover h3 {
  color: var(--primary-gold);
}

.article-content p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-image {
    height: 200px;
  }
}

/* Features Page Styles */
.features-hero {
  background: url('img/bg_piratebay.jpg') center/cover no-repeat;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}


.features-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.features-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.features-hero .hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
  opacity: 1;
}

.core-features {
  padding: 4rem 2rem;
  background: white;
}

.features-showcase {
  margin-top: 3rem;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 4rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-item.reverse {
  flex-direction: row-reverse;
}

.showcase-image {
  flex: 1;
  max-width: 400px;
}

.showcase-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.showcase-content {
  flex: 1;
}

.showcase-content h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.showcase-content ul {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

.showcase-content li {
  margin: 0.5rem 0;
  color: var(--text-secondary);
  font-weight: 500;
}

.gameplay-features {
  padding: 4rem 2rem;
  background: var(--muffin-soft);
}

.advanced-features {
  padding: 4rem 2rem;
  background: white;
}

.advanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advanced-card {
  background: var(--muffin-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.advanced-card:hover {
  transform: translateY(-10px);
}

.advanced-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.progress-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.progress-stats span {
  background: var(--primary-blue);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.download-cta {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.download-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.download-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Features Responsive */
@media (max-width: 768px) {
  .features-hero h1 {
    font-size: 2.5rem;
  }
  
  .showcase-item {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .showcase-item.reverse {
    flex-direction: column;
  }
  
  .showcase-content h3 {
    font-size: 1.5rem;
  }
  
  .progress-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .download-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .features-hero {
    padding: 3rem 1rem;
  }
  
  .features-hero h1 {
    font-size: 2rem;
  }
  
  /* Mobile responsive images */
  img[src*="Splash_Screen"], 
  img[src*="Heroes"], 
  img[src*="Dragon_LS"] {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .showcase-item {
    gap: 1.5rem;
  }
  
  .advanced-card {
    padding: 2rem;
  }
}

/* Mobile Responsiveness for Top Up */
@media (max-width: 768px) {
  .topup-hero {
    padding: 3rem 1rem;
  }
  
  .discount-text {
    font-size: 1.5rem;
  }
  
  .main-cta-btn, .shop-now-btn, .final-cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .package-card.popular {
    transform: none;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--primary-blue); }
.text-cream { color: var(--text-primary); }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }
.p-2 { padding: 2rem; }

/* SEO-friendly image styles */
img {
  max-width: 100%;
  height: auto;
}

.screenshot {
  border-radius: 20px;
  margin: 1rem 0;
  border: 3px solid var(--primary-gold);
}

/* Loading and performance optimizations */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}