
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }


.header {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 50px; }
.nav a {
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav a:hover { color: #f39c12; }
.btn-primary {
  background: #f39c12;
  padding: 10px 20px;
  border-radius: 30px;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary:hover { background: #ffb547; }


.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.6);
}
.hero-content {
  text-align: center;
  z-index: 2;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn-secondary {
    background: transparent;
    border: 2px solid #f39c12;
    padding: 25px 55px;
    border-radius: 30px;
    color: #f39c12;
    transition: 0.3s;
    font-size: 20px;
}
.btn-secondary:hover {
  background: #f39c12;
  color: #000;
}


.section {
  padding: 50px 20px;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #f39c12;
}
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.movie-card {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s;
}
.movie-card:hover { transform: scale(1.05); }
.movie-card img { width: 100%; height: auto; }
.movie-card h3 { margin: 10px 0; }
.movie-card p { color: #bbb; font-size: 0.9rem; }
.btn-watch {
  background: #f39c12;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #000;
  transition: 0.3s;
}
.btn-watch:hover { background: #ffb547; }


.cta {
  padding: 120px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}
.cta .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.btn-primary.large {
  padding: 15px 40px;
  font-size: 1.1rem;
}


.footer {
  background: #000;
  padding: 40px 20px;
  text-align: center;
}
.footer-nav {
  margin: 15px 0;
}
.footer-nav a {
  margin: 0 10px;
  color: #aaa;
}
.footer-nav a:hover {
  color: #f39c12;
}
.container {
    text-align: center;
}
.\32 222 {
    margin-top: 35px;
}
.tb-home {
  width: 90%;
  max-width: 800px;
  margin: 40px auto; 
  border-collapse: collapse;
  background: #1e1e1e;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
}

.tb-home thead {
  background: linear-gradient(90deg, #ff4757, #ff6b81);
}

.tb-home th {
  padding: 14px 10px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tb-home td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tb-home tr:nth-child(even) {
  background: rgba(255,255,255,0.05);
}

.tb-home tr:hover {
  background: rgba(255,255,255,0.12);
  transition: 0.3s ease;
}


.tb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 600px) {
  .tb-home {
    font-size: 14px;
  }
  .tb-home th, .tb-home td {
    padding: 10px 6px;
  }
}
ul.note-list {
  list-style: none; 
  width: 80%;
  max-width: 700px;
  margin: 40px auto; 
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: 'Poppins', sans-serif;
}

ul.note-list li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff4757;
  border-radius: 8px;
  padding: 12px 18px;
  color: #f1f1f1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

ul.note-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

ul.note-list li p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

ul.note-list li strong {
  color: #ff6b81;
}


@media (max-width: 600px) {
  ul.note-list {
    width: 90%;
  }
  ul.note-list li {
    font-size: 14px;
    padding: 10px 14px;
  }
  header.header {
    background: #000;
}
}

ol.step-list {
  counter-reset: step-counter;
  list-style: none; 
  width: 80%;
  max-width: 700px;
  margin: 40px auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Poppins', sans-serif;
}

ol.step-list li {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff4757;
  border-radius: 10px;
  padding: 14px 18px 14px 50px;
  color: #f1f1f1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

ol.step-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}


ol.step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: #ff4757;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 0 8px rgba(255, 71, 87, 0.5);
}

ol.step-list li p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

ol.step-list li a.decorated-link {
  color: #ff6b81;
  text-decoration: none;
  transition: 0.3s;
}

ol.step-list li a.decorated-link:hover {
  text-decoration: underline;
  color: #ff8c9b;
}


@media (max-width: 600px) {
  ol.step-list {
    width: 90%;
  }
  ol.step-list li {
    padding: 12px 14px 12px 44px;
    font-size: 14px;
  }
}
section#home {
    height: 500px;
}
.view-full {
    margin: 0 auto;
    width: 80%;
}
.image-container {
  display: flex;
  justify-content: center;  
  align-items: center;      
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
}

.responsive-img {
  width: 100%;
  max-width: 800px; 
  height: auto;
  border-radius: 10px;
  display: block;
}
.section {
    border: 15px solid #191919ab;
    padding: 50px;
    border-radius: 15px;
    margin: 20px;
    background: #272727;
}
h3 {
    padding-top: 30px !important;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff4c4c;
  text-align: center; 
  margin: 40px 0 20px 0;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 80px;               
  height: 4px;               
  background-color: #ff4c4c;
  margin: 8px auto 0 auto;   
  border-radius: 2px;
}

