/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d3561 0%, #1a1a2e 100%);
  color: white;
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 2px solid #00d4ff;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
}

.cookie-content a {
  color: #00d4ff;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-btn {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.age-modal.show {
  opacity: 1;
  visibility: visible;
}

.age-modal-content {
  background: linear-gradient(135deg, #2d3561 0%, #1a1a2e 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  max-width: 400px;
  width: 90%;
}

.age-modal h2 {
  color: #00d4ff;
  margin-bottom: 15px;
  font-size: 24px;
}

.age-modal p {
  margin-bottom: 25px;
  color: #cccccc;
}

.age-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.age-btn {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-yes {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: white;
}

.age-no {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: white;
}

.age-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(135deg, #00d4ff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Burger Menu */
.burger-checkbox {
  display: none;
}

.burger-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: linear-gradient(135deg, #00d4ff 0%, #ffffff 100%);
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-checkbox:checked ~ .burger-label .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #2d3561 0%, #1a1a2e 100%);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.burger-checkbox:checked ~ .nav {
  transform: translateX(0);
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid transparent;
}

.nav-link:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateX(5px);
}

/* Menu Open State */
body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00d4ff 0%, #ffffff 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 15px;
  color: #cccccc;
}

.hero-status {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #00d4ff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Sections */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #00d4ff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Game Overview */
.overview {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.overview-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.overview-text strong {
  color: #00d4ff;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2d3561 0%, #1a1a2e 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0, 212, 255, 0.5);
  color: #666;
  font-size: 1.2rem;
}

.overview-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.overview-img:hover {
  transform: scale(1.02);
}

/* Features */
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.6);
}

.feature-icon {
  font-size: 3rem;
  min-width: 80px;
  text-align: center;
}

.feature-content h3 {
  color: #00d4ff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-content p {
  color: #cccccc;
  line-height: 1.6;
}

/* Progress */
.progress {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.progress-image {
  margin-bottom: 50px;
  text-align: center;
}

.progress-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.progress-img:hover {
  transform: scale(1.02);
}

.progress-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  position: relative;
}

.progress-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  min-width: 60px;
}

.progress-item.completed .progress-marker {
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  color: #1a1a2e;
}

.progress-item.active .progress-marker {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: white;
  animation: pulse 2s infinite;
}

.progress-item.upcoming .progress-marker {
  background: linear-gradient(135deg, #666 0%, #444 100%);
  color: white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.progress-content h3 {
  color: #00d4ff;
  margin-bottom: 10px;
}

.progress-content p {
  color: #cccccc;
}

.progress-item.active .progress-content p {
  color: #00d4ff;
  font-weight: bold;
}

/* Development Showcase */
.dev-showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d3561 0%, #1a1a2e 100%);
  text-align: center;
}

.dev-showcase-content {
  max-width: 800px;
  margin: 0 auto;
}

.dev-showcase-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.8;
}

.dev-showcase-content .btn {
  margin-top: 20px;
}

/* Sneak Peek */
.sneak-peek {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.sneak-peek-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.sneak-peek-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sneak-peek-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.sneak-peek-text {
  font-size: 2rem;
  color: #00d4ff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: bold;
}

/* Updates */
.updates {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.updates-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.update-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.update-item h3 {
  color: #00d4ff;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.update-item p {
  color: #cccccc;
  line-height: 1.8;
}

.update-item strong {
  color: #00d4ff;
}

/* O nas */
.o-nas {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
  text-align: center;
}

.o-nas-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.o-nas-content .btn {
  margin-top: 20px;
}

/* Blog */
.blog {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}

.blog-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-content .btn {
  margin-top: 20px;
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.faq-item h3 {
  color: #00d4ff;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.faq-item p {
  color: #cccccc;
  line-height: 1.8;
}

.faq-item strong {
  color: #00d4ff;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  color: #00d4ff;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.contact-item {
  margin-bottom: 20px;
  color: #cccccc;
}

.contact-item strong {
  color: #00d4ff;
  display: block;
  margin-bottom: 5px;
}

.contact-item a {
  color: #00d4ff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-description {
  margin-top: 25px;
  color: #cccccc;
  line-height: 1.8;
}

/* Form */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #00d4ff;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  color: #cccccc;
  font-size: 14px;
}

.checkbox-group a {
  color: #00d4ff;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

/* Footer */
.footer {
  padding: 40px 0;
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.footer-content {
  text-align: center;
}

.footer-nav {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-nav span {
  color: #cccccc;
}

.footer-nav a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.separator {
  color: #666;
}

.footer-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00d4ff;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
  margin: 5px 0;
}

.ssl-info {
  font-size: 12px !important;
  color: #666 !important;
}

/* Legal Pages */
.legal-page {
  min-height: 100vh;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.legal-page h1 {
  color: #00d4ff;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.legal-page h2 {
  color: #00d4ff;
  font-size: 1.8rem;
  margin: 40px 0 20px;
}

.legal-page h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin: 25px 0 15px;
}

.legal-page p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-page ul {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-page li {
  margin-bottom: 10px;
}

.legal-page a {
  color: #00d4ff;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page em {
  color: #888;
  font-style: italic;
}

/* Page Content Styles */
.page-content {
  min-height: 100vh;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.page-header {
  margin-bottom: 50px;
  text-align: center;
}

.page-header h1 {
  color: #00d4ff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-header p {
  color: #cccccc;
}

.page-header a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-header a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.page-hero-image {
  margin: 40px auto 60px;
  max-width: 1000px;
  text-align: center;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
}

.content-section {
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.content-section h2 {
  color: #00d4ff;
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: left;
}

.content-section h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 15px;
  margin-top: 25px;
}

.content-section p {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.content-section ul {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 30px;
}

.content-section li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.content-section strong {
  color: #00d4ff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.value-item {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.6);
}

.value-item h3 {
  color: #00d4ff;
  font-size: 1.3rem;
  margin-bottom: 15px;
  margin-top: 0;
}

.value-item p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1rem;
}

/* Blog Posts */
.blog-posts {
  max-width: 900px;
  margin: 0 auto;
}

.blog-post {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.6);
}

.post-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.post-header h2 {
  color: #00d4ff;
  font-size: 1.8rem;
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.post-date {
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
}

.post-content {
  color: #cccccc;
  line-height: 1.8;
}

.post-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.post-content strong {
  color: #00d4ff;
}

.blog-navigation {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.blog-navigation p {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .nav {
    width: 100%;
    padding: 100px 20px 30px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .progress-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav,
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .post-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero-image {
    margin: 30px auto 40px;
    padding: 0 20px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .sneak-peek-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .progress-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .age-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }

  .age-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-hero-image {
    margin: 20px auto 30px;
    padding: 0 10px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .hero-img {
    border-radius: 10px;
  }

  .age-btn {
    width: 100%;
  }
}
