body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: url(/images/bg.webp);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(30px);
  background-size: cover;
  background-position: center;
}

header {
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0;
  background: #252d3c;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-flag {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.header-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-content h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-subtitle {
  margin: 0.3rem 0 0 0;
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header-right {
  display: flex;
  align-items: center;
}

.login-button {
  background: linear-gradient(90deg, #ff0000 0%, #ff7a00 50%);
  color: white;
  font-weight: 700;
  padding: 12px 35px;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
  background: linear-gradient(135deg, #f5576c 0%, #ff0000 100%);
}

nav a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 8px;
}

.container {
  flex: 1 1 auto;
  min-height: 100%;
  padding: 2rem 1rem;
}

.blog-post {
  background: rgba(255, 255, 255, 0.95);
  margin-bottom: 2em;
  padding: 2.5rem;
  border-radius: 20px;
  flex: 1 1 auto;
  min-height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.blog-post h2 {
  color: #2d3748;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-left: 4px solid #e30a17;
  padding-left: 1rem;
}

.blog-post p {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1.05rem;
}

.blog-post ul {
  color: #4a5568;
  line-height: 1.8;
}

.brand-table-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  padding: 0 1rem;
}

.brand-table {
  border-collapse: separate;
  border-spacing: 0 15px;
  width: 60%;
}

.brand-table thead th {
  color: white;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-table thead th:first-child {
  border-radius: 12px 0 0 12px;
}

.brand-table thead th:last-child {
  border-radius: 0 12px 12px 0;
}

.brand-table tbody tr {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-radius: 12px;
}

.brand-table tbody tr:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.brand-table td {
  border: none;
  padding: 1.2rem;
  text-align: center;
}

.brand-table tbody tr td:first-child {
  border-radius: 12px 0 0 12px;
}

.brand-table tbody tr td:last-child {
  border-radius: 0 12px 12px 0;
}

.brand-logo {
  max-width: 120px;
  transition: transform 0.3s ease;
}

.brand-table tbody tr:hover .brand-logo {
  transform: scale(1.05);
}

.brand-info {
  text-align: center;
  color: #2d3748;
  font-weight: 600;
  font-size: 1rem;
}

.brand-button {
  background: linear-gradient(90deg, #ff0000 0%, #ff7a00 50%);
  color: white;
  font-weight: 700;
  padding: 12px 30px;
  margin: 10px 0px 10px 0;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.brand-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
  background: linear-gradient(135deg, #f5576c 0%, #ff0000 100%);
}

.brand-button1 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  font-weight: 700;
  padding: 10px 28px;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.brand-button1:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.6);
}

.promocode__input {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promocode input {
  border: 2px solid #667eea;
  border-right: none;
  border-radius: 12px 0 0 12px;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 20px;
  outline: none;
  width: auto;
  transition: all 0.3s ease;
}

.promocode input:focus {
  border-color: #764ba2;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.promocode .promocode__button {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.promocode .promocode__button:hover {
  transform: scale(1.05);
}

.promocode .promocode__link {
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.promocode .promocode__button,
.promocode__link {
  background: linear-gradient(90deg, #ff0000 0%, #ff7a00 50%);
  height: 44px;
  width: 20%;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0 12px 12px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  margin: 10px 0;
}

.date img {
  max-width: 30px;
}

.date .updated {
  display: flex;
  flex-direction: column;
}

.date time {
  font-weight: 600;
}

footer {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

.footer-menu a:hover {
  color: #ff0000;
  background: rgba(255, 255, 255, 0.1);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
}

.footer-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  width: 100%;
  max-width: 600px;
}

.payment-logo {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.payment-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-warning {
  text-align: center;
  max-width: 800px;
  background: rgba(255, 193, 7, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.footer-warning p {
  margin: 0.5rem 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer-warning strong {
  color: #ffd700;
  font-size: 1.2rem;
}

.dmca-badge {
  display: inline-block;
  transition: transform 0.3s ease;
}

.dmca-badge:hover {
  transform: scale(1.05);
}

.dmca-badge img {
  max-width: 150px;
  height: auto;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 1rem 0 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

img {
  max-width: 100%;
}

@media (max-width: 768px) {
  /* Header Mobile */
  .header-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .header-left {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .header-flag {
    width: 50px;
    height: 50px;
  }
  
  .header-content h1 {
    font-size: 1.5rem;
  }
  
  .header-subtitle {
    font-size: 0.9rem;
  }
  
  .login-button {
    padding: 10px 30px;
    font-size: 0.9rem;
  }
  
  /* Table Mobile */
  .brand-table {
    width: 95%;
  }
  
  .brand-table thead th {
    font-size: 0.9rem;
    padding: 0.8rem 0.5rem;
  }
  
  .brand-table td {
    padding: 0.8rem 0.5rem;
  }
  
  .brand-logo {
    max-width: 80px;
  }
  
  /* Blog Mobile */
  .blog-post {
    padding: 1.5rem;
  }
  
  .blog-post h2 {
    font-size: 1.5rem;
  }
  
  /* Promocode Mobile */
  .promocode__input {
    flex-direction: column;
  }
  
  .promocode input {
    font-size: 13px;
    border-right: 2px solid #667eea;
    border-radius: 12px 12px 0 0;
    width: 100%;
    padding: 0.6rem 0;
    text-align: center;
  }
  
  .promocode .promocode__button,
  .promocode__link {
    width: 100%;
    height: 40px;
    border-radius: 0 0 12px 12px;
    padding: 0.6rem 0.2rem;
    font-size: 13px;
  }
  
  /* Footer Mobile */
  .footer-menu {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .footer-divider {
    display: none;
  }
  
  .footer-payments {
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .payment-logo {
    height: 30px;
  }
  
  .footer-warning {
    padding: 1rem;
    font-size: 0.9rem;
  }
}