/* Security Page Styles */
.security-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  opacity: 0;
  animation: fadeIn 1s ease-in-out 1.5s forwards;
}

.security-hero .hero-content {
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-in-out 2s forwards;
}

.security-hero .hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInDown 1s ease-in-out 2.5s forwards;
}

.security-hero .hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-in-out 3s forwards;
}

.security-hero .hero-background {
  position: absolute;
  top: -2.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/background/stfx_bg_6.jpg") no-repeat center
    center/cover;
  z-index: -1;
  opacity: 0.5;
  background-attachment: fixed;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Security Overview Section */
.security-overview {
  padding: 1rem 0;
  background-color: #0f0f0f;
  color: #f0f8ff;
}

.features-cards {
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  scroll-snap-type: x mandatory; /* Snap cards into place */
  gap: 1.5rem;
  padding-bottom: 1rem; /* Add space for scrollbar (hidden) */
  margin: 2rem;
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.features-cards::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.card {
  flex: 0 0 auto; /* Prevent cards from shrinking */
  width: 300px; /* Fixed width for each card */
  padding: 1.5rem;
  background: #2a2a2a;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 280px;
  scroll-snap-align: start; /* Snap cards to the start of the container */
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
  cursor: pointer;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ff88;
  text-align: center;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #f0f8ff;
}

.card-description {
  font-size: 0.9rem;
  color: #f0f8ff;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Asset Protection Section */
.asset-protection {
  padding: 5rem 2rem;
  background-color: #121212;
  color: #f0f8ff;
}

.protection-content-wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.protection-content {
  flex: 1;
}

.protection-visual {
  flex: 1;
}

.protection-visual img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.protection-steps {
  margin-top: 2rem;
}

.protection-step {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  background: #00ff88;
  color: #121212;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  /* color: #f0f8ff; */
}

.step-content p {
  color: #f0f8ff;
  line-height: 1.6;
}

.section-outro .learn-more {
  display: inline-block;
  margin-top: 1rem;
  color: #00ff88;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: transparent;
}

.section-outro .learn-more:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* Encryption Technology Section */
.encryption-tech {
  padding: 5rem 2rem;
  background-color: #0f0f0f;
  color: #f0f8ff;
}

.encryption-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.encryption-text {
  flex: 1;
}

.encryption-visual {
  flex: 1;
}

.encryption-features {
  margin: 2rem 0;
}

.encryption-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #f0f8ff;
}

.protocol-icon {
  text-align: center;
  font-size: 2.5rem;
  color: #0f8;
}

.encryption-features i {
  color: #00ff88;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.security-badge {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.security-badge img {
  max-width: 70px;
  margin-bottom: 1rem;
}

.security-badge p {
  color: #f0f8ff;
  font-style: italic;
}

.encryption-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  position: relative;
}

.data-block {
  width: 120px;
  height: 120px;
  background: #00ff88;
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.ciphertext {
  background: #1a1a1a;
  color: #00ff88;
  border: 2px dashed #00ff88;
}

.encryption-process {
  margin: 0 2rem;
  font-size: 2rem;
  color: #00ff88;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

/* User Security Section - Flip Cards */
.user-security {
  padding: 5rem 2rem;
  background-color: #121212;
  color: #f0f8ff;
}

.security-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
}

.flip-card {
  background-color: transparent;
  perspective: 1000px;
  height: 360px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 10px;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
  cursor: pointer;
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.flip-card-front {
  background-color: #1a1a1a;
  color: white;
  justify-content: center;
}

.flip-card-back {
  background-color: #0f0f0f;
  color: white;
  transform: rotateY(180deg);
  justify-content: flex-start;
  overflow-y: auto;
}

.flip-card-back h3 {
  color: #00ff88;
  margin-bottom: 1rem;
}

.flip-card-back ul {
  text-align: left;
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
  color: #f0f8ff;
  font-size: 0.9rem;
}

.flip-card-back ul li {
  margin-bottom: 0.5rem;
}

.tip-icon {
  font-size: 2rem;
  color: #00ff88;
  margin-bottom: 1rem;
}

.flip-card-front h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.flip-card-front p {
  color: #f0f8ff;
  line-height: 1.4;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.flip-indicator {
  font-size: 0.8rem;
  color: #00ff88;
  margin-top: auto;
  transition: all 0.3s ease;
}

.flip-indicator:hover {
  color: #00cc6a;
  cursor: pointer;
}

/* Security Partners Section */
.security-partners {
  padding: 5rem 0;
  background-color: #121212;
  color: #f0f8ff;
  text-align: center;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 3rem auto;
  padding: 2rem 1rem;
  max-width: 1200px;
  background: #b7b7b7;
}

.partner-logos img {
  max-width: 105px;
  height: auto;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.partner-logos img:hover {
  filter: grayscale(0%) brightness(1);
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .protection-content-wrapper,
  .encryption-content {
    flex-direction: column;
  }

  .protection-content,
  .encryption-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1040px) {
  .asset-protection,
  .encryption-content {
    flex-direction: column;
  }

  .protection-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .encryption-text {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .security-hero .hero-title {
    font-size: 2.5rem;
  }

  .security-hero .security-tagline {
    font-size: 1.2rem;
  }

  .protection-step {
    flex-direction: column;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal Styles */
.modal-container {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
}

.modal {
  display: none;
  background-color: #1a1a1a;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-content {
  color: #ffffff;
}

.close-modal {
  position: absolute;
  right: 2rem;
  top: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #f0f8ff;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #ffffff;
}

.modal h2 {
  color: #00ff88;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.modal-body {
  padding: 1rem 0;
}

/* Security Audits Modal Specific */
.audit-report {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.audit-report h3 {
  color: #00ff88;
  margin-top: 0;
}

.audit-findings {
  background-color: #2d2d2d;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
}

.audit-findings h4 {
  margin-top: 0;
}

.audit-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.download-btn {
  background-color: #00ff88;
  color: #121212;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  border: none;
}

.download-btn:hover {
  background-color: #00cc6a;
  cursor: pointer;
}

.file-size {
  color: #999999;
  font-size: 0.9rem;
}

/* Security Team Modal Specific */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.team-member {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00ff88;
}

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

.member-info {
  flex: 1;
}

.member-info h3 {
  margin: 0 0 0.5rem 0;
  color: #ffffff;
}

.title {
  color: #00ff88;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.bio {
  color: #f0f8ff;
  margin: 0 0 1rem 0;
}

.expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.expertise-tag {
  background-color: #333333;
  color: #00ff88;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.security-stats {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #00ff88;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #f0f8ff;
  font-size: 0.9rem;
}

.security-certifications {
  margin-top: 2rem;
}

.security-certifications h3 {
  margin-bottom: 1rem;
}

.certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.certs-grid img {
  height: 60px;
  width: auto;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s;
}

.certs-grid img:hover {
  filter: grayscale(0%) brightness(1);
}

/* 2FA Guide Modal Specific */
/* Email 2FA Specific Styles */
.security-note {
  background-color: rgba(255, 204, 0, 0.1);
  border-left: 4px solid #ffcc00;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}

.security-note i {
  color: #ffcc00;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.email-security-tips {
  margin: 2rem 0;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.security-tip {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
}

.security-tip i {
  color: #00ff88;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.security-tip h5 {
  margin: 0.5rem 0 1rem 0;
  color: #ffffff;
}

.limitations {
  margin-top: 2rem;
}

.limitation-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.limitation-item i {
  color: #ff6b6b;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

/* Authenticator App Styles */
.app-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.app-option {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.app-option img {
  max-width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.app-download {
  display: block;
  background-color: #333;
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 5px;
  margin: 0.5rem 0;
  text-decoration: none;
  transition: background-color 0.3s;
}

.app-download:hover {
  background-color: #444;
}

.migration-guide {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

/* Backup Methods Styles */
.backup-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.backup-option {
  background-color: #252525;
  border-radius: 8px;
  overflow: hidden;
}

.backup-header {
  background-color: #333;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.backup-header i {
  font-size: 1.5rem;
  color: #00ff88;
}

.backup-content {
  padding: 1.5rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ff88;
  margin-top: 1rem;
}

.generate-codes {
  background-color: #00ff88;
  color: #121212;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.generate-codes:hover {
  background-color: #00cc6a;
}

.recovery-process {
  margin-top: 2rem;
}

.process-steps {
  margin-top: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .security-grid,
  .app-options {
    grid-template-columns: 1fr;
  }

  .backup-options {
    grid-template-columns: 1fr;
  }
}

/* Wallet Security Modal Specific */
.security-feature {
  margin-bottom: 2.5rem;
}

.security-feature h3 {
  color: #00ff88;
  margin-bottom: 1rem;
}

.feature-steps {
  margin: 1.5rem 0;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.step-number {
  background-color: #00ff88;
  color: #121212;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

.security-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00ff88;
  font-weight: bold;
}

.notification-options {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
}

.option {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.option:last-child {
  margin-bottom: 0;
}

.option input {
  margin-right: 1rem;
}

.api-security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.api-tip {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
}

.api-tip i {
  color: #00ff88;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.api-tip h4 {
  margin: 0.5rem 0;
  color: #ffffff;
}

.api-documentation {
  text-align: center;
  margin-top: 1.5rem;
}

.docs-link {
  color: #00ff88;
  font-weight: bold;
  text-decoration: none;
}

.docs-link:hover {
  text-decoration: underline;
}

/* Phishing Guide Modal Specific */
.phishing-examples {
  margin-bottom: 2rem;
}

.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.example {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
}

.example-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.example-header i {
  font-size: 1.5rem;
}

.fake-email i {
  color: #ff6b6b;
}

.fake-site i {
  color: #feca57;
}

.example h4 {
  margin: 0;
  color: #ffffff;
}

.red-flags {
  margin-top: 1rem;
}

.red-flags span {
  font-weight: bold;
  color: #ff6b6b;
}

.red-flags ul {
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

.verification-methods {
  margin: 2rem 0;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.method-card {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.card-icon {
  font-size: 2rem;
  color: #00ff88;
  margin-bottom: 1rem;
}

.method-card h4 {
  margin: 0.5rem 0;
  color: #ffffff;
}

.phishing-test {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.test-question {
  margin-bottom: 1.5rem;
}

.email-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.email-option {
  background-color: #333333;
  padding: 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.email-option:hover {
  border-color: #555555;
}

.email-option[data-correct="true"] {
  background-color: rgba(0, 255, 136, 0.1);
}

.email-option[data-correct="false"] {
  background-color: rgba(255, 107, 107, 0.1);
}

.select-btn {
  background-color: #444444;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.select-btn:hover {
  background-color: #555555;
}

/* Secure Trading Modal Specific */
.practice-category {
  margin-bottom: 2.5rem;
}

.practice-category h3 {
  color: #00ff88;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #333;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.practice {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  gap: 1.5rem;
}

.practice-icon {
  font-size: 1.5rem;
  color: #00ff88;
}

.practice-content h4 {
  margin-top: 0;
  color: #ffffff;
}

.device-recommendations {
  margin-top: 1rem;
}

.device {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.device i {
  color: #00ff88;
}

.session-tips {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
}

.tip {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.tip-number {
  background-color: #00ff88;
  color: #121212;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Contact Security Modal Specific */
.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-option {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
}

.urgent {
  border-left: 4px solid #ff6b6b;
}

.general {
  border-left: 4px solid #00ff88;
}

.option-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.option-header i {
  font-size: 1.5rem;
}

.urgent .option-header i {
  color: #ff6b6b;
}

.general .option-header i {
  color: #00ff88;
}

.security-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 5px;
  border: 1px solid #333;
  background-color: #333;
  color: #ffffff;
}

.form-group textarea {
  min-height: 120px;
}

.submit-btn {
  background-color: #00ff88;
  color: #121212;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  width: 30%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #00cc6a;
}

.security-response {
  background-color: #252525;
  padding: 1.5rem;
  border-radius: 8px;
}

.response-timeline {
  margin: 1.5rem 0;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.timeline-marker.urgent {
  background-color: #ff6b6b;
}

.timeline-marker.general {
  background-color: #00ff88;
}

.pgp-info {
  margin-top: 2rem;
}

.pgp-key {
  background-color: #333;
  padding: 1rem;
  border-radius: 5px;
  margin: 1rem 0;
  overflow-x: auto;
}

.copy-pgp {
  background-color: #444;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.copy-pgp:hover {
  background-color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .modal {
    width: 95%;
    padding: 1.5rem;
  }

  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .key-options {
    flex-direction: column;
  }

  .example-grid,
  .email-options {
    grid-template-columns: 1fr;
  }

  .practice {
    flex-direction: column;
  }
}

/* Tab Container */
.tab-container {
  margin-top: 20px;
}

/* Tab Buttons */
.tab-buttons,
.contact-tabs {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.tab-button,
.contact-tab {
  padding: 12px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  position: relative;
  transition: all 0.3s ease;
}

.tab-button:hover,
.contact-tab:hover {
  color: #333;
}

.tab-button.active,
.contact-tab.active {
  background: #0f8;
  font-weight: 600;
}

.tab-button.active::after,
.contact-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00cc6a;
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.key-option {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 2rem auto;
}

.key-option img {
  width: 120px;
  margin: 1rem auto;
}

.setup-guide {
  padding: 0 1rem;
}

.protection-list {
  list-style-type: none;
}

.protection-list li,
.method,
.benefit {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  /* justify-content: space-between; */
}

.setup-guide ol li,
.backup-content ol li,
.protection-list li {
  padding-left: 1rem;
}

.protection-list li span,
.method span,
.benefit span {
  margin-left: 2rem;
  width: 90%;
}

.protection-list i,
.method i,
.benefit i {
  color: #0f8;
}

.verification-tip,
.practice-item {
  display: flex;
  margin: 1rem 0;
  align-items: center;
  flex-direction: column;
}

.verification-tip i,
.practice-item i {
  font-size: 2rem;
  color: #0f8;
}

.verification-tip p,
.practice-item p {
  margin: 1rem;
  text-align: left;
}

.overview-header {
  text-align: center;
  color: #0f8;
  margin: 0 0 1rem;
}

.overview-header .fas {
  font-size: 2.5rem;
}

.modal .security-overview {
  padding: 1rem 2rem;
}

.phishing-examples h3,
.verification-methods h3 {
  color: #00ff88;
}

.btn-secondary {
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  background: gray;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.btn-secondary:hover {
  background: #00ff88;
  cursor: pointer;
}

#modal-email {
  width: 100%;
  outline: none;
  padding: 0.7rem;
}

#security-query-form {
  margin: 2rem auto 1rem;
}
