* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a1929;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Back Button */
.rd-back-home {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1000;
}

.rd-back-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  color: #ef4444;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  animation: rd-slideInLeft 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.rd-back-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: translateX(-5px);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.rd-back-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.rd-back-btn:hover i {
  transform: translateX(-5px);
}

/* Container */
.rd-page-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.rd-header {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rd-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.rd-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(239, 68, 68, 0.1);
  padding: 12px 28px;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  backdrop-filter: blur(10px);
  animation: rd-fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.rd-header-badge i {
  color: #ef4444;
  font-size: 16px;
}

.rd-header-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #ef4444;
  letter-spacing: 2px;
}

.rd-header-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rd-fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.rd-header-date {
  color: #a0b3c6;
  font-size: 1rem;
  animation: rd-fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Critical Warning */
.rd-critical-warning {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 20px;
  padding: 40px;
  margin: 40px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: rd-pulse 4s ease-in-out infinite;
}

.rd-critical-icon {
  font-size: 3rem;
  color: #ef4444;
  margin-bottom: 20px;
  animation: rd-shake 2s ease-in-out infinite;
}

.rd-critical-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.rd-critical-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Risk Cards */
.rd-risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.rd-risk-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rd-risk-card:hover {
  transform: translateY(-10px);
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.rd-risk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.rd-risk-icon {
  width: 60px;
  height: 60px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.rd-risk-icon i {
  font-size: 1.8rem;
  color: #ef4444;
}

.rd-risk-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.rd-risk-desc {
  color: #a0b3c6;
  line-height: 1.7;
  margin-bottom: 20px;
}

.rd-risk-severity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ef4444;
}

/* Key Points */
.rd-key-points {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin: 60px 0;
}

.rd-key-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
  text-align: center;
}

.rd-key-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rd-key-item {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.rd-key-item:last-child {
  border-bottom: none;
}

.rd-key-number {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ef4444;
  min-width: 40px;
}

.rd-key-content h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 10px;
}

.rd-key-content p {
  color: #a0b3c6;
  line-height: 1.7;
}

/* Acknowledgment */
.rd-acknowledgment {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin: 60px 0;
  text-align: center;
}

.rd-ack-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.rd-ack-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.rd-ack-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.rd-ack-checkbox:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.rd-ack-checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #ef4444;
}

.rd-ack-label {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

/* Quick Actions */
.rd-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rd-action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}

.rd-action-btn:nth-child(1) {
  animation: rd-fadeInUp 0.8s ease 0.3s forwards;
}

.rd-action-btn:nth-child(2) {
  animation: rd-fadeInUp 0.8s ease 0.4s forwards;
}

.rd-action-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.2);
}

/* Animations */
@keyframes rd-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rd-slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rd-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.2);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);
  }
}

@keyframes rd-shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  75% {
    transform: rotate(5deg);
  }
}

