* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e0e;
  color: white;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background-color: #1a1a1a;
  padding: 25px;
  text-align: center;
  border-bottom: 1px solid #333;
}

.logo img {
  height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px;
  background-color: #111;
  border-bottom: 1px solid #333;
}

nav a {
  color: #fff;
  font-size: 16px;
  padding: 8px 12px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #e50914;
  border-radius: 6px;
}

.hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(to bottom, #0e0e0e, #111);
}


.hero h1 {
  font-size: 42px;
  color: #e50914;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background-color: #e50914;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #bf0810;
}

.features {
  padding: 50px 30px;
  background-color: #121212;
  text-align: center;
}

.features h2 {
  color: #e50914;
  font-size: 32px;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background-color: #1e1e1e;
  border: 1px solid #292929;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card h3 {
  color: #e50914;
  margin-bottom: 10px;
  font-size: 20px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
}

/* Login Page Styles */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 20px;
}

.login-box {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  text-align: center;
  border: 1px solid #292929;
}

.login-box h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  background-color: #292929;
  color: white;
  font-size: 16px;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
  outline: none;
  background-color: #333;
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.5);
}

.login-button {
  width: 100%;
  padding: 12px;
  background-color: #e50914;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-button:hover {
  background-color: #bf0810;
}

.login-options {
  margin-top: 20px;
  text-align: center;
}

.forgot-password {
  color: #999;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.forgot-password:hover {
  color: #e50914;
}

.signup-prompt {
  color: #999;
  font-size: 14px;
  margin-top: 15px;
}

.signup-prompt a {
  color: #e50914;
  font-weight: bold;
  transition: color 0.3s;
}

.signup-prompt a:hover {
  color: #ff3c3c;
  text-decoration: underline;
}

/* Sign Up Page Styles */
.signup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 20px;
}

.signup-box {
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
  padding: 40px;
  width: 100%;
  max-width: 450px;
  text-align: center;
  border: 1px solid #292929;
}

.signup-box h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 30px;
}

.signup-form .form-group {
  margin-bottom: 20px;
}

.terms-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
}

.terms-checkbox input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: #e50914;
}

.terms-checkbox label {
  font-size: 14px;
  color: #ccc;
}

.terms-checkbox a {
  color: #e50914;
  text-decoration: none;
  transition: color 0.3s;
}

.terms-checkbox a:hover {
  color: #ff3c3c;
  text-decoration: underline;
}

.signup-button {
  width: 100%;
  padding: 12px;
  background-color: #e50914;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.signup-button:hover {
  background-color: #bf0810;
}

.login-prompt {
  margin-top: 20px;
  color: #999;
  font-size: 14px;
}

.login-prompt a {
  color: #e50914;
  font-weight: bold;
  transition: color 0.3s;
}

.login-prompt a:hover {
  color: #ff3c3c;
  text-decoration: underline;
}
/* Contact Page */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #0e0e0e;
  min-height: 70vh;
}

.contact-form {
  width: 100%;
  max-width: 450px;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.25);
  padding: 40px;
  border: 1px solid #292929;
  color: white;
  position: relative;
}

.contact-form h2 {
  color: white;
  margin-bottom: 20px;
  border-bottom: 2px solid #e50914;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-form p:before {
  content: attr(type);
  display: block;
  margin: 25px 0 8px;
  font-size: 14px;
  color: #aaa;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background-color: #292929;
  color: white;
  border: none;
  border-bottom: 2px solid #444;
  border-radius: 6px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom: 2px solid #e50914;
  background-color: #333;
}
.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-button {
  background-color: #e50914;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #cc0812;
}


.contact-info {
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 13px;
  background-color: #111;
  color: #ccc;
  padding: 10px;
  border-radius: 0 0 12px 12px;
}

.contact-info span {
  margin: 0 10px;
  color: #e50914;
}

footer {
  background-color: #111;
  color: #999;
  text-align: center;
  padding: 25px 0;
  margin-top: 50px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .login-box, .signup-box, .forgot-box {
    padding: 30px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 18px;
  }
}

/* About Page Styles - New Section */
.about-hero {
  background: linear-gradient(to right, #0e0e0e, #1a1a1a);
  padding: 50px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(229, 9, 20, 0.1) 0%, transparent 100%);
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.text-highlight {
  color: #e50914;
}

.about-hero .subtitle {
  font-size: 18px;
  color: #ccc;
  font-style: italic;
}

.about-container {
  padding: 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.about-content h2 {
  color: #e50914;
  margin-bottom: 20px;
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
}

.about-content h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #e50914;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #ddd;
}

.about-content strong {
  color: #fff;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.values-section {
  margin: 50px 0;
  text-align: center;
}

.values-section h2 {
  color: #e50914;
  font-size: 28px;
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.values-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e50914;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.value-card {
  background-color: #1e1e1e;
  border: 1px solid #292929;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.2);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.value-card h3 {
  color: #e50914;
  margin-bottom: 10px;
  font-size: 20px;
}

.value-card p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.tools-section {
  margin: 50px 0;
  text-align: center;
}

.tools-section h2 {
  color: #e50914;
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.tools-section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e50914;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.tool-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s;
}

.tool-item:hover {
  background-color: #e50914;
  border-color: #e50914;
  transform: translateY(-3px);
}

.cta-section {
  margin: 50px 0 30px;
  text-align: center;
  padding: 40px;
  background-color: #1a1a1a;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid #292929;
}

.cta-section h2 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 25px;
}

/* Responsive adjustments for About page */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 30px;
  }
  
  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 600px) {
  .about-hero h1 {
    font-size: 32px;
  }
  
  .about-content h2, .values-section h2, .tools-section h2 {
    font-size: 24px;
  }
  
  .cta-section h2 {
    font-size: 22px;
  }
}
.captcha {
  margin: 15px 0;
}



table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: #111;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
  border: 1px solid #292929;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

table thead {
  background-color: #e50914;
}

table thead th {
  padding: 12px 15px;
  text-align: left;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

table tbody td {
  padding: 12px 15px;
  border-bottom: 1px solid #333;
}

table tbody tr:hover {
  background-color: #1c1c1c;
}

table tbody tr:last-child td {
  border-bottom: none;
}

table td[colspan] {
  text-align: center;
  color: #aaa;
  padding: 20px;
}
