* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0f0f0f;
  color: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 6vw, 92px);
  background: rgba(8, 8, 8, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img,
.site-footer img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: #9b9b9b;
  font-size: 12px;
  line-height: 1.2;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header nav a,
.site-footer nav a {
  color: #d0d0d0;
  font-size: 14px;
}

.language-menu {
  position: relative;
  color: #ffffff;
  font-size: 14px;
}

.language-menu summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover,
.language-menu[open] summary {
  background: rgba(232, 14, 29, 0.18);
  border-color: rgba(232, 14, 29, 0.62);
}

.language-menu summary:active {
  transform: scale(0.98);
}

.language-label {
  color: #a8a8a8;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.language-menu summary strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.language-menu summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-menu div {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  min-width: 220px;
  padding: 8px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.language-menu div a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 8px 11px;
  border-radius: 6px;
  color: #d8d8d8;
  font-weight: 600;
}

.language-menu div a:hover,
.language-menu div a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.language-menu div a.is-current {
  background: rgba(232, 14, 29, 0.18);
  color: #ffffff;
}

.language-menu div a.is-current::after {
  content: "";
  width: 8px;
  height: 14px;
  border-right: 2px solid #e80e1d;
  border-bottom: 2px solid #e80e1d;
  transform: rotate(45deg);
  margin-left: 18px;
}

[dir="rtl"] .language-menu div {
  right: auto;
  left: 0;
  text-align: right;
}

[dir="rtl"] .language-menu div a.is-current::after {
  margin-right: 18px;
  margin-left: 0;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 15, 0.96), rgba(15, 15, 15, 0.62) 48%, rgba(15, 15, 15, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 110px clamp(20px, 7vw, 104px) 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-content > p,
.section-copy p,
.download-section p {
  color: #c7c7c7;
  font-size: 18px;
  line-height: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 700;
}

.primary-button {
  width: fit-content;
  background: #e80e1d;
  color: #ffffff;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.category-card:focus-visible,
.language-menu summary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0f0f0f;
  margin-left: -14px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.trust-row p {
  margin: 0;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row span {
  color: #9f9f9f;
  font-size: 14px;
}

.section {
  padding: 92px clamp(20px, 7vw, 104px);
}

.section-copy {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.category-grid,
.benefit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.category-card,
.benefits article,
.testimonials article {
  overflow: hidden;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.category-card div,
.benefits article,
.testimonials article {
  padding: 24px;
}

.category-card p,
.benefits p,
.testimonials p {
  color: #b7b7b7;
}

.category-card span {
  display: inline-flex;
  margin-top: 12px;
  color: #ff5a66;
  font-weight: 700;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 42px;
  background: #151515;
}

.feature-band img,
.download-section img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.benefits h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 44px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits article img {
  width: 72px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 52px;
  align-items: center;
  background: radial-gradient(circle at top left, rgba(232, 14, 29, 0.18), transparent 38%), #101010;
}

.eyebrow {
  color: #ff5a66;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonials article img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.page-hero {
  padding: 88px clamp(20px, 7vw, 104px) 72px;
  background: radial-gradient(circle at top left, rgba(232, 14, 29, 0.22), transparent 34%), #0f0f0f;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero p,
.content-section p,
.faq-list p {
  color: #c7c7c7;
  font-size: 18px;
  line-height: 30px;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section {
  padding: 76px clamp(20px, 7vw, 104px);
}

.content-grid,
.faq-list {
  display: grid;
  gap: 20px;
}

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card,
.faq-card {
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 26px;
}

.breadcrumb {
  display: inline-flex;
  color: #ff5a66;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-page,
.agreement-page {
  background: #ffffff;
  color: #333333;
  padding: 80px 0;
  min-height: 70vh;
}

.privacy-page .page-header,
.agreement-page .page-header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-page .page-header h1,
.agreement-page .page-header h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #333333;
}

.agreement-page .page-header h1 {
  margin-bottom: 10px;
}

.privacy-page .page-header p,
.agreement-page .page-header p {
  font-size: 16px;
  color: #666666;
}

.privacy-content,
.agreement-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content section,
.agreement-content section {
  margin-bottom: 50px;
}

.privacy-content h2,
.agreement-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333333;
}

.privacy-content p,
.agreement-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
}

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

.privacy-content ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

.privacy-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 10px;
}

.account-delete-page {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 0%, rgba(255, 74, 99, 0.15), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(87, 129, 255, 0.15), transparent 45%),
    #050505;
  color: #f5f5f5;
  padding: 80px 0 120px;
}

.account-delete-page .hero {
  display: block;
  min-height: 0;
  overflow: visible;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.account-delete-page .hero::after {
  content: none;
}

.account-delete-page .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  letter-spacing: 1px;
  color: #ff5873;
  margin-bottom: 14px;
}

.account-delete-page .hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.account-delete-page .intro {
  font-size: 18px;
  color: #cfcfcf;
  line-height: 1.7;
}

.account-delete-page .card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 32px;
  margin-bottom: 30px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.account-delete-page .steps-card ol {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #d9d9d9;
  line-height: 1.6;
}

.account-delete-page .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.account-delete-page .info-card ul,
.account-delete-page .data-card ul {
  list-style: disc;
  margin: 16px 0 0 20px;
  color: #dcdcdc;
  line-height: 1.6;
  padding-left: 0;
}

.account-delete-page .info-card p,
.account-delete-page .data-card p {
  color: #c5c5c5;
  line-height: 1.7;
}

.account-delete-page .contact-card {
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 90, 118, 0.1), rgba(87, 129, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px 32px;
}

.account-delete-page .contact-card a {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}

.account-delete-page .contact-card a:hover {
  border-color: #ffffff;
  transform: translateY(-2px);
}

.about-page {
  padding: 80px 0;
  min-height: 70vh;
  background: radial-gradient(circle at top, rgba(255, 74, 99, 0.15), transparent 45%), #0f0f0f;
  color: #f5f5f5;
}

.about-page .page-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-page .page-header h1 {
  font-size: 42px;
  color: #ffffff;
}

.about-page .about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-page .intro-section {
  margin-bottom: 60px;
  text-align: center;
}

.about-page .intro-text {
  font-size: 20px;
  line-height: 1.8;
  color: #cfcfcf;
}

.about-page .mission-section,
.about-page .values-section,
.about-page .contact-section {
  margin-bottom: 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.about-page .mission-section h2,
.about-page .values-section h2,
.about-page .contact-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-page .mission-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #b5b5b5;
}

.about-page .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.about-page .value-item {
  padding: 30px;
  background: #161616;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-page .value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 74, 99, 0.2);
}

.about-page .value-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ffffff;
}

.about-page .value-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #c0c0c0;
}

.about-page .contact-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #c7c7c7;
  margin-bottom: 15px;
}

.about-page .contact-info {
  margin-top: 20px;
  padding: 20px;
  background: #161616;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-page .contact-info p {
  margin-bottom: 10px;
  color: #e2e2e2;
}

.dmca-page {
  padding: 80px 0 100px;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(255, 77, 90, 0.08), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(81, 113, 255, 0.15), transparent 50%),
    #050505;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 90px;
  align-items: center;
}