/* Staggered Animations */
.rd-risk-card {
  animation: rd-fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.rd-risk-card:nth-child(1) {
  animation-delay: 0.2s;
}

.rd-risk-card:nth-child(2) {
  animation-delay: 0.3s;
}

.rd-risk-card:nth-child(3) {
  animation-delay: 0.4s;
}

.rd-risk-card:nth-child(4) {
  animation-delay: 0.5s;
}

.rd-risk-card:nth-child(5) {
  animation-delay: 0.6s;
}

.rd-risk-card:nth-child(6) {
  animation-delay: 0.7s;
}

.rd-key-item {
  animation: rd-fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.rd-key-item:nth-child(1) {
  animation-delay: 0.3s;
}

.rd-key-item:nth-child(2) {
  animation-delay: 0.4s;
}

.rd-key-item:nth-child(3) {
  animation-delay: 0.5s;
}

.rd-key-item:nth-child(4) {
  animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
  .rd-header-title {
    font-size: 2.8rem;
  }

  .rd-risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rd-back-home {
    top: 20px;
    left: 20px;
  }

  .rd-back-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .rd-header {
    padding: 100px 0 40px;
  }

  .rd-header-title {
    font-size: 2.2rem;
  }

  .rd-critical-warning {
    padding: 30px;
  }

  .rd-risk-grid {
    grid-template-columns: 1fr;
  }

  .rd-key-points,
  .rd-acknowledgment {
    padding: 30px;
  }

  .rd-actions {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .rd-header-title {
    font-size: 1.8rem;
  }

  .rd-critical-title {
    font-size: 1.4rem;
  }

  .rd-critical-text {
    font-size: 1rem;
  }

  .rd-risk-card {
    padding: 25px;
  }

  .rd-key-item {
    flex-direction: column;
    gap: 10px;
  }

  .rd-ack-checkbox {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
}


/* ABOUT PAGE */


/* Back Button */
.abt-back-home {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1000;
}

.abt-back-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 12px;
  color: #00a8ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  animation: abt-slideInLeft 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.abt-back-btn:hover {
  background: rgba(0, 102, 255, 0.2);
  transform: translateX(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.abt-back-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.abt-back-btn:hover i {
  transform: translateX(-5px);
}

/* Container */
.abt-page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.abt-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.abt-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.abt-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.abt-hero-content {
  animation: abt-fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.abt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 102, 255, 0.1);
  padding: 12px 28px;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 102, 255, 0.3);
  backdrop-filter: blur(10px);
}

.abt-hero-badge i {
  color: #00a8ff;
  font-size: 16px;
}

.abt-hero-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #00a8ff;
  letter-spacing: 2px;
}

.abt-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(90deg, #ffffff, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-hero-desc {
  font-size: 1.3rem;
  color: #a0b3c6;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.abt-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.abt-stat-box {
  text-align: center;
}

.abt-stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00a8ff;
  margin-bottom: 8px;
}

.abt-stat-label {
  font-size: 14px;
  color: #a0b3c6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.abt-hero-visual {
  position: relative;
  animation: abt-float 6s ease-in-out infinite;
}

.abt-visual-circle {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
}

.abt-circle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 2px solid rgba(0, 102, 255, 0.3);
  border-radius: 50%;
  animation: abt-spin 20s linear infinite;
}

.abt-ring-node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #00a8ff;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.abt-hero-card {
  position: absolute;
  top: 30%;
  right: 10%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 20px;
  width: 250px;
  animation: abt-pulse 4s ease-in-out infinite;
}

.abt-hero-card i {
  font-size: 2rem;
  color: #00a8ff;
  margin-bottom: 15px;
}

.abt-hero-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

/* Mission Section */
.abt-mission-section {
  padding: 120px 0;
  position: relative;
  background: rgba(0, 31, 77, 0.5);
}

.abt-mission-header {
  text-align: center;
  margin-bottom: 80px;
}

.abt-mission-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ffffff, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.abt-mission-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
}

.abt-mission-card:hover {
  transform: translateY(-15px);
  border-color: rgba(0, 102, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.abt-mission-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.abt-mission-icon i {
  font-size: 2rem;
  color: #00a8ff;
}

.abt-mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
}

.abt-mission-card p {
  color: #a0b3c6;
  line-height: 1.7;
}

/* Timeline Section */
.abt-timeline-section {
  padding: 120px 0;
  background: #0a1929;
}

.abt-timeline-header {
  text-align: center;
  margin-bottom: 80px;
}

.abt-timeline-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ffffff, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.abt-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #0066ff, transparent);
  transform: translateX(-50%);
}

.abt-timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.abt-timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.abt-timeline-content {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin: 0 40px;
}

.abt-timeline-year {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00a8ff;
  margin-bottom: 15px;
}

.abt-timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: white;
}

.abt-timeline-content p {
  color: #a0b3c6;
  line-height: 1.7;
}

