
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #111;
  color: #fff;
  padding: 12px 0;
  border-bottom: 2px solid var(--accent);
}

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

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.brand h1 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  flex: 1;
}

.nav a {
  color: #ccc;
  font-weight: 500;
  padding: 8px 10px;
  transition: color 0.2s;
}

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

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

.actions .btn {
  padding: 8px 14px;
  font-size: 0.9rem;
}

.admin-link {
  color: #0ff;
  font-weight: bold;
}

.footer-section ul li {
  margin-bottom: 6px;
}
.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-section ul li a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #888;
}


.success-box,
.success-message {
  background: #222;
  color: #0f0;
  font-weight: bold;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  animation: fadeIn 1s ease-in-out;
  text-align: center;
  max-width: 500px;
  margin: 40px auto;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-dark {
  background-color: #222;
  color: #fff;
}
.btn-dark:hover {
  background-color: #444;
}
.btn-accent {
  background-color: #ff0000;
  color: #fff;
}
.btn-accent:hover {
  background-color: #cc0000;
}


.site-header {
  background-color: #1f1f1f;
  padding: 20px 0;
  border-bottom: 2px solid #ff0000;
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.brand h1 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}
.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  flex: 1;
}
.nav a {
  color: #ccc;
  font-weight: 500;
  padding: 8px 10px;
  transition: color 0.2s;
}
.nav a:hover {
  color: #fff;
}
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-link {
  color: #0ff;
  font-weight: bold;
}


.hero-card {
  background-color: #1c1c1c;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}
.chip-excl {
  background-color: #ff0000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9em;
}


form {
  background-color: #1c1c1c;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  max-width: 500px;
  margin: 60px auto;
  color: #fff;
}
form h2,
.form-title {
  text-align: center;
  color: #ff0000;
  margin-bottom: 25px;
  font-size: 1.8em;
}
form input,
form button {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
}
form input {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
}
form button {
  background-color: #ff0000;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
form button:hover {
  background-color: #cc0000;
}

form {
  background-color: #1c1c1c;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  max-width: 500px;
  margin: 60px auto;
  color: #fff;
}
form h2,
.form-title {
  text-align: center;
  color: #ff0000;
  margin-bottom: 25px;
  font-size: 1.8em;
}
form label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  color: #ccc;
}
form strong {
  display: block;
  margin-bottom: 10px;
  color: #ff4444;
}
form input,
form button {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  box-sizing: border-box;
}
form input {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
}
form input:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}
form button {
  background-color: #ff0000;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
form button:hover {
  background-color: #cc0000;
}


input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
textarea {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #ff0000;
  border-radius: 6px;
  padding: 12px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #ff4444;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}
::placeholder {
  color: #aaa;
  opacity: 1;
}


button,
input[type="submit"],
.btn,
.btn-dark,
.btn-accent {
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-accent,
button,
input[type="submit"] {
  background-color: #ff0000;
  color: #fff;
}
.btn-accent:hover,
button:hover,
input[type="submit"]:hover {
  background-color: #cc0000;
}
.btn-dark {
  background-color: #333;
  color: #fff;
}
.btn-dark:hover {
  background-color: #444;
}


.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  background-color: #1f1f1f;
  padding: 14px 0;
  border-bottom: 2px solid #ff0000;
  font-weight: bold;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #ff0000;
}


.thumb img,
.card .thumb img,
.video-card .thumb img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
  object-fit: cover;
  max-height: 160px;
}


.ordered li {
  padding: 6px 0;
  border-bottom: 1px solid #333;
}
.ordered li strong {
  color: #ff0000;
}
.ordered li em {
  color: #ccc;
  font-style: normal;
}


.card h3,
.widget-title,
.hero-title,
.section h2 {
  color: #ff4444 !important;
}
.card,
.widget,
.hero-card,
form,
.newsletter {
  background-color: #1c1c1c !important;
  color: #f0f0f0 !important;
}
.muted,
.video-meta,
.card-body p {
  color: #ccc !important;
}

input[type="text"],
input[type="search"],
input[type="email"] {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 1em;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
input[type="text"]:focus,
input[type="search"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: #ff0000;
  box-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
}
input::placeholder {
  color: #aaa;
}



.btn-actu {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-actu:hover {
  background-color: #cc0000;
}


.ranking-block {
  margin-top: 40px;
  padding: 20px;
  background: #f9f9f9;
  border-left: 4px solid #ff0000;
  border-radius: 6px;
}
.ranking-block h2 {
  margin-bottom: 12px;
  color: #222;
}
.ranking-block ol,
.ranking-block ul {
  padding-left: 20px;
}
.ranking-block li {
  margin-bottom: 8px;
  font-size: 1rem;
}


.cta-block {
  margin-top: 60px;
  text-align: center;
  background: #1a1a1a;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
}
.cta-block .btn {
  margin-top: 12px;
}


.site-footer {
  background: #111;
  color: #eee;
  padding: 40px 20px;
  font-size: 14px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.footer-section {
  flex: 1 1 220px;
}
.footer-section h4 {
  color: #ffd700;
  margin-bottom: 10px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 8px;
}
.footer-section a {
  color: #ccc;
  text-decoration: none;
}
.footer-section a:hover {
  color: #0ff;
}
.footer-section form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-section input[type="email"] {
  padding: 8px;
  border-radius: 5px;
  border: none;
}
.footer-section button {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
}
.footer-section button:hover {
  background: #ffcc00;
}
.social-icons a {
  margin-right: 10px;
  display: inline-block;
}
.social-icons img {
  width: 24px;
  height: 24px;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 13px;
}
.ticker .line {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 18s linear infinite;
}

@keyframes tickerScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.forum-page h1,
.forum-page h2,
.forum-page h3 {
  color: #ff4444;
}

.forum-page form {
  background-color: #1c1c1c;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  margin-bottom: 40px;
}

.forum-page input,
.forum-page textarea {
  background-color: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
}

.forum-page button {
  background-color: #ff0000;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.forum-page button:hover {
  background-color: #cc0000;
}

.forum-thread {
  background-color: #1a1a1a;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.forum-thread a {
  color: #ff0000;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.forum-thread a:hover {
  color: #fff;
  text-decoration: underline;
}





body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #eee;
}

.container.section {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
}


.form-title {
  text-align: center;
  color: #e50914;
  margin-bottom: 20px;
  font-size: 1.6rem;
}


.form-video {
  max-width: 400px;
  margin: 0 auto;
  background: #1c1c1c;
  padding: 20px;
  border: 2px solid #e50914;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(229,9,20,0.5);
}

.form-video label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #fff;
}

.form-input {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #444;
  border-radius: 6px;
  background: #111;
  color: #eee;
  font-size: 1rem;
}

.form-input:focus {
  border-color: #e50914;
  outline: none;
  box-shadow: 0 0 8px rgba(229,9,20,0.6);
}


.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-accent {
  background: #e50914;
  color: #fff;
  border: none;
}

.btn-accent:hover {
  opacity: 0.85;
}


.alert-error {
  background: #330000;
  color: #ff6666;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}