.dmca-page .dmca-hero,
.dmca-page .help-section,
.dmca-page .process-section,
.dmca-page .faq-section,
.dmca-page .cta-section {
  width: min(1100px, 90%);
}

.dmca-page .dmca-hero {
  text-align: center;
  max-width: 840px;
}

.dmca-page .eyebrow {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #ff5c7a;
  margin-bottom: 18px;
}

.dmca-page .dmca-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.3;
  margin-bottom: 18px;
  color: #ffffff;
}

.dmca-page .hero-desc {
  font-size: 18px;
  color: #c7c7c7;
  margin-bottom: 32px;
}

.dmca-page .hero-actions,
.dmca-page .cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dmca-page .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.dmca-page .section-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.dmca-page .section-header p {
  color: #a2a2a2;
  line-height: 1.7;
}

.dmca-page .help-cards,
.dmca-page .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.dmca-page .help-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 240px;
}

.dmca-page .help-card .tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff7c82;
  margin-bottom: 14px;
}

.dmca-page .help-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
}

.dmca-page .help-card p {
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 16px;
}

.dmca-page .inline-link {
  background: none;
  border: none;
  color: #6f9dff;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.dmca-page .process-steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 40px;
}

.dmca-page .step {
  padding: 32px 26px;
  background: #0f0f0f;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.dmca-page .step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, #ff4d4d 0%, #ff2a6d 60%, #f88529 100%);
  box-shadow: 0 15px 30px rgba(255, 74, 99, 0.4);
}

.dmca-page .step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.dmca-page .step p {
  color: #bdbdbd;
  line-height: 1.6;
}

.dmca-page .process-cta {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.dmca-page .faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dmca-page .faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.dmca-page .faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
}

.dmca-page .faq-answer {
  padding: 0 24px 20px;
  color: #cfcfcf;
  line-height: 1.7;
}

.dmca-page .faq-item:not(.active) .faq-answer {
  display: none;
}

.dmca-page .icon {
  transition: transform 0.3s;
}

.dmca-page .icon.open {
  transform: rotate(180deg);
}

.dmca-page .cta-section {
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dmca-page .cta-actions {
  margin-top: 24px;
}

.dmca-page .btn-primary,
.dmca-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
}

.dmca-page .btn-primary {
  background: linear-gradient(135deg, #ff4d4d 0%, #ff2a6d 50%, #f88529 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 15px 35px rgba(255, 74, 99, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dmca-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 45px rgba(255, 74, 99, 0.45);
}

.dmca-page .btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
  transition: border-color 0.3s, color 0.3s;
}

.dmca-page .btn-secondary:hover {
  border-color: #ffffff;
}

.creator-login-page {
  min-height: calc(100vh - 80px);
  background: radial-gradient(circle at 20% 20%, rgba(253, 62, 94, 0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(62, 137, 255, 0.12), transparent 45%),
    #f4f6fb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.creator-login-page .hero-container {
  display: flex;
  align-items: center;
  width: min(1200px, 92%);
  gap: 40px;
  position: relative;
}

.creator-login-page .hero-copy {
  flex: 1;
}

.creator-login-page .badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #fb3449;
  background: rgba(251, 52, 73, 0.12);
  margin-bottom: 16px;
}