.abt-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #0066ff;
  border-radius: 50%;
  border: 4px solid #0a1929;
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.3);
}

/* Team Section */
.abt-team-section {
  padding: 120px 0;
  background: rgba(0, 31, 77, 0.5);
}

.abt-team-header {
  text-align: center;
  margin-bottom: 80px;
}

.abt-team-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ffffff, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.abt-team-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.abt-team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 102, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.abt-team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
  border: 3px solid rgba(0, 102, 255, 0.3);
}

.abt-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.abt-team-role {
  color: #00a8ff;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.abt-team-desc {
  color: #a0b3c6;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.abt-team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.abt-social-link {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0b3c6;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.abt-social-link:hover {
  background: #0066ff;
  color: white;
  transform: translateY(-3px);
}

/* Values Section */
.abt-values-section {
  padding: 120px 0;
  background: #0a1929;
}

.abt-values-header {
  text-align: center;
  margin-bottom: 80px;
}

.abt-values-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ffffff, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.abt-value-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
}

.abt-value-card:hover {
  transform: scale(1.05);
  border-color: rgba(0, 102, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.abt-value-number {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: #00a8ff;
  margin-bottom: 20px;
  opacity: 0.5;
}

.abt-value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
}

.abt-value-card p {
  color: #a0b3c6;
  line-height: 1.7;
}

/* CTA Section */
.abt-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(0, 31, 77, 0.8) 0%, rgba(0, 102, 255, 0.8) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.abt-cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.abt-cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.abt-cta-desc {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 50px;
}

.abt-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.abt-cta-btn {
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  border: none;
}

.abt-cta-primary {
  background: white;
  color: #0066ff;
}

.abt-cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.abt-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.abt-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* Animations */
@keyframes abt-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes abt-slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes abt-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes abt-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes abt-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Staggered Animations */
.abt-hero-content,
.abt-hero-visual,
.abt-mission-card,
.abt-timeline-item,
.abt-team-card,
.abt-value-card {
  animation: abt-fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.abt-hero-content {
  animation-delay: 0.3s;
}

.abt-hero-visual {
  animation-delay: 0.5s;
}

.abt-mission-card:nth-child(1) {
  animation-delay: 0.2s;
}

.abt-mission-card:nth-child(2) {
  animation-delay: 0.4s;
}

.abt-mission-card:nth-child(3) {
  animation-delay: 0.6s;
}

.abt-timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}

.abt-timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}

.abt-timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}

.abt-timeline-item:nth-child(4) {
  animation-delay: 0.8s;
}

.abt-team-card:nth-child(1) {
  animation-delay: 0.2s;
}

.abt-team-card:nth-child(2) {
  animation-delay: 0.3s;
}

.abt-team-card:nth-child(3) {
  animation-delay: 0.4s;
}

.abt-team-card:nth-child(4) {
  animation-delay: 0.5s;
}

.abt-value-card:nth-child(1) {
  animation-delay: 0.2s;
}

.abt-value-card:nth-child(2) {
  animation-delay: 0.4s;
}

.abt-value-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1200px) {
  .abt-hero-grid {
    gap: 60px;
  }

  .abt-team-grid,
  .abt-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .abt-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .abt-mission-grid,
  .abt-values-grid {
    grid-template-columns: 1fr;
  }

  .abt-timeline::before {
    left: 30px;
  }

  .abt-timeline-item {
    flex-direction: row !important;
    margin-left: 60px;
  }

  .abt-timeline-dot {
    left: 30px;
  }

  .abt-timeline-content {
    margin-left: 0;
    margin-right: 0;
  }

  .abt-hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .abt-back-home {
    top: 20px;
    left: 20px;
  }

  .abt-back-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .abt-hero-title,
  .abt-mission-title,
  .abt-timeline-title,
  .abt-team-title,
  .abt-values-title,
  .abt-cta-title {
    font-size: 2.5rem;
  }

  .abt-hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .abt-visual-circle {
    width: 300px;
    height: 300px;
  }

  .abt-circle-ring {
    width: 250px;
    height: 250px;
  }

  .abt-hero-card {
    position: relative;
    right: auto;
    top: auto;
    margin: 30px auto 0;
  }

  .abt-team-grid {
    grid-template-columns: 1fr;
  }

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

  .abt-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .abt-hero-title {
    font-size: 2rem;
  }

  .abt-hero-desc {
    font-size: 1.1rem;
  }

  .abt-mission-card,
  .abt-timeline-content,
  .abt-team-card,
  .abt-value-card {
    padding: 25px;
  }

  .abt-stat-number {
    font-size: 2rem;
  }
}




