/* Inline comments on update cards (match site design) */
.update-comments {
  margin-top: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}
.update-comments .comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.update-comments .comment-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
}
.update-comments .comment-meta {
  color: #9aa4b2;
  font-size: 12px;
  margin-bottom: 6px;
}
.update-comments .comment-text {
  line-height: 1.6;
  white-space: pre-wrap;
}
.update-comments .comment-empty {
  font-size: 14px;
  color: #cfd6e5;
  opacity: 0.85;
}
.update-comments .comment-form textarea {
  width: 100%;
  min-height: 64px;
  resize: vertical;
  margin: 10px 0 0;
}
.update-comments .comment-form .btn {
  margin-top: 8px;
}
.comments-toggle {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.comments-toggle button {
  background: rgba(255, 255, 255, 0.06);
  color: var(--primary-color);
  border: 1px solid rgba(231, 76, 60, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.comments-toggle button:hover {
  background: rgba(231, 76, 60, 0.15);
}

/* DevBlog page comments */
.devblog-comments {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.devblog-comments h3 {
  margin: 0 0 10px 0;
}
.devblog-comments #comments-list .comment-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
}
.devblog-comments #comments-list .comment-meta {
  color: #9aa4b2;
  font-size: 12px;
  margin-bottom: 6px;
}
.devblog-comments #comment-form {
  display: flex;
  gap: 8px;
}
.devblog-comments #comment-form textarea {
  flex: 1 1 auto;
  background: rgba(0, 0, 0, 0.4);
  color: #e3e9f3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px;
}
.devblog-comments #comment-form .btn {
  background: linear-gradient(180deg, #dc143c, #b22222);
  color: #fff;
  border: 1px solid rgba(220, 20, 60, 0.6);
  border-radius: 8px;
  padding: 8px 12px;
}

.social-share .fa-comments {
  color: currentColor;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Language Selector */
.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.language-selector select {
  background: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  min-width: 140px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.language-selector select:hover {
  background: rgba(0, 0, 0, 0.95);
  border-color: rgba(220, 53, 69, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 53, 69, 0.3);
}

.language-selector select:focus {
  outline: none;
  border-color: #dc3545;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.3);
  background: rgba(0, 0, 0, 0.98);
}

.language-selector select option {
  background: #1a1a1a;
  color: #ffffff;
  padding: 12px;
  border: none;
  font-size: 14px;
  font-weight: 500;
}

.language-selector select option:hover {
  background: #dc3545;
  color: #ffffff;
}

.language-selector select option:checked {
  background: #dc3545;
  color: #ffffff;
}

/* Melhorias para dispositivos móveis */
@media (max-width: 768px) {
  .language-selector {
    top: 15px;
    right: 15px;
  }

  .language-selector select {
    padding: 8px 12px;
    font-size: 13px;
    min-width: 120px;
    padding-right: 35px;
    background-size: 14px;
    border-color: rgba(220, 53, 69, 0.3);
  }

  .language-selector select:hover {
    border-color: rgba(220, 53, 69, 0.8);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  }

  .language-selector select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
  }
}

@media (max-width: 480px) {
  .language-selector {
    top: 10px;
    right: 10px;
  }

  .language-selector select {
    padding: 6px 10px;
    font-size: 12px;
    min-width: 100px;
    padding-right: 30px;
    background-size: 12px;
    border-color: rgba(220, 53, 69, 0.3);
  }

  .language-selector select:hover {
    border-color: rgba(220, 53, 69, 0.8);
    box-shadow: 0 3px 12px rgba(220, 53, 69, 0.3);
  }

  .language-selector select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.3);
  }
}

@media (max-width: 360px) {
  .language-selector {
    top: 8px;
    right: 8px;
  }

  .language-selector select {
    padding: 5px 8px;
    font-size: 11px;
    min-width: 90px;
    padding-right: 25px;
    background-size: 10px;
    border-color: rgba(220, 53, 69, 0.3);
  }

  .language-selector select:hover {
    border-color: rgba(220, 53, 69, 0.8);
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
  }

  .language-selector select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.3);
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(45deg, #dc143c, #b22222);
  z-index: 1001;
  transition: width 0.1s ease;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 20px rgba(220, 20, 60, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 150px;
  height: 155px;
  border-radius: 6px;
  object-fit: contain;
}

.hero-logo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  margin-top: 20px;
}