.creator-login-page .hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: #151826;
  line-height: 1.3;
  margin-bottom: 16px;
}

.creator-login-page .subtitle {
  font-size: 18px;
  color: #7a7f92;
}

.creator-login-page .circle-stage {
  flex: 1.5;
  position: relative;
  height: 540px;
}

.creator-login-page .circle {
  position: absolute;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 60px rgba(17, 36, 76, 0.15);
  border: 4px solid #ffffff;
}

.creator-login-page .circle-1 {
  width: 220px;
  height: 220px;
  top: 10%;
  left: 6%;
  background-image: url("imgs/head_1.png");
}

.creator-login-page .circle-2 {
  width: 180px;
  height: 180px;
  top: 0;
  left: 48%;
  background-image: url("imgs/head_2.png");
}

.creator-login-page .circle-3 {
  width: 260px;
  height: 260px;
  top: 34%;
  left: 20%;
  background-image: url("imgs/head_3.png");
}

.creator-login-page .circle-4 {
  width: 150px;
  height: 150px;
  top: 58%;
  left: 55%;
  background-image: url("imgs/head_4.png");
}

.creator-login-page .circle-5 {
  width: 190px;
  height: 190px;
  top: 50%;
  left: -4%;
  background-image: url("imgs/head_5.png");
}

.creator-login-page .login-panel {
  width: 360px;
  background: #ffffff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(35, 74, 137, 0.18);
  position: relative;
}

.creator-login-page .panel-header {
  font-size: 18px;
  font-weight: 600;
  color: #1f2333;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.creator-login-page .login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.creator-login-page .form-group input {
  width: 100%;
  border: 1px solid #e5e7ef;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
  color: #1f2333;
  background: #f9fafc;
}

.creator-login-page .form-group input:focus {
  outline: none;
  border-color: #4c77f6;
  box-shadow: 0 0 0 3px rgba(76, 119, 246, 0.15);
  background: #ffffff;
}

.creator-login-page .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #7a7f92;
}

.creator-login-page .toggle-button,
.creator-login-page .link-button {
  background: none;
  border: none;
  color: #4c77f6;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}

.creator-login-page .checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.creator-login-page .checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: #4c77f6;
}

.creator-login-page .primary-button {
  width: 100%;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #004fff 0%, #3964ff 60%, #5b47ff 100%);
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 4px;
  padding: 16px 0;
  cursor: pointer;
  margin-top: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 20px 40px rgba(59, 102, 255, 0.35);
}

.creator-login-page .primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(59, 102, 255, 0.4);
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 48px clamp(20px, 7vw, 104px);
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer p {
  color: #a8a8a8;
  margin: 0;
}

.copyright {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .creator-login-page .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .creator-login-page .circle-stage {
    order: 2;
    width: 100%;
    height: 420px;
  }

  .creator-login-page .login-panel {
    order: 3;
    width: 100%;
  }

  .hero {
    min-height: 640px;
  }

  .category-grid,
  .benefit-grid,
  .testimonial-grid,
  .content-grid,
  .page-hero-inner,
  .feature-band,
  .download-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header nav {
    gap: 12px;
  }

  .language-menu div {
    left: 0;
    right: auto;
  }

  .site-header nav a {
    font-size: 13px;
  }

  .privacy-page,
  .agreement-page {
    padding: 40px 0;
  }

  .privacy-page .page-header h1,
  .agreement-page .page-header h1 {
    font-size: 32px;
  }

  .account-delete-page {
    padding: 60px 0 80px;
  }

  .account-delete-page .card {
    padding: 24px;
  }

  .account-delete-page .info-grid {
    grid-template-columns: 1fr;
  }

  .about-page {
    padding: 40px 0;
  }

  .about-page .page-header h1 {
    font-size: 32px;
  }

  .about-page .mission-section,
  .about-page .values-section,
  .about-page .contact-section {
    padding: 24px;
  }

  .about-page .values-grid {
    grid-template-columns: 1fr;
  }

  .dmca-page {
    padding: 50px 0 70px;
    gap: 60px;
  }

  .dmca-page .dmca-hero,
  .dmca-page .help-section,
  .dmca-page .process-section,
  .dmca-page .faq-section,
  .dmca-page .cta-section {
    width: 92%;
  }

  .dmca-page .hero-actions,
  .dmca-page .cta-actions {
    flex-direction: column;
  }

  .creator-login-page {
    padding: 40px 0 60px;
  }

  .creator-login-page .hero-container {
    width: 92%;
    flex-direction: column;
    align-items: center;
  }

  .creator-login-page .circle-stage {
    order: 2;
    width: 100%;
    height: 360px;
  }

  .creator-login-page .circle {
    border-width: 2px;
  }

  .creator-login-page .login-panel {
    order: 3;
    width: 100%;
  }

  .hero-content {
    padding-top: 76px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