/* POLICY PAGE */


/* Back Button */
.pp-back-home {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1000;
}

.pp-back-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 12px;
  color: #00a8ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  animation: pp-slideInLeft 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.pp-back-btn:hover {
  background: rgba(0, 102, 255, 0.2);
  transform: translateX(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.pp-back-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.pp-back-btn:hover i {
  transform: translateX(-5px);
}

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

/* Header */
.pp-header {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pp-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.pp-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 102, 255, 0.1);
  padding: 12px 28px;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 102, 255, 0.3);
  backdrop-filter: blur(10px);
  animation: pp-fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.pp-header-badge i {
  color: #00a8ff;
  font-size: 16px;
}

.pp-header-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #00a8ff;
  letter-spacing: 2px;
}

.pp-header-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #00a8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pp-fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.pp-header-date {
  color: #a0b3c6;
  font-size: 1rem;
  animation: pp-fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Table of Contents */
.pp-toc {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  animation: pp-fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.pp-toc-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-toc-title i {
  color: #00a8ff;
}

.pp-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.pp-toc-item {
  margin-bottom: 12px;
}

.pp-toc-link {
  color: #a0b3c6;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.pp-toc-link:hover {
  color: white;
  background: rgba(0, 102, 255, 0.1);
  transform: translateX(5px);
}

.pp-toc-link i {
  font-size: 12px;
  color: #00a8ff;
}

/* Content Sections */
.pp-content {
  padding: 60px 0 120px;
}

.pp-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  animation: pp-fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.pp-section:hover {
  border-color: rgba(0, 102, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.pp-section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-section-number {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00a8ff;
  min-width: 50px;
}

.pp-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
}

.pp-text {
  color: #a0b3c6;
  line-height: 1.7;
  margin-bottom: 20px;
}

.pp-text:last-child {
  margin-bottom: 0;
}

.pp-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pp-list-item {
  padding: 10px 0;
  color: #a0b3c6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pp-list-item i {
  color: #00a8ff;
  margin-top: 5px;
  font-size: 14px;
  flex-shrink: 0;
}

.pp-important {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.pp-important-title {
  color: #f59e0b;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pp-important-title i {
  font-size: 1.2rem;
}

.pp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
}

.pp-table th {
  background: rgba(0, 102, 255, 0.1);
  color: white;
  font-weight: 600;
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-table td {
  padding: 20px;
  color: #a0b3c6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pp-table tr:last-child td {
  border-bottom: none;
}

.pp-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Contact Section */
.pp-contact {
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  animation: pp-fadeInUp 0.8s ease 1s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.pp-contact-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
}

.pp-contact-desc {
  color: #a0b3c6;
  margin-bottom: 25px;
}

.pp-contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pp-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a0b3c6;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 12px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.pp-contact-item:hover {
  background: rgba(0, 102, 255, 0.2);
  color: white;
  transform: translateY(-3px);
}

.pp-contact-item i {
  color: #00a8ff;
}

/* Quick Actions */
.pp-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pp-action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: #00a8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}

.pp-action-btn:nth-child(1) {
  animation: pp-fadeInUp 0.8s ease 0.3s forwards;
}

.pp-action-btn:nth-child(2) {
  animation: pp-fadeInUp 0.8s ease 0.4s forwards;
}

.pp-action-btn:hover {
  background: rgba(0, 102, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* Animations */
@keyframes pp-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pp-slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered Animations */
.pp-section:nth-child(1) {
  animation-delay: 0.2s;
}

.pp-section:nth-child(2) {
  animation-delay: 0.3s;
}

.pp-section:nth-child(3) {
  animation-delay: 0.4s;
}

.pp-section:nth-child(4) {
  animation-delay: 0.5s;
}

.pp-section:nth-child(5) {
  animation-delay: 0.6s;
}

.pp-section:nth-child(6) {
  animation-delay: 0.7s;
}

.pp-section:nth-child(7) {
  animation-delay: 0.8s;
}

.pp-section:nth-child(8) {
  animation-delay: 0.9s;
}

/* Responsive */
@media (max-width: 992px) {
  .pp-header-title {
    font-size: 2.8rem;
  }

  .pp-section {
    padding: 40px;
  }

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

@media (max-width: 768px) {
  .pp-back-home {
    top: 20px;
    left: 20px;
  }

  .pp-back-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .pp-header {
    padding: 100px 0 40px;
  }

  .pp-header-title {
    font-size: 2.2rem;
  }

  .pp-section {
    padding: 30px;
  }

  .pp-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pp-table {
    display: block;
    overflow-x: auto;
  }

  .pp-contact-info {
    flex-direction: column;
    align-items: center;
  }

  .pp-actions {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .pp-header-title {
    font-size: 1.8rem;
  }

  .pp-section {
    padding: 25px;
  }

  .pp-section-title {
    font-size: 1.4rem;
  }

  .pp-toc {
    padding: 30px;
  }

  .pp-contact {
    padding: 30px;
  }
}







/* TERRMS PAGE */


/* Back Button */
.tou-back-home {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1000;
}

.tou-back-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 12px;
  color: #00a8ff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  animation: tou-slideInLeft 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.tou-back-btn:hover {
  background: rgba(0, 102, 255, 0.2);
  transform: translateX(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.tou-back-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.tou-back-btn:hover i {
  transform: translateX(-5px);
}

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

/* Header */
.tou-header {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tou-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.tou-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(245, 158, 11, 0.1);
  padding: 12px 28px;
  border-radius: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  backdrop-filter: blur(10px);
  animation: tou-fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.tou-header-badge i {
  color: #f59e0b;
  font-size: 16px;
}

.tou-header-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #f59e0b;
  letter-spacing: 2px;
}

.tou-header-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: tou-fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.tou-header-date {
  color: #a0b3c6;
  font-size: 1rem;
  animation: tou-fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Acceptance Box */
.tou-acceptance {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin: 60px 0;
  text-align: center;
  animation: tou-fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.tou-acceptance-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tou-acceptance-text {
  color: #a0b3c6;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 25px;
}

.tou-acceptance-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #f59e0b;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  font-style: italic;
}

/* Table of Contents */
.tou-toc {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
  animation: tou-fadeInUp 0.8s ease 0.7s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.tou-toc-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tou-toc-title i {
  color: #00a8ff;
}

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

.tou-toc-section {
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.tou-toc-section:hover {
  border-color: rgba(0, 102, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.tou-toc-number {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #00a8ff;
  margin-bottom: 8px;
}

.tou-toc-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.tou-toc-link:hover {
  color: #00a8ff;
}

.tou-toc-sub {
  color: #a0b3c6;
  font-size: 0.9rem;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tou-toc-sub li {
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tou-toc-sub i {
  font-size: 10px;
  color: #00a8ff;
}

/* Content Sections */
.tou-content {
  padding: 60px 0 120px;
}

.tou-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  animation: tou-fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.tou-section:hover {
  border-color: rgba(0, 102, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.tou-section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tou-section-number {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f59e0b;
  min-width: 50px;
}

.tou-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
}

.tou-text {
  color: #a0b3c6;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tou-text:last-child {
  margin-bottom: 0;
}

.tou-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.tou-list-item {
  padding: 15px 0;
  color: #a0b3c6;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tou-list-item:last-child {
  border-bottom: none;
}

.tou-list-item i {
  color: #f59e0b;
  margin-top: 5px;
  font-size: 14px;
  flex-shrink: 0;
}

.tou-warning {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.tou-warning-title {
  color: #ef4444;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tou-warning-title i {
  font-size: 1.2rem;
}

.tou-notice {
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.tou-notice-title {
  color: #00a8ff;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tou-notice-title i {
  font-size: 1.2rem;
}

.tou-definition {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.tou-definition dt {
  color: #00a8ff;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.tou-definition dd {
  color: #a0b3c6;
  margin-left: 20px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.tou-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
}

.tou-table th {
  background: rgba(245, 158, 11, 0.1);
  color: white;
  font-weight: 600;
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tou-table td {
  padding: 20px;
  color: #a0b3c6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tou-table tr:last-child td {
  border-bottom: none;
}

.tou-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Jurisdiction Section */
.tou-jurisdiction {
  background: linear-gradient(135deg, rgba(0, 31, 77, 0.8) 0%, rgba(0, 102, 255, 0.8) 100%);
  border-radius: 20px;
  padding: 40px;
  margin: 60px 0;
  text-align: center;
  animation: tou-fadeInUp 0.8s ease 1s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.tou-jurisdiction-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.tou-jurisdiction-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.tou-jurisdiction-item {
  text-align: center;
  padding: 20px;
  min-width: 200px;
}

.tou-jurisdiction-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.tou-jurisdiction-icon i {
  font-size: 1.5rem;
  color: white;
}

.tou-jurisdiction-item h4 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.tou-jurisdiction-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* Quick Actions */
.tou-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tou-action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: #00a8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}

.tou-action-btn:nth-child(1) {
  animation: tou-fadeInUp 0.8s ease 0.3s forwards;
}

.tou-action-btn:nth-child(2) {
  animation: tou-fadeInUp 0.8s ease 0.4s forwards;
}

.tou-action-btn:hover {
  background: rgba(0, 102, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* Animations */
@keyframes tou-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tou-slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered Animations */
.tou-section:nth-child(1) {
  animation-delay: 0.2s;
}

.tou-section:nth-child(2) {
  animation-delay: 0.3s;
}

.tou-section:nth-child(3) {
  animation-delay: 0.4s;
}

.tou-section:nth-child(4) {
  animation-delay: 0.5s;
}

.tou-section:nth-child(5) {
  animation-delay: 0.6s;
}

.tou-section:nth-child(6) {
  animation-delay: 0.7s;
}

.tou-section:nth-child(7) {
  animation-delay: 0.8s;
}

.tou-section:nth-child(8) {
  animation-delay: 0.9s;
}

/* Responsive */
@media (max-width: 992px) {
  .tou-header-title {
    font-size: 2.8rem;
  }

  .tou-section {
    padding: 40px;
  }

  .tou-toc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tou-back-home {
    top: 20px;
    left: 20px;
  }

  .tou-back-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .tou-header {
    padding: 100px 0 40px;
  }

  .tou-header-title {
    font-size: 2.2rem;
  }

  .tou-section {
    padding: 30px;
  }

  .tou-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tou-toc-grid {
    grid-template-columns: 1fr;
  }

  .tou-jurisdiction-content {
    flex-direction: column;
    gap: 20px;
  }

  .tou-actions {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .tou-header-title {
    font-size: 1.8rem;
  }

  .tou-section {
    padding: 25px;
  }

  .tou-section-title {
    font-size: 1.4rem;
  }

  .tou-acceptance,
  .tou-toc,
  .tou-jurisdiction {
    padding: 30px;
  }

  .tou-table {
    display: block;
    overflow-x: auto;
  }
}