.hero-logo-img {
  width: 460px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(45deg, #dc143c, #b22222);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #dc143c;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #dc143c, #b22222);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.store-btn {
  background: linear-gradient(45deg, #dc143c, #ff1744);
  padding: 10px 20px;
  border-radius: 25px;
  color: #ffffff !important;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.store-btn:hover {
  background: linear-gradient(45deg, #ff1744, #dc143c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* 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%;
  z-index: -1;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  border: none;
}

@media (min-aspect-ratio: 16/9) {
  .hero-video {
    width: 100vw;
    height: calc(100vw * 9 / 16);
  }
}

@media (max-aspect-ratio: 16/9) {
  .hero-video {
    width: calc(100vh * 16 / 9);
    height: 100vh;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.8),
    rgba(10, 10, 10, 0.3)
  );
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 1;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #dc143c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, #dc143c, #ff1744);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ff1744, #dc143c);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
  background: linear-gradient(45deg, #34a853, #4caf50);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(45deg, #4caf50, #34a853);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: fadeInUp 1s ease 0.3s both;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(220, 20, 60, 0.4);
}

.stat-item .steam-stat-icon,
.stat-item .android-stat-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.stat-item .steam-stat-icon {
  color: #00adee;
}

.stat-item .android-stat-icon {
  color: #3ddc84;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #dc143c;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
  text-align: center;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ffffff, #dc143c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #dc143c;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 30px;
}

.game-info {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #dc143c;
}

.info-item i {
  color: #dc143c;
  font-size: 1.1rem;
  width: 20px;
}

.info-item span {
  color: #ffffff;
  font-size: 0.95rem;
}

.info-item strong {
  color: #dc143c;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(220, 20, 60, 0.4);
  transform: translateX(5px);
}

.feature-item i {
  color: #dc143c;
  font-size: 1.2rem;
}

.feature-item span {
  color: #ffffff;
  font-weight: 500;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #0a0a0a;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(220, 20, 60, 0.4);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #dc143c, #b22222);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.feature-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.feature-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(220, 20, 60, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: #ffffff;
}

/* Community Section */
.community {
  padding: 100px 0;
  background: #0a0a0a;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.community-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.community-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(220, 20, 60, 0.4);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.1);
}

.community-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #dc143c, #b22222);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.community-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.community-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.community-card p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.community-link {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #dc143c, #b22222);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.community-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* Store Section */
.store {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

/* Google Play Store Section - Now uses .store styles */

.rating-overview {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
}

.rating-stars {
  display: flex;
  gap: 5px;
}

.rating-stars i {
  color: #ffd700;
  font-size: 1.2rem;
}

.rating-count {
  color: #cccccc;
  font-size: 1rem;
  font-weight: 500;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-bar span:first-child {
  color: #cccccc;
  font-weight: 600;
  min-width: 20px;
}

.bar-container {
  flex: 1;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 6px;
  transition: width 0.3s ease;
}

.rating-bar span:last-child {
  color: #cccccc;
  font-size: 0.9rem;
  min-width: 30px;
  text-align: right;
}

/* Data Safety Section - Now uses .store styles */

.data-sharing,
.data-collection {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.data-sharing h4,
.data-collection h4 {
  color: #ff6b6b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.data-type {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.data-type i {
  color: #ff6b6b;
  font-size: 1.1rem;
}

.data-type span {
  color: #e0e0e0;
  font-weight: 500;
}

.data-collection p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
}

.data-security {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.security-item i {
  color: #4caf50;
  font-size: 1.1rem;
}

.security-item span {
  color: #e0e0e0;
  font-weight: 500;
}

/* App Info Section - Now uses .store styles */

.category-tag,
.content-rating-tag {
  display: inline-block;
  background: rgba(61, 220, 132, 0.2);
  color: #3ddc84;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(61, 220, 132, 0.3);
}

.update-date {
  color: #cccccc;
  font-size: 1rem;
  font-weight: 500;
}

.language-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.language-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Action Section - Now uses .store styles */

/* Meta section - Now uses .store styles */

/* Responsive Design - Now uses .store styles */

.store-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.store-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #dc143c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.store-info p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.store-features {
  margin-bottom: 30px;
}

.store-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid #dc143c;
}

.store-feature i {
  color: #dc143c;
  font-size: 1.1rem;
}

.store-feature span {
  color: #ffffff;
  font-weight: 500;
}

.store-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.price-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: #dc143c;
}

.price-discount {
  background: linear-gradient(45deg, #dc143c, #b22222);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.store-languages {
  margin-bottom: 30px;
}

.store-languages h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.language-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.language-tag {
  background: rgba(220, 20, 60, 0.2);
  color: #dc143c;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(220, 20, 60, 0.3);
}

.store-action {
  text-align: center;
}

.btn-store {
  background: linear-gradient(45deg, #dc143c, #b22222);
  color: #ffffff;
  padding: 20px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
}

.store-meta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-meta span {
  color: #cccccc;
  font-size: 0.9rem;
}

/* System Requirements */
.system-requirements {
  margin-top: 20px;
}

.system-requirements h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.requirements-minimum,
.requirements-recommended {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(220, 20, 60, 0.2);
}

.requirements-minimum h5,
.requirements-recommended h5 {
  color: #dc143c;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.requirements-minimum ul,
.requirements-recommended ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.requirements-minimum li,
.requirements-recommended li {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.requirements-minimum strong,
.requirements-recommended strong {
  color: #ffffff;
  font-weight: 600;
}

/* Newsletter Section */
.newsletter {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  margin-bottom: 40px;
}

.form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-group input[type='email'] {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border: 2px solid rgba(220, 20, 60, 0.3);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.form-group input[type='email']:focus {
  outline: none;
  border-color: #dc143c;
  background: rgba(255, 255, 255, 0.08);
}

.form-group input[type='email']::placeholder {
  color: #cccccc;
}

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(220, 20, 60, 0.4);
  transform: translateY(-2px);
}

.benefit-item i {
  color: #dc143c;
  font-size: 1.2rem;
}

.benefit-item span {
  color: #ffffff;
  font-weight: 500;
}

/* Devblogs Section */
.devblogs {
  padding: 100px 0;
  background: #0a0a0a;
}

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

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

.devblog-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(220, 20, 60, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.devblog-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(220, 20, 60, 0.4);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.1);
}

.devblog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.devblog-date {
  color: #cccccc;
  font-size: 0.9rem;
}

.devblog-category {
  background: linear-gradient(45deg, #dc143c, #b22222);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.devblog-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.devblog-card p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.devblog-link {
  color: #dc143c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.devblog-link:hover {
  color: #ff1744;
}

.devblogs-action {
  text-align: center;
}

/* Steam Updates Styles */
.steam-updates {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.updates-content {
  margin-top: 60px;
}

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

.update-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.update-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
  border-color: rgba(255, 107, 107, 0.3);
}

.update-card.loading {
  opacity: 0.7;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.update-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.update-date {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 500;
}

.update-category {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.update-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 15px 0;
  line-height: 1.4;
}

.update-card p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.update-link {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.update-link:hover {
  color: #ff5252;
  transform: translateX(5px);
}

.update-link i {
  font-size: 0.9rem;
}

.updates-action {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.updates-action .btn {
  min-width: 180px;
}

.update-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, #ee5a52);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.update-card:hover::before {
  opacity: 1;
}

/* Partner Host Section */
.partner-host {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.95),
    rgba(20, 20, 20, 0.95)
  );
  position: relative;
}

.partner-host::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(220,20,60,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.partner-host-content {
  position: relative;
  z-index: 2;
}

.partner-host-header {
  text-align: center;
  margin-bottom: 60px;
}

.partner-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.partner-logo-img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.partner-host-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #dc143c, #b22222);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-host-header p {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

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

.partner-feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 20, 60, 0.1);
  transition: all 0.3s ease;
}

.partner-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(220, 20, 60, 0.3);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.partner-feature i {
  font-size: 2.5rem;
  color: #dc143c;
  margin-bottom: 20px;
  display: block;
}

.partner-feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.partner-feature p {
  color: #cccccc;
  line-height: 1.6;
}

.partner-cta {
  text-align: center;
}

.partner-cta .btn {
  font-size: 1.1rem;
  padding: 15px 40px;
  margin-bottom: 15px;
}

.partner-cta p {
  color: #888888;
  font-size: 0.9rem;
  font-style: italic;
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(220, 20, 60, 0.2);
}

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

.footer-section h4 {
  color: #dc143c;
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 200px;
  height: 205px;
  border-radius: 6px;
  object-fit: contain;
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #dc143c;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #cccccc;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(220, 20, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc143c;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-x-icon {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.footer-social a:hover {
  background: #dc143c;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #dc143c;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Privacy Policy Styles */
.privacy-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.privacy-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.privacy-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.privacy-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.privacy-hero .hero-text {
  width: 100%;
}

.privacy-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-hero .hero-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-hero .hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 20px;
}

.privacy-policy {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.privacy-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-header h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-date {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
}

.privacy-text {
  color: #ffffff;
  line-height: 1.8;
}

.privacy-text h2 {
  color: #ff6b6b;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 30px 0 15px 0;
  border-left: 4px solid #ff6b6b;
  padding-left: 15px;
}

.privacy-text p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.privacy-text ul {
  margin: 15px 0;
  padding-left: 20px;
}

.privacy-text li {
  margin-bottom: 8px;
  color: #d0d0d0;
}

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

.privacy-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 12px 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-hero {
    height: 50vh;
    min-height: 350px;
  }

  .privacy-hero .hero-title {
    font-size: 2.5rem;
  }

  .privacy-hero .hero-subtitle {
    font-size: 1rem;
  }

  .privacy-content {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .privacy-header h1 {
    font-size: 2rem;
  }

  .privacy-text h2 {
    font-size: 1.3rem;
  }

  .language-selector {
    top: 15px;
    right: 15px;
  }

  .language-selector select {
    padding: 6px 10px;
    font-size: 13px;
    border-color: rgba(220, 53, 69, 0.3);
  }

  .language-selector select:hover {
    border-color: rgba(220, 53, 69, 0.8);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  }

  .language-selector select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo-img {
    width: 120px;
    height: 125px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
    backdrop-filter: blur(10px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-logo-img {
    width: 280px;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 15px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .store-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 15px;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .partner-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partner-host-header h2 {
    font-size: 2rem;
  }

  .partner-logo-img {
    width: 150px;
  }

  .container {
    padding: 0 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .newsletter-content {
    padding: 0 15px;
  }

  .devblogs-content {
    padding: 0 15px;
  }

  .updates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .update-card {
    padding: 20px;
  }

  .updates-action {
    flex-direction: column;
    align-items: center;
  }

  .updates-action .btn {
    min-width: 200px;
    margin: 5px 0;
  }

  .partner-host-content {
    padding: 0 15px;
  }

  .privacy-content {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .privacy-header h1 {
    font-size: 2rem;
  }

  .privacy-text h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    height: 45vh;
    min-height: 300px;
  }

  .privacy-hero .hero-title {
    font-size: 2rem;
  }

  .privacy-hero .hero-subtitle {
    font-size: 0.9rem;
  }

  .privacy-content {
    padding: 25px 15px;
    margin: 0 10px;
  }

  .privacy-header h1 {
    font-size: 1.9rem;
  }

  .privacy-text h2 {
    font-size: 1.25rem;
  }

  .hero-logo-img {
    width: 220px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .community-card {
    padding: 25px 15px;
  }

  .store-price {
    flex-direction: column;
    align-items: center;
  }

  .price-new {
    font-size: 2rem;
  }

  .form-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .form-group input[type='email'] {
    min-width: 100%;
    margin-bottom: 15px;
    width: 100%;
  }

  .newsletter-benefits {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .devblogs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .partner-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Responsive Filters for Small Screens */
  .filters {
    gap: 10px;
  }

  .filter-group label {
    font-size: 11px;
  }

  .filter-group select,
  .search-box input {
    padding: 6px 10px;
    font-size: 13px;
  }

  .footer-logo img {
    width: 150px;
    height: 155px;
  }

  .logo-img {
    width: 120px;
    height: 125px;
  }

  .privacy-content {
    padding: 25px 15px;
    margin: 0 10px;
  }

  .privacy-header h1 {
    font-size: 1.9rem;
  }

  .privacy-text h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 360px) {
  .privacy-hero {
    height: 40vh;
    min-height: 250px;
  }

  .privacy-hero .hero-title {
    font-size: 1.8rem;
  }

  .privacy-hero .hero-subtitle {
    font-size: 0.85rem;
  }

  .privacy-content {
    padding: 20px 15px;
    margin: 0 10px;
  }

  .privacy-header h1 {
    font-size: 1.8rem;
  }

  .privacy-text h2 {
    font-size: 1.2rem;
  }

  .language-selector {
    top: 10px;
    right: 10px;
  }

  .language-selector select {
    padding: 5px 8px;
    font-size: 12px;
    border-color: rgba(220, 53, 69, 0.3);
  }

  .language-selector select:hover {
    border-color: rgba(220, 53, 69, 0.8);
    box-shadow: 0 3px 12px rgba(220, 53, 69, 0.3);
  }

  .language-selector select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.3);
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-logo-img {
    width: 180px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .partner-host-header h2 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 10px;
  }

  .hero-content {
    padding: 0 10px;
  }

  .about-content {
    padding: 0 10px;
  }

  .store-content {
    padding: 0 10px;
    gap: 30px;
  }

  .newsletter-content {
    padding: 0 10px;
  }

  .devblogs-content {
    padding: 0 10px;
  }

  .partner-host-content {
    padding: 0 10px;
  }

  .modal-close {
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
  }

  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }

  .privacy-content {
    padding: 20px 15px;
    margin: 0 10px;
  }

  .privacy-header h1 {
    font-size: 1.8rem;
  }

  .privacy-text h2 {
    font-size: 1.2rem;
  }
}

/* DevBlogs Section Styles */
.devblogs-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

/* DevBlogs Filters */
.filters {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-group label {
  font-size: 12px;
  color: #ccc;
  font-weight: 500;
}

.filter-group select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.search-box {
  flex: 1;
  min-width: 200px;
}

.search-box input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.search-box input::placeholder {
  color: #aaa;
}

.devblogs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 107, 107, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.devblogs-content {
  margin-top: 60px;
}

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

.devblog-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.devblog-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 107, 107, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.devblog-card:hover::before {
  opacity: 1;
  animation: shimmer 2s ease-in-out infinite;
}

.devblog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
  border-color: rgba(255, 107, 107, 0.3);
}

.devblog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.devblog-date {
  color: #ff6b6b;
  font-size: 0.9rem;
  font-weight: 500;
}

.devblog-category {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.devblog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.devblog-card p {
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.devblog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6b6b;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.devblog-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.devblog-link i {
  transition: transform 0.3s ease;
}

.devblog-link:hover i {
  transform: translateX(5px);
}

.devblog-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
}

.social-share {
  display: flex;
  gap: 8px;
  align-items: center;
}

.share-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-btn:hover .fab.fa-twitter {
  color: #1da1f2;
}

.share-btn:hover .fab.fa-facebook {
  color: #4267b2;
}

.share-btn:hover .fab.fa-linkedin {
  color: #0077b5;
}

.share-btn:hover .fas.fa-copy {
  color: #28a745;
}

.share-btn:active {
  transform: translateY(0);
}

.devblogs-action {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.devblog-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.devblog-card.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: loading 1.5s infinite;
}

/* Roadmap Section Styles */
.roadmap-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 80%,
    rgba(107, 255, 107, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.roadmap-content {
  margin-top: 60px;
}

.roadmap-timeline {
  max-width: 800px;
  margin: 0 auto 50px;
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #ff6b6b, #6bb6ff, #6bff6b);
  border-radius: 1px;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.roadmap-status {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 30px;
  position: relative;
  z-index: 2;
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.roadmap-status.completed {
  background: linear-gradient(135deg, #6bff6b, #4caf50);
  color: white;
  box-shadow: 0 0 20px rgba(107, 255, 107, 0.4);
}

.roadmap-status.in-progress {
  background: linear-gradient(135deg, #6bb6ff, #2196f3);
  color: white;
  box-shadow: 0 0 20px rgba(107, 182, 255, 0.4);
}

.roadmap-status.planning {
  background: linear-gradient(135deg, #ffeb3b, #ffc107);
  color: #333;
  box-shadow: 0 0 20px rgba(255, 235, 59, 0.4);
}

.roadmap-status.testing {
  background: linear-gradient(135deg, #ff6b6b, #f44336);
  color: white;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.roadmap-content-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.roadmap-item:hover .roadmap-content-item {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.2);
}

.roadmap-content-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

.roadmap-content-item p {
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.roadmap-progress {
  display: flex;
  align-items: center;
  gap: 15px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b6b, #6bb6ff);
  border-radius: 4px;
  transition: width 0.6s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: progress-shine 2s ease-in-out infinite;
}

.progress-text {
  color: #ff6b6b;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 40px;
}

.roadmap-action {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.roadmap-item.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Animations */
@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Newsletter Section Styles */
.newsletter-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ff6b6b' fill-opacity='0.03'%3E%3Cpolygon points='36 34 6 34 6 4 36 4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-info h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-info p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 35px;
}

.newsletter-benefits {
  display: grid;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateX(10px);
}

.benefit-item i {
  color: #ff6b6b;
  font-size: 1.2rem;
  min-width: 20px;
}

.benefit-item span {
  font-weight: 500;
  color: #ffffff;
}

.newsletter-form-container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.newsletter-form h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.newsletter-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.newsletter-form .form-group input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form .form-group input:focus {
  outline: none;
  border-color: #ff6b6b;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
}

.btn-newsletter {
  width: 100%;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.btn-newsletter:hover:not(:disabled) {
  background: linear-gradient(135deg, #ee5a52, #d43f3f);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 82, 0.4);
}

.btn-newsletter:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.newsletter-privacy {
  text-align: center;
}

.newsletter-privacy small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.4;
}

.newsletter-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  animation: slideInDown 0.3s ease;
}

.newsletter-success {
  background: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.4);
  color: #28a745;
}

.newsletter-error {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .devblogs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .devblog-card {
    padding: 20px;
  }

  .roadmap-timeline::before {
    left: 20px;
  }

  .roadmap-status {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-right: 20px;
  }

  .roadmap-content-item {
    padding: 20px;
  }

  .devblogs-action,
  .roadmap-action {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 200px;
    text-align: center;
  }

  /* Responsive Filters */
  .filters {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .filter-group {
    width: 100%;
  }

  .search-box {
    min-width: auto;
    width: 100%;
  }
}

/* Steam and Android Icons Styling */
.steam-icon {
  font-size: 1.5rem;
  color: #00adee;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.android-icon {
  font-size: 1.5rem;
  color: #3ddc84;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.steam-stat-icon {
  font-size: 1.2rem;
  color: #00adee;
  margin-right: 8px;
  margin-bottom: 5px;
  display: block;
}

.android-stat-icon {
  font-size: 1.2rem;
  color: #3ddc84;
  margin-right: 8px;
  margin-bottom: 5px;
  display: block;
}

.store-main-icon {
  font-size: 3rem;
  color: #00adee;
  margin-right: 15px;
  margin-bottom: 10px;
  display: block;
}

.download-icon {
  font-size: 1.2rem;
  color: #ffffff;
  margin-left: 8px;
  margin-right: 8px;
}

.cart-icon {
  font-size: 1.2rem;
  color: #ffffff;
  margin-left: 8px;
  margin-right: 8px;
}

.android-meta-icon {
  font-size: 1.1rem;
  color: #3ddc84;
  margin-right: 8px;
}

.windows-meta-icon {
  font-size: 1.1rem;
  color: #0078d4;
  margin-right: 8px;
}

.store-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.store-header h2 {
  margin: 0;
}

/* Hover effects for icons */
.btn:hover .steam-icon {
  transform: scale(1.1);
  color: #ffffff;
}

.btn:hover .android-icon {
  transform: scale(1.1);
  color: #ffffff;
}

.btn:hover .download-icon {
  transform: scale(1.1);
}

.btn:hover .cart-icon {
  transform: scale(1.1);
}

/* Font loading fallback - ensures text remains readable even if custom fonts fail */
@supports (font-display: swap) {
  /* Modern browsers with font-display support */
  @font-face {
    font-family: 'Inter';
    font-display: swap;
  }
}

/* Fallback for when Inter font fails to load */
.fonts-failed body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Ensure text remains visible during font loading */
.fonts-loading body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* === NOVAS FUNCIONALIDADES === */

/* Notifications System */
.notifications-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  max-width: 400px;
}

.notification {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  padding: 15px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.notification.show {
  transform: translateX(0);
}

.notification::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.notification-info::before {
  background: #007bff;
}
.notification-success::before {
  background: #28a745;
}
.notification-warning::before {
  background: #ffc107;
}
.notification-error::before {
  background: #dc3545;
}

.notification-message {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
}

.notification-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.notification-close:hover {
  background: #f0f0f0;
  color: #666;
}

/* Tooltips */
.tooltip {
  position: absolute;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}

.tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* Theme Switcher */
.theme-toggle {
  background: none;
  border: 2px solid #ddd;
  border-radius: 25px;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.theme-toggle:hover {
  border-color: #007bff;
  background: #f8f9fa;
}

.theme-icon {
  font-size: 16px;
}

/* Dark Theme */
[data-theme='dark'] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --border-color: #444444;
  --accent-color: #4a9eff;
}

[data-theme='dark'] body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

[data-theme='dark'] .header,
[data-theme='dark'] .footer {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}

[data-theme='dark'] .nav-link {
  color: var(--text-secondary);
}

[data-theme='dark'] .nav-link:hover {
  color: var(--accent-color);
}

[data-theme='dark'] .card {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
}

[data-theme='dark'] .btn {
  background-color: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

[data-theme='dark'] .btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Accessibility Features */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #007bff;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10001;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
}

.focused {
  outline: 3px solid #007bff;
  outline-offset: 2px;
}

/* Search Functionality */
.search-container {
  position: relative;
  margin: 20px 0;
}

.search-input {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-results {
  margin-top: 20px;
}

.search-result-item {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  border-color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

/* Lazy Loading */
.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy.loaded {
  opacity: 1;
}

/* Performance Indicators */
.performance-indicator {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  border-radius: 6px;
  font-size: 12px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.performance-indicator.show {
  opacity: 1;
}

/* Enhanced Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  color: inherit;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.open {
    display: block;
  }

  .nav-menu .nav-link {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
  }

  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }
}

/* Enhanced Counters */
.counter-container {
  text-align: center;
  margin: 20px 0;
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  color: #007bff;
  margin: 10px 0;
}

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

/* Enhanced Typing Effect */
.typing-container {
  min-height: 60px;
  display: flex;
  align-items: center;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: #007bff;
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  z-index: 10000;
  transition: width 0.1s ease;
}

/* Enhanced Buttons */
.btn-enhanced {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-enhanced::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-enhanced:hover::before {
  width: 300px;
  height: 300px;
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Error States */
.error-state {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #c53030;
}

.error-state .error-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.error-state .error-message {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.error-state .retry-button {
  background: #c53030;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.error-state .retry-button:hover {
  background: #a53030;
}

/* Success States */
.success-state {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #22543d;
}

.success-state .success-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.success-state .success-message {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Responsive Enhancements */
@media (max-width: 480px) {
  .notifications-container {
    left: 10px;
    right: 10px;
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .counter {
    font-size: 2rem;
  }

  .btn-enhanced {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Print Styles */
@media print {
  .notifications-container,
  .mobile-nav-toggle,
  .scroll-progress,
  .performance-indicator {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .btn {
    border-width: 2px;
  }

  .card {
    border-width: 2px;
  }

  .notification {
    border-width: 2px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gallery-item:hover img {
    transform: none;
  }

  .btn-enhanced::before {
    display: none;
  }
}

/* Suppress deprecated -ms-high-contrast warnings */
@media (forced-colors: active) {
  /* Modern forced-colors mode instead of deprecated -ms-high-contrast */
  * {
    forced-color-adjust: auto;
  }
}

/* Legacy support for older browsers (suppresses warnings) */
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* Suppress deprecated property warnings */
}

/* Privacy-enhanced iframe handling */
iframe[data-privacy='enhanced'] {
  /* Reduce tracking prevention warnings */
  border: none;
  outline: none;
}

/* Enhanced privacy for external resources */
iframe[src*='youtube.com'] {
  /* YouTube-specific privacy enhancements */
  border: none;
  outline: none;
}

/* ===== ESTILOS AVANÇADOS DE DEVBLOGS ===== */

/* ===== ESTILOS AVANÇADOS DE DEVBLOGS ===== */

/* === BARRA DE REAÇÕES === */
.reactions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  margin: 20px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.reactions-group {
  display: flex;
  gap: 8px;
}

.reaction-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 500;
  user-select: none;
}

.reaction-btn:hover {
  background: rgba(255, 107, 107, 0.2);
  border-color: rgba(255, 107, 107, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.reaction-btn.active {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  border-color: #ff6b6b;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.reaction-emoji {
  font-size: 16px;
  line-height: 1;
}

.reaction-count {
  font-size: 12px;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}

.actions-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* === BOTÕES DE COMPARTILHAMENTO AVANÇADOS === */
.share-container {
  margin: 25px 0;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.share-container h4 {
  margin: 0 0 15px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-container h4 i {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.share-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.share-btn:hover::before {
  left: 100%;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.share-btn.twitter:hover {
  background: rgba(29, 161, 242, 0.2);
  border-color: #1da1f2;
}

.share-btn.facebook:hover {
  background: rgba(66, 103, 178, 0.2);
  border-color: #4267b2;
}

.share-btn.linkedin:hover {
  background: rgba(0, 119, 181, 0.2);
  border-color: #0077b5;
}

.share-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
}

.share-btn.discord:hover {
  background: rgba(114, 137, 218, 0.2);
  border-color: #7289da;
}

.share-btn.reddit:hover {
  background: rgba(255, 69, 0, 0.2);
  border-color: #ff4500;
}

.share-stats {
  margin-top: 15px;
  text-align: center;
  color: #ccc;
  font-size: 14px;
}

.share-count {
  color: #ff6b6b;
  font-weight: 600;
}

/* === BOTÃO DE FEEDBACK === */
.feedback-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.feedback-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
  background: linear-gradient(135deg, #44a08d, #4ecdc4);
}

/* === MODAL DE FEEDBACK === */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.feedback-modal.show {
  opacity: 1;
  visibility: visible;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.feedback-modal .modal-content {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.feedback-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-modal .modal-header h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feedback-modal .modal-header h3 i {
  margin-right: 8px;
  color: #4ecdc4;
}

.modal-close {
  background: none;
  border: none;
  color: #ccc;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.feedback-modal form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feedback-modal .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feedback-modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feedback-modal label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.feedback-modal input,
.feedback-modal textarea,
.feedback-modal select {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.feedback-modal input:focus,
.feedback-modal textarea:focus,
.feedback-modal select:focus {
  outline: none;
  border-color: #4ecdc4;
  box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.feedback-modal textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.feedback-modal select {
  cursor: pointer;
}

.feedback-modal option {
  background: #2a2a2a;
  color: #fff;
}

.modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary,
.btn-secondary {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* === NOTIFICAÇÕES AVANÇADAS === */
.advanced-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  max-width: 300px;
  backdrop-filter: blur(10px);
}

.advanced-toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.toast-content i {
  font-size: 16px;
}

.toast-success .toast-content i {
  color: #fff;
}
.toast-error .toast-content i {
  color: #fff;
}
.toast-info .toast-content i {
  color: #fff;
}

.toast-success {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.toast-error {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

.toast-info {
  background: linear-gradient(135deg, #17a2b8, #138496);
}

/* === COMPARTILHAMENTO NATIVO === */
.native-share {
  background: linear-gradient(135deg, #6f42c1, #5a32a3);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.native-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.4);
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .reactions-bar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .reactions-group {
    justify-content: center;
  }

  .actions-group {
    justify-content: center;
  }

  .share-buttons {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .feedback-modal .modal-content {
    margin: 20px;
    padding: 20px;
  }

  .feedback-modal .form-row {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .advanced-toast {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* === ANIMAÇÕES === */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.reaction-btn.animate {
  animation: pulse 0.6s ease;
}

.share-btn.animate {
  animation: pulse 0.6s ease;
}

/* === LOADING === */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* === ACESSIBILIDADE === */
.reaction-btn:focus,
.share-btn:focus,
.feedback-btn:focus {
  outline: 2px solid #4ecdc4;
  outline-offset: 2px;
}

.modal-close:focus {
  outline: 2px solid #4ecdc4;
  outline-offset: 2px;
}

/* === ALTO CONTRASTE === */
@media (prefers-contrast: high) {
  .reactions-bar,
  .share-container,
  .feedback-modal .modal-content {
    border: 2px solid #fff;
  }

  .reaction-btn,
  .share-btn,
  .feedback-btn {
    border: 2px solid currentColor;
  }
}

/* === REDUÇÃO DE MOVIMENTO === */
@media (prefers-reduced-motion: reduce) {
  .reaction-btn,
  .share-btn,
  .feedback-btn,
  .feedback-modal,
  .advanced-toast {
    transition: none;
    animation: none;
  }

  .reaction-btn:hover,
  .share-btn:hover,
  .feedback-btn:hover {
    transform: none;
  }
}

/* === ESTILOS ESPECÍFICOS DE DEVBLOG === */
.devblog-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.devblog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 107, 107, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(78, 205, 196, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.devblog-hero .hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.devblog-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.devblog-hero .hero-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.devblog-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.devblog-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ccc;
}

.breadcrumb a {
  color: #ff6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb i {
  color: #666;
  font-size: 12px;
}

.devblog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.devblog-meta > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 14px;
  color: #ccc;
}

.devblog-meta .devblog-date {
  color: #ff6b6b;
}

.devblog-meta .devblog-category {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
}

.devblog-meta .devblog-author {
  color: #4ecdc4;
}

.devblog-article {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  line-height: 1.8;
  color: #e0e0e0;
}

.devblog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.devblog-excerpt {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
  font-style: italic;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border-left: 4px solid #ff6b6b;
}

.devblog-content h2,
.devblog-content h3,
.devblog-content h4 {
  color: #fff;
  margin: 30px 0 15px 0;
}

.devblog-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 107, 107, 0.3);
  padding-bottom: 10px;
}

.devblog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.devblog-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

.devblog-content p {
  margin-bottom: 20px;
  color: #e0e0e0;
}

.devblog-content ul,
.devblog-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.devblog-content li {
  margin-bottom: 10px;
  color: #e0e0e0;
}

.devblog-content blockquote {
  background: rgba(255, 107, 107, 0.1);
  border-left: 4px solid #ff6b6b;
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #ccc;
}

.devblog-content code {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: #4ecdc4;
}

.devblog-content pre {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.devblog-content pre code {
  background: none;
  padding: 0;
  color: #e0e0e0;
}

/* === ESTADOS DE CARREGAMENTO E ERRO === */
.devblog-loading,
.devblog-error {
  text-align: center;
  padding: 60px 20px;
  color: #ccc;
}

.devblog-loading i {
  font-size: 3rem;
  color: #4ecdc4;
  margin-bottom: 20px;
  animation: spin 2s linear infinite;
}

.devblog-loading p {
  font-size: 1.1rem;
  margin: 0;
}

.devblog-error i {
  font-size: 3rem;
  color: #ff6b6b;
  margin-bottom: 20px;
}

.devblog-error h2 {
  color: #ff6b6b;
  margin-bottom: 15px;
}

.devblog-error p {
  font-size: 1.1rem;
  margin: 0;
}

/* === COMPARTILHAMENTO SOCIAL === */
.devblog-social-share {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.devblog-social-share h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-buttons .share-btn {
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-buttons .share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-buttons .share-btn.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-buttons .share-btn.facebook:hover {
  background: #4267b2;
  border-color: #4267b2;
}

.social-buttons .share-btn.instagram:hover {
  background: #e4405f;
  border-color: #e4405f;
}

.social-buttons .share-btn.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-buttons .share-btn.discord:hover {
  background: #5865f2;
  border-color: #5865f2;
}

.social-buttons .share-btn.copy:hover {
  background: #6c757d;
  border-color: #6c757d;
}

/* === NAVEGAÇÃO ENTRE DEVBLOGS === */
.devblog-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-prev,
.nav-next {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.nav-prev:hover,
.nav-next:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.nav-prev {
  padding-left: 15px;
}

.nav-next {
  padding-right: 15px;
}

.nav-prev.disabled,
.nav-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* === DEVBLOGS RELACIONADOS === */
.related-devblogs {
  margin: 40px 0;
}

.related-devblogs h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.related-devblog-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-devblog-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateY(-5px);
}

.related-devblog-card h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.related-devblog-card p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.related-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #999;
}

.related-date {
  color: #ff6b6b;
}

.related-category {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
}

/* === RESPONSIVIDADE PARA DEVBLOGS === */
@media (max-width: 768px) {
  .devblog-hero .hero-title {
    font-size: 2rem;
  }

  .devblog-hero .hero-subtitle {
    font-size: 1rem;
  }

  .devblog-content {
    padding: 20px;
  }

  .devblog-header {
    padding: 20px;
  }

  .devblog-article {
    padding: 20px;
  }

  .devblog-title {
    font-size: 1.8rem;
  }

  .devblog-excerpt {
    font-size: 1rem;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-buttons .share-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .devblog-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .devblog-hero .hero-content {
    padding: 0 20px;
  }

  .devblog-hero .hero-title {
    font-size: 1.5rem;
  }

  .devblog-header {
    padding: 15px;
  }

  .devblog-article {
    padding: 15px;
  }

  .devblog-title {
    font-size: 1.5rem;
  }

  .devblog-social-share {
    padding: 20px;
  }

  .related-devblogs h3 {
    font-size: 1.3rem;
  }

  .related-grid {
    gap: 15px;
  }
}

/* === ANIMAÇÕES DE ENTRADA === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.devblog-article,
.devblog-header,
.devblog-social-share,
.related-devblogs {
  animation: fadeInUp 0.6s ease;
}

.devblog-article {
  animation-delay: 0.1s;
}

.devblog-social-share {
  animation-delay: 0.2s;
}

.related-devblogs {
  animation-delay: 0.3s;
}

/* === ESTADOS DE FOCO === */
.devblog-article:focus-within,
.devblog-header:focus-within {
  outline: 2px solid #4ecdc4;
  outline-offset: 5px;
}

.social-buttons .share-btn:focus,
.nav-prev:focus,
.nav-next:focus {
  outline: 2px solid #4ecdc4;
  outline-offset: 2px;
}

/* === ALTO CONTRASTE === */
@media (prefers-contrast: high) {
  .devblog-article,
  .devblog-header,
  .devblog-social-share,
  .related-devblog-card {
    border: 2px solid #fff;
  }

  .devblog-title,
  .devblog-content h2,
  .devblog-content h3,
  .devblog-content h4 {
    color: #000;
    background: none;
    -webkit-text-fill-color: initial;
  }
}

/* === REDUÇÃO DE MOVIMENTO === */
@media (prefers-reduced-motion: reduce) {
  .devblog-article,
  .devblog-header,
  .devblog-social-share,
  .related-devblogs {
    animation: none;
  }

  .social-buttons .share-btn:hover,
  .nav-prev:hover,
  .nav-next:hover {
    transform: none;
  }
}

/* === ESTILOS RESPONSIVOS ESPECÍFICOS PARA SEÇÃO "DISPONÍVEL AGORA" === */
@media (max-width: 768px) {
  .store-info h2 {
    text-align: center;
    font-size: 2rem;
  }

  .store-info p {
    text-align: center;
  }

  .store-features {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .store-info h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .store-info p {
    font-size: 0.95rem;
    text-align: center;
  }

  .store-features {
    gap: 15px;
  }

  .store-feature {
    padding: 12px;
  }

  .store-feature i {
    font-size: 1.5rem;
  }

  .store-feature span {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .store-info h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .store-info p {
    font-size: 0.9rem;
    text-align: center;
  }

  .store-features {
    gap: 12px;
  }

  .store-feature {
    padding: 10px;
  }

  .store-feature i {
    font-size: 1.3rem;
  }

  .store-feature span {
    font-size: 0.85rem;
  }
}

/* Steam Badge para DevBlogs */
.steam-badge {
  background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #66c0f4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.steam-badge i {
  color: #66c0f4;
  font-size: 0.8rem;
}

/* Melhorias nos cards de DevBlog */
.devblog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.devblog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.devblog-card .devblog-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.devblog-card .devblog-date {
  background: rgba(61, 220, 132, 0.2);
  color: #3ddc84;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.devblog-card .devblog-category {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.devblog-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.devblog-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.devblog-card .devblog-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.devblog-card .devblog-link {
  color: #3ddc84;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.devblog-card .devblog-link:hover {
  color: #ffffff;
}

.devblog-card .social-share {
  display: flex;
  gap: 8px;
}

.devblog-card .share-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.devblog-card .share-btn:hover {
  background: rgba(61, 220, 132, 0.2);
  color: #3ddc84;
  transform: scale(1.1);
}

/* Skeleton loading para DevBlogs */
.devblog-card.loading {
  pointer-events: none;
}

.devblog-skeleton {
  animation: skeleton-loading 1.5s infinite;
}

.skeleton-title {
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 12px;
  width: 80%;
}

.skeleton-excerpt {
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
}

.skeleton-meta {
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  width: 60%;
}

@keyframes skeleton-loading {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

/* Filtros de DevBlogs */
.filters {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.filter-group select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #3ddc84;
  box-shadow: 0 0 0 3px rgba(61, 220, 132, 0.2);
}

.search-box {
  flex: 1;
  min-width: 250px;
}

.search-box input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #3ddc84;
  box-shadow: 0 0 0 3px rgba(61, 220, 132, 0.2);
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Paginação */
.devblogs-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.pagination-btn:hover {
  background: rgba(61, 220, 132, 0.2);
  border-color: #3ddc84;
}

.pagination-current {
  background: #3ddc84;
  color: #000000;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pagination-ellipsis {
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    min-width: auto;
  }

  .devblog-card .devblog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .devblog-card .devblog-actions {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  .devblog-card .social-share {
    justify-content: center;
  }
}

/* Mudança de cor: Verde para Vermelho */
:root {
  --primary-color: #e74c3c;
  --primary-hover: #c0392b;
  --primary-light: #ff6b6b;
  --accent-color: #e74c3c;
  --success-color: #e74c3c;
  --highlight-color: #e74c3c;
}

/* Seção Unificada de Atualizações */
.updates-filters {
  margin-bottom: 2rem;
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(231, 76, 60, 0.1);
  border: 2px solid rgba(231, 76, 60, 0.3);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.filter-btn i {
  font-size: 1.1rem;
}

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

.update-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.update-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2);
}

.update-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.update-card:hover::before {
  opacity: 1;
}

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

.update-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.update-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.update-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.update-excerpt {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.update-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.update-badge {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.steam-badge {
  background: rgba(23, 162, 184, 0.2);
  border-color: rgba(23, 162, 184, 0.4);
  color: #17a2b8;
}

/* Tags de área (combina com o tema do site e CMS) */
.area-tag {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1;
}
.area-gameplay {
  color: #8be9fd;
  border-color: #224e66;
  background: rgba(34, 78, 102, 0.25);
}
.area-content {
  color: #ffd166;
  border-color: #5b4920;
  background: rgba(91, 73, 32, 0.25);
}
.area-performance {
  color: #aaffaa;
  border-color: #2f5a2f;
  background: rgba(47, 90, 47, 0.25);
}
.area-multiplayer {
  color: #ff99c8;
  border-color: #5a294a;
  background: rgba(90, 41, 74, 0.25);
}
.area-uiux {
  color: #c3b1e1;
  border-color: #403a54;
  background: rgba(64, 58, 84, 0.25);
}

.roadmap-badge {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.4);
  color: #ffc107;
}

.roadmap-badge.completed {
  background: rgba(40, 167, 69, 0.2);
  border-color: rgba(40, 167, 69, 0.4);
  color: #28a745;
}

.roadmap-badge.in-progress {
  background: rgba(255, 193, 7, 0.2);
  border-color: rgba(255, 193, 7, 0.4);
  color: #ffc107;
}

.roadmap-badge.planned {
  background: rgba(108, 117, 125, 0.2);
  border-color: rgba(108, 117, 125, 0.4);
  color: #6c757d;
}

.priority-badge.critical {
  background: rgba(220, 53, 69, 0.2);
  border-color: rgba(220, 53, 69, 0.4);
  color: #dc3545;
}

.update-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.update-actions .btn {
  flex: 1;
  min-width: 120px;
}

/* Tipos específicos de cards */
.update-type-devblog {
  border-left: 4px solid var(--primary-color);
}

.update-type-steam {
  border-left: 4px solid #17a2b8;
}

.update-type-roadmap {
  border-left: 4px solid #ffc107;
}

.update-type-update {
  border-left: 4px solid #28a745;
}

/* Skeleton Loading */
.update-card.skeleton {
  pointer-events: none;
}

.skeleton-text {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
  height: 1rem;
  margin-bottom: 0.5rem;
}

.skeleton-text:last-child {
  margin-bottom: 0;
}

.skeleton-badge {
  background: rgba(255, 255, 255, 0.1);
  height: 2rem;
  width: 80px;
  border-radius: 20px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .updates-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .update-card {
    padding: 1.5rem;
  }

  .update-actions {
    flex-direction: column;
  }

  .update-actions .btn {
    width: 100%;
  }
}

/* Atualizar cores existentes de verde para vermelho */
.btn-primary,
.btn-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:focus,
.btn-primary:active {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.section-header h2::after {
  background: var(--primary-color);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.scroll-progress {
  background: var(--primary-color);
}

.hero-content h1::after {
  background: var(--primary-color);
}

.feature-icon {
  color: var(--primary-color);
}

.social-link:hover {
  color: var(--primary-color);
}

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

/* Steam badge atualizado */
.steam-badge {
  background: rgba(23, 162, 184, 0.2);
  border: 1px solid rgba(23, 162, 184, 0.4);
  color: #17a2b8;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.steam-badge i {
  font-size: 1rem;
}

.advanced-filters {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.advanced-filters .filter-group {
  min-width: 220px;
}

.filter-group select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: #ffffff;
  padding: 10px 40px 10px 14px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 14px;
}

/* Ajustes finais para mobile: corrigem conflitos de regras duplicadas e
   evitam estouro horizontal nas seções principais. */
@media (max-width: 768px) {
  .navbar {
    overflow: visible;
  }

  .nav-container {
    height: 64px;
    gap: 12px;
  }

  .nav-logo {
    min-width: 0;
    gap: 8px;
  }

  .logo-text {
    display: none;
  }

  .logo-img {
    width: 88px;
    height: 88px;
  }

  .language-selector {
    top: 12px;
    right: 56px;
    max-width: calc(100vw - 72px);
  }

  .language-selector select {
    min-width: 0;
    width: 100%;
    max-width: 170px;
  }

  .hamburger {
    position: relative;
    z-index: 1002;
    margin-left: auto;
  }

  .nav-menu,
  .nav-menu.active,
  .nav-menu.open {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 64px);
    padding: 16px 20px 24px;
    margin: 0;
    overflow-y: auto;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(220, 20, 60, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-menu.active,
  .nav-menu.open {
    display: flex;
  }

  .nav-menu li {
    margin: 0;
  }

  .nav-menu .nav-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
    height: auto;
    padding: 104px 0 56px;
  }

  .hero-content {
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .hero-subtitle,
  .section-header p,
  .about-text p,
  .store-info p,
  .devblog-card p {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .hero-buttons,
  .updates-action {
    width: 100%;
  }

  .btn,
  .btn-store {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .gallery-grid,
  .community-grid,
  .devblogs-grid,
  .updates-grid,
  .partner-features,
  .newsletter-benefits,
  .footer-content,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .community-card,
  .devblog-card,
  .update-card,
  .partner-feature,
  .store-info,
  .requirements-minimum,
  .requirements-recommended {
    min-width: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .store-content,
  .newsletter-content,
  .devblogs-content,
  .updates-content,
  .partner-host-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .store-feature,
  .info-item,
  .benefit-item {
    align-items: flex-start;
  }

  .store-price {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .language-tags {
    justify-content: center;
  }

  .form-group {
    width: 100%;
  }

  .form-group input[type='email'] {
    min-width: 0;
    width: 100%;
  }

  .footer-logo,
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 12px;
  }

  .language-selector {
    top: 10px;
    right: 48px;
    left: 12px;
    max-width: none;
  }

  .language-selector select {
    max-width: 140px;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .hero-logo-img {
    width: min(220px, 62vw);
  }

  .section-header h2,
  .store-info h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }

  .feature-card,
  .community-card,
  .devblog-card,
  .update-card,
  .partner-feature,
  .store-info,
  .requirements-minimum,
  .requirements-recommended {
    padding: 18px 16px;
  }

  .price-new {
    font-size: 1.8rem;
  }

  .btn-store {
    padding: 16px 20px;
    font-size: 1rem;
  }
}
.filter-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.22);
}
.filter-group select:hover {
  border-color: rgba(231, 76, 60, 0.5);
}
.filter-group select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* --- Public filters dark theme overrides --- */
.updates-filters .advanced-filters .filter-group select {
  background: #0f1216;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  padding: 10px 40px 10px 14px;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' fill='none' stroke='%23cfd6e5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 14px;
}
.updates-filters .advanced-filters .filter-group select:hover {
  border-color: rgba(231, 76, 60, 0.5);
}
.updates-filters .advanced-filters .filter-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.22);
}
.updates-filters .advanced-filters .filter-group select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.updates-filters .advanced-filters .filter-group select option {
  background: #0f1216;
  color: #ffffff;
}

.updates-filters .advanced-filters .search-box {
  position: relative;
}
.updates-filters .advanced-filters .search-box input {
  background: #0f1216;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 42px 10px 14px;
  font-size: 0.95rem;
}
.updates-filters .advanced-filters .search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.22);
}
.updates-filters .advanced-filters .search-box i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  opacity: 0.95;
  pointer-events: none;
}

/* Progress Widget */
.progress-widget {
  background: var(--card-bg, #0e0f12);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}
.progress-overall {
  margin-bottom: 12px;
}
.progress-overall-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.progress-title {
  font-weight: 600;
}
.progress-value {
  opacity: 0.9;
  font-variant-numeric: tabular-nums;
}
.progressbar {
  position: relative;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progressbar.small {
  height: 6px;
}
.progressbar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 999px;
  transition: width 0.4s ease;
}
.progress-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}
@media (min-width: 768px) {
  .progress-areas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.progress-area {
}
.progress-area-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.progress-subtitle {
  font-weight: 600;
  margin: 10px 0 6px;
}
.milestones-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.milestone-item {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.95rem;
}
.milestone-item .milestone-title {
  font-weight: 500;
}
.milestone-item .milestone-meta {
  opacity: 0.8;
  font-size: 0.9rem;
}
.milestone-item.status-planned {
  border-left: 3px solid #64748b;
}
.milestone-item.status-in_progress {
  border-left: 3px solid #f59e0b;
}
.milestone-item.status-released {
  border-left: 3px solid #22c55e;
}
