/* 
 * Policy Pages Specific Styles
 * Terminal-inspired styling for Terms, Privacy, and Open Source pages
 */

/* Policy Header */
.policy-header {
  margin: 30px 0;
  text-align: center;
  border-bottom: 1px dashed var(--terminal-border);
  padding-bottom: 15px;
}

.policy-header h1 {
  color: var(--terminal-text);
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.last-updated {
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Policy Sections */
.policy-section {
  margin: 30px 0;
  position: relative;
}

.policy-section h2 {
  color: #ffcc00;
  margin-bottom: 15px;
  border-left: 3px solid var(--terminal-link);
  padding-left: 10px;
}

.policy-section h3 {
  color: var(--terminal-link);
  margin: 20px 0 10px 0;
  font-size: 1.1rem;
}

.policy-content {
  padding-left: 15px;
  line-height: 1.6;
}

.policy-content p {
  margin-bottom: 15px;
}

/* Policy Lists */
.policy-list {
  list-style-type: none;
  margin: 15px 0;
  padding-left: 20px;
}

.policy-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}

.policy-list li:before {
  content: ">";
  position: absolute;
  left: 0;
  color: #ffcc00;
}

/* Highlight and Code Tags */
.highlight {
  color: var(--terminal-link-hover);
  font-weight: bold;
}

.code-tag {
  font-family: monospace;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2px 5px;
  border-radius: 3px;
  border: 1px solid var(--terminal-border);
  color: #00cc66;
}

/* Return Home Link */
.return-home {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed var(--terminal-border);
}

.return-home a {
  color: var(--terminal-link);
  text-decoration: none;
  transition: color 0.3s;
}

.return-home a:hover {
  color: var(--terminal-link-hover);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .policy-content {
    padding-left: 5px;
  }
  
  .policy-section h2 {
    font-size: 1.2rem;
  }
  
  .policy-header h1 {
    font-size: 1.5rem;
  }
}

/* Terminal Scrolling Effect */
.terminal-screen {
  scroll-behavior: smooth;
}
