/* ==========================================================================
   CSS Style Document for toroporno.xyz
   Author: Antigravity Assistant
   Description: Premium, highly responsive dark mode styling for streaming platform.
   ========================================================================== */

/* --- Import Modern Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Colors */
  --bg-dark: #07070a;
  --bg-card: #0f0f15;
  --bg-card-hover: #161622;
  
  --accent-red: #ff2a5f;
  --accent-red-hover: #e01b4c;
  --accent-red-glow: rgba(255, 42, 95, 0.35);
  
  --accent-gold: #f59e0b;
  --accent-gold-glow: rgba(245, 158, 11, 0.15);
  
  --text-white: #ffffff;
  --text-gray-light: #e2e8f0;
  --text-gray-medium: #94a3b8;
  --text-gray-dark: #475569;
  
  --border-light: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(255, 42, 95, 0.3);
  
  --glass-bg: rgba(15, 15, 21, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Global Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-gray-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Reusable Components & Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.badge-verified {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
}

.badge-verified svg {
  fill: var(--accent-gold);
  width: 14px;
  height: 14px;
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text span {
  color: var(--accent-red);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Keep clean and simplified for conversion page */
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray-medium);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-btn {
  padding: 0.6rem 1.2rem;
  background: rgba(255, 42, 95, 0.1);
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-btn:hover {
  background: var(--accent-red);
  color: var(--text-white);
  box-shadow: 0 0 15px var(--accent-red-glow);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: radial-gradient(circle at 75% 30%, rgba(255, 42, 95, 0.12) 0%, rgba(7, 7, 10, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(15, 15, 21, 0.8) 0%, rgba(7, 7, 10, 1) 100%);
}

.hero-background-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--accent-red-glow);
  filter: blur(120px);
  border-radius: 50%;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--text-white) 50%, var(--text-gray-medium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-cta-desc {
  font-size: 1.25rem;
  color: var(--text-gray-light);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

@media (max-width: 768px) {
  .hero-cta-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

/* --- Highlighting Watch Free Button --- */
.btn-watch-free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff4b7d 100%);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px var(--accent-red-glow),
              inset 0 2px 4px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.3s ease, 
              border-color 0.3s ease;
  animation: pulseGlow 2.5s infinite;
}

.btn-watch-free::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
}

.btn-watch-free:hover {
  transform: scale(1.06);
  box-shadow: 0 15px 40px rgba(255, 42, 95, 0.65),
              inset 0 2px 8px rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-watch-free:hover::before {
  left: 150%;
  transition: all 0.8s ease-in-out;
}

.btn-watch-free:active {
  transform: scale(0.98);
  box-shadow: 0 5px 15px rgba(255, 42, 95, 0.4);
}

.btn-watch-free svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.btn-watch-free:hover svg {
  transform: translateX(4px);
}

/* Button sub-text info */
.btn-meta-info {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-gray-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-meta-info span.dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
}

/* --- Pulse Glow Animation --- */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 10px 25px var(--accent-red-glow), 0 0 0 0 rgba(255, 42, 95, 0.5);
  }
  50% {
    box-shadow: 0 15px 35px rgba(255, 42, 95, 0.5), 0 0 0 12px rgba(255, 42, 95, 0);
  }
  100% {
    box-shadow: 0 10px 25px var(--accent-red-glow), 0 0 0 0 rgba(255, 42, 95, 0);
  }
}

/* --- Verification & Official Mirror Section --- */
.verification-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 15, 21, 0.7) 100%);
  position: relative;
}

.verify-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .verify-card {
    padding: 2rem 1.5rem;
  }
}

.verify-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, #fbbf24 100%);
}

.verify-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .verify-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.verify-badge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(245, 158, 11, 0.03);
  border: 1px dashed rgba(245, 158, 11, 0.2);
  border-radius: 12px;
}

.badge-seal {
  width: 90px;
  height: 90px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  border: 2px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 0 30px var(--accent-gold-glow);
}

.badge-seal svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.verify-domain-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.verify-domain-sub {
  font-size: 0.9rem;
  color: var(--text-gray-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.verify-content h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .verify-content h3 {
    font-size: 1.75rem;
  }
}

.verify-content p {
  color: var(--text-gray-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.evidence-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.evidence-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.evidence-icon {
  width: 24px;
  height: 24px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.evidence-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.evidence-text strong {
  display: block;
  color: var(--text-white);
  margin-bottom: 0.15rem;
}

.evidence-text span {
  color: var(--text-gray-medium);
  font-size: 0.9rem;
}

/* --- Features Section --- */
.features-section {
  background-color: var(--bg-dark);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

.section-header p {
  color: var(--text-gray-medium);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon-container {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: rgba(255, 42, 95, 0.08);
  border: 1px solid rgba(255, 42, 95, 0.2);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon-container svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-gray-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Stream Showcase Section (Video Cards) --- */
.showcase-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 15, 21, 0.8) 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.video-card:hover {
  transform: scale(1.02);
  border-color: var(--border-glow);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(45deg, #111 25%, #222 50%, #111 75%);
  background-size: 200% 200%;
  animation: shimmerBg 3s infinite linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes shimmerBg {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.video-thumbnail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.85) 100%);
}

.video-placeholder-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 2px solid var(--text-white);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all var(--transition-fast);
}

.video-card:hover .video-placeholder-icon {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--accent-red-glow);
}

.video-placeholder-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-left: 2px; /* Visual alignment for play triangle */
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-white);
  z-index: 2;
}

.video-info {
  padding: 1.25rem;
}

.video-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.video-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-gray-medium);
}

.video-meta-views {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.video-meta-views svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* --- FAQ Section --- */
.faq-section {
  background-color: var(--bg-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem;
  text-align: left;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--text-gray-medium);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-gray-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-answer-inner p + p {
  margin-top: 1rem;
}

/* --- Call To Action (Bottom) --- */
.bottom-cta {
  background: radial-gradient(circle at center, rgba(255, 42, 95, 0.08) 0%, rgba(7, 7, 10, 0) 70%),
              var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.bottom-cta h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .bottom-cta h2 {
    font-size: 2rem;
  }
}

.bottom-cta p {
  color: var(--text-gray-medium);
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
}

/* --- Footer --- */
.site-footer {
  background-color: #040406;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
  color: var(--text-gray-medium);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-brand h4 span {
  color: var(--accent-red);
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-col h5 {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link-item a:hover {
  color: var(--text-white);
  padding-left: 4px;
}

.footer-address {
  font-style: normal;
  line-height: 1.7;
}

.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-address-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-address-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-divider {
  height: 1px;
  background-color: var(--border-light);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.copyright-text {
  font-size: 0.85rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  max-width: 600px;
  text-align: right;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-disclaimer {
    text-align: center;
  }
}

.footer-disclaimer span {
  color: var(--text-gray-dark);
}
