/* ============================================
   墨水之心 - 同人创作交流平台
   主样式表 tp-style.css
   设计风格: 水彩手绘风
   CSS前缀: tp-
   ============================================ */

/* --- Google Fonts Import (本地化) --- */
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Noto Sans SC Regular'), local('NotoSansSC-Regular');
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Noto Sans SC Bold'), local('NotoSansSC-Bold');
}

/* --- CSS Variables --- */
:root {
  --tp-mint: #E0F7FA;
  --tp-mint-dark: #B2EBF2;
  --tp-pink: #FFCDD2;
  --tp-pink-dark: #EF9A9A;
  --tp-yellow: #FFF9C4;
  --tp-purple: #D1C4E9;
  --tp-purple-dark: #B39DDB;
  --tp-text: #333333;
  --tp-text-light: #666666;
  --tp-text-muted: #999999;
  --tp-white: #FFFFFF;
  --tp-bg: #F5FDFE;
  --tp-shadow: rgba(0, 0, 0, 0.08);
  --tp-radius: 16px;
  --tp-radius-sm: 8px;
  --tp-transition: all 0.3s ease;
  --tp-font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --tp-font-serif: 'Source Han Serif SC', '思源宋体', 'Noto Serif SC', Georgia, serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--tp-font-sans);
  color: var(--tp-text);
  background-color: var(--tp-bg);
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--tp-text);
  text-decoration: none;
  transition: var(--tp-transition);
}

a:hover {
  color: var(--tp-pink-dark);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tp-font-serif);
  line-height: 1.4;
  color: var(--tp-text);
}

/* --- Watercolor Background Texture --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(209, 196, 233, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 205, 210, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(224, 247, 250, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(255, 249, 196, 0.1) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.tp-header {
  background: rgba(224, 247, 250, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(178, 235, 242, 0.5);
  position: relative;
  z-index: 100;
}

.tp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.tp-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.tp-logo-text {
  font-family: var(--tp-font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #EF9A9A, #B39DDB, #80DEEA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.tp-nav a {
  font-size: 0.95rem;
  color: var(--tp-text);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.tp-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tp-pink);
  transition: width 0.3s ease;
}

.tp-nav a:hover {
  color: var(--tp-pink-dark);
}

.tp-nav a:hover::after {
  width: 100%;
}

.tp-nav a.tp-nav-active {
  color: var(--tp-pink-dark);
}

.tp-nav a.tp-nav-active::after {
  width: 100%;
}

.tp-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tp-search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--tp-mint-dark);
  border-radius: 20px;
  padding: 6px 14px;
  transition: var(--tp-transition);
}

.tp-search-box:focus-within {
  border-color: var(--tp-pink);
  box-shadow: 0 0 0 3px rgba(255, 205, 210, 0.3);
}

.tp-search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  width: 120px;
  font-family: var(--tp-font-sans);
  color: var(--tp-text);
}

.tp-search-box input::placeholder {
  color: var(--tp-text-muted);
}

.tp-search-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  opacity: 0.5;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-family: var(--tp-font-sans);
  cursor: pointer;
  border: none;
  transition: var(--tp-transition);
  white-space: nowrap;
}

.tp-btn:hover {
  transform: scale(1.05);
}

.tp-btn-primary {
  background: linear-gradient(135deg, var(--tp-pink), var(--tp-purple));
  color: var(--tp-white);
}

.tp-btn-primary:hover {
  color: var(--tp-white);
  box-shadow: 0 4px 15px rgba(209, 196, 233, 0.4);
}

.tp-btn-outline {
  background: transparent;
  border: 1.5px solid var(--tp-pink);
  color: var(--tp-text);
}

.tp-btn-outline:hover {
  background: var(--tp-pink);
  color: var(--tp-white);
}

.tp-btn-large {
  padding: 12px 32px;
  font-size: 1rem;
  border-radius: 25px;
}

/* Hamburger Menu */
.tp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 200;
}

.tp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tp-text);
  transition: var(--tp-transition);
  border-radius: 2px;
}

.tp-hamburger.tp-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.tp-hamburger.tp-active span:nth-child(2) {
  opacity: 0;
}

.tp-hamburger.tp-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.tp-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: rgba(245, 253, 254, 0.98);
  backdrop-filter: blur(20px);
  z-index: 150;
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.tp-mobile-nav.tp-open {
  right: 0;
}

.tp-mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(178, 235, 242, 0.3);
}

.tp-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 140;
}

/* ============================================
   HERO SECTION
   ============================================ */
.tp-hero {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  text-align: center;
}

.tp-hero-bg {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--tp-radius);
  box-shadow: 0 8px 30px var(--tp-shadow);
}

.tp-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 80%;
}

.tp-hero-overlay {
  position: relative;
  border-radius: var(--tp-radius);
  overflow: hidden;
}

.tp-hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(245, 253, 254, 0.3) 0%,
    rgba(245, 253, 254, 0.6) 50%,
    rgba(245, 253, 254, 0.8) 100%
  );
  border-radius: var(--tp-radius);
}

.tp-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #EF9A9A, #B39DDB, #80DEEA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.tp-hero p {
  font-size: 1.1rem;
  color: var(--tp-text-light);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.tp-section {
  padding: 60px 0;
}

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

.tp-section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.tp-section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--tp-pink), var(--tp-purple));
  border-radius: 2px;
}

.tp-section-header p {
  color: var(--tp-text-light);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 16px auto 0;
  line-height: 1.8;
}

/* ============================================
   CARDS
   ============================================ */
.tp-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--tp-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--tp-shadow);
  transition: var(--tp-transition);
  border: 1px solid rgba(178, 235, 242, 0.3);
}

.tp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tp-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.tp-card-img-wide {
  aspect-ratio: 16/9;
}

.tp-card-body {
  padding: 16px 20px;
}

.tp-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tp-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--tp-text-muted);
  margin-bottom: 8px;
}

.tp-card-desc {
  font-size: 0.88rem;
  color: var(--tp-text-light);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.7;
}

.tp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tp-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  background: var(--tp-mint);
  color: var(--tp-text-light);
}

.tp-tag-pink {
  background: rgba(255, 205, 210, 0.5);
}

.tp-tag-purple {
  background: rgba(209, 196, 233, 0.5);
}

.tp-tag-yellow {
  background: rgba(255, 249, 196, 0.6);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.tp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============================================
   AUTHOR CARD
   ============================================ */
.tp-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--tp-radius);
  box-shadow: 0 4px 15px var(--tp-shadow);
  transition: var(--tp-transition);
  border: 1px solid rgba(178, 235, 242, 0.3);
}

.tp-author-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.tp-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--tp-mint);
  flex-shrink: 0;
}

.tp-author-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.tp-author-info p {
  font-size: 0.82rem;
  color: var(--tp-text-muted);
}

.tp-author-rank {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tp-purple);
  margin-right: 8px;
  flex-shrink: 0;
  font-family: var(--tp-font-serif);
}

/* ============================================
   RANKING LIST
   ============================================ */
.tp-rank-list {
  counter-reset: rank;
}

.tp-rank-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--tp-radius-sm);
  margin-bottom: 12px;
  transition: var(--tp-transition);
  gap: 16px;
}

.tp-rank-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(5px);
}

.tp-rank-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tp-purple);
  min-width: 36px;
  text-align: center;
  font-family: var(--tp-font-serif);
}

.tp-rank-item:nth-child(1) .tp-rank-number { color: #FFD700; }
.tp-rank-item:nth-child(2) .tp-rank-number { color: #C0C0C0; }
.tp-rank-item:nth-child(3) .tp-rank-number { color: #CD7F32; }

.tp-rank-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--tp-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.tp-rank-info {
  flex: 1;
}

.tp-rank-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.tp-rank-stats {
  font-size: 0.78rem;
  color: var(--tp-text-muted);
}

/* ============================================
   FEATURED THEMES
   ============================================ */
.tp-theme-card {
  position: relative;
  border-radius: var(--tp-radius);
  overflow: hidden;
  cursor: pointer;
}

.tp-theme-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tp-theme-card:hover img {
  transform: scale(1.05);
}

.tp-theme-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: var(--tp-white);
}

.tp-theme-overlay h3 {
  font-size: 1.1rem;
  color: var(--tp-white);
  margin-bottom: 4px;
}

.tp-theme-overlay p {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* ============================================
   TUTORIAL CARDS
   ============================================ */
.tp-tutorial-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--tp-radius);
  box-shadow: 0 4px 15px var(--tp-shadow);
  transition: var(--tp-transition);
  border: 1px solid rgba(178, 235, 242, 0.3);
}

.tp-tutorial-card:hover {
  transform: translateY(-3px);
}

.tp-tutorial-img {
  width: 120px;
  height: 90px;
  border-radius: var(--tp-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.tp-tutorial-info h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.tp-tutorial-info p {
  font-size: 0.82rem;
  color: var(--tp-text-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   COMMUNITY FEED
   ============================================ */
.tp-feed-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--tp-radius-sm);
  margin-bottom: 12px;
  transition: var(--tp-transition);
}

.tp-feed-item:hover {
  background: rgba(255, 255, 255, 0.95);
}

.tp-feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tp-feed-content {
  flex: 1;
}

.tp-feed-user {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.tp-feed-text {
  font-size: 0.85rem;
  color: var(--tp-text-light);
  margin-bottom: 6px;
}

.tp-feed-time {
  font-size: 0.75rem;
  color: var(--tp-text-muted);
}

/* ============================================
   LINKS SECTION
   ============================================ */
.tp-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tp-link-item {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  font-size: 0.88rem;
  border: 1px solid rgba(178, 235, 242, 0.4);
  transition: var(--tp-transition);
}

.tp-link-item:hover {
  background: var(--tp-mint);
  border-color: var(--tp-mint-dark);
}

/* ============================================
   EVENT ANNOUNCEMENTS
   ============================================ */
.tp-event-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--tp-radius);
  box-shadow: 0 4px 15px var(--tp-shadow);
  border-left: 4px solid var(--tp-pink);
  transition: var(--tp-transition);
}

.tp-event-card:hover {
  transform: translateY(-3px);
}

.tp-event-date {
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.tp-event-month {
  font-size: 0.8rem;
  color: var(--tp-pink-dark);
  text-transform: uppercase;
}

.tp-event-day {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tp-text);
  line-height: 1;
  font-family: var(--tp-font-serif);
}

.tp-event-info h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.tp-event-info p {
  font-size: 0.85rem;
  color: var(--tp-text-light);
}

.tp-event-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.72rem;
  background: var(--tp-yellow);
  color: var(--tp-text);
  margin-top: 8px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.tp-about {
  display: flex;
  gap: 40px;
  align-items: center;
}

.tp-about-img {
  width: 45%;
  border-radius: var(--tp-radius);
  box-shadow: 0 8px 30px var(--tp-shadow);
  flex-shrink: 0;
}

.tp-about-content {
  flex: 1;
}

.tp-about-content h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.tp-about-content p {
  font-size: 0.95rem;
  color: var(--tp-text-light);
  margin-bottom: 12px;
  line-height: 1.9;
}

.tp-about-stats {
  display: flex;
  gap: 30px;
  margin-top: 24px;
}

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

.tp-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--tp-purple);
  font-family: var(--tp-font-serif);
}

.tp-stat-label {
  font-size: 0.82rem;
  color: var(--tp-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.tp-footer {
  background: linear-gradient(to bottom, var(--tp-bg), #daf5f8);
  border-top: 1px solid rgba(178, 235, 242, 0.5);
  padding: 50px 0 0;
  margin-top: 40px;
}

.tp-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.tp-footer-col h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.tp-footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--tp-pink), var(--tp-purple));
  border-radius: 2px;
}

.tp-footer-col p {
  font-size: 0.88rem;
  color: var(--tp-text-light);
  margin-bottom: 8px;
  line-height: 1.7;
}

.tp-footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--tp-text-light);
  padding: 4px 0;
  transition: var(--tp-transition);
}

.tp-footer-col a:hover {
  color: var(--tp-pink-dark);
  padding-left: 5px;
}

.tp-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.tp-footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.tp-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.tp-footer-social a {
  display: inline-block;
  padding: 0;
}

.tp-footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  transition: var(--tp-transition);
}

.tp-footer-social img:hover {
  transform: scale(1.1);
}

.tp-footer-honor {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-footer-honor img {
  height: 30px;
}

.tp-footer-honor span {
  font-size: 0.75rem;
  color: var(--tp-text-muted);
}

.tp-footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(178, 235, 242, 0.4);
  font-size: 0.82rem;
  color: var(--tp-text-muted);
}

.tp-footer-bottom a {
  color: var(--tp-text-muted);
  display: inline;
  padding: 0;
}

.tp-footer-bottom a:hover {
  color: var(--tp-pink-dark);
  padding-left: 0;
}

.tp-footer-bottom img {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

/* ============================================
   COMMISSION PAGE
   ============================================ */
.tp-commission-banner {
  position: relative;
  border-radius: var(--tp-radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.tp-commission-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.tp-commission-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(245, 253, 254, 0.9), rgba(245, 253, 254, 0.5));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.tp-commission-banner-overlay h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.tp-commission-banner-overlay p {
  font-size: 1rem;
  color: var(--tp-text-light);
  max-width: 500px;
  margin-bottom: 20px;
}

.tp-commission-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(178, 235, 242, 0.4);
}

.tp-commission-tab {
  padding: 12px 28px;
  font-size: 0.95rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--tp-transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--tp-font-sans);
  color: var(--tp-text-light);
}

.tp-commission-tab:hover,
.tp-commission-tab.tp-active {
  color: var(--tp-pink-dark);
  border-bottom-color: var(--tp-pink);
}

/* Form Styles */
.tp-form-group {
  margin-bottom: 20px;
}

.tp-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--tp-text);
}

.tp-form-input,
.tp-form-select,
.tp-form-textarea {
  width: 100%;
  padding: 10px 16px;
  border: 1.5px solid rgba(178, 235, 242, 0.6);
  border-radius: var(--tp-radius-sm);
  font-size: 0.9rem;
  font-family: var(--tp-font-sans);
  background: rgba(255, 255, 255, 0.8);
  color: var(--tp-text);
  transition: var(--tp-transition);
}

.tp-form-input:focus,
.tp-form-select:focus,
.tp-form-textarea:focus {
  outline: none;
  border-color: var(--tp-pink);
  box-shadow: 0 0 0 3px rgba(255, 205, 210, 0.2);
}

.tp-form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Creator Cards */
.tp-creator-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--tp-radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 15px var(--tp-shadow);
  transition: var(--tp-transition);
  border: 1px solid rgba(178, 235, 242, 0.3);
}

.tp-creator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tp-creator-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--tp-mint);
}

.tp-creator-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.tp-creator-style {
  font-size: 0.82rem;
  color: var(--tp-text-muted);
  margin-bottom: 10px;
}

.tp-creator-status {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
}

.tp-status-open {
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
}

.tp-status-busy {
  background: rgba(255, 152, 0, 0.15);
  color: #FF9800;
}

.tp-status-closed {
  background: rgba(244, 67, 54, 0.15);
  color: #F44336;
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
.tp-page-header {
  padding: 40px 0;
  text-align: center;
  background: linear-gradient(to bottom, var(--tp-mint), var(--tp-bg));
  margin-bottom: 30px;
}

.tp-page-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.tp-page-header p {
  font-size: 0.95rem;
  color: var(--tp-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.tp-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--tp-radius-sm);
}

.tp-filter-tabs {
  display: flex;
  gap: 16px;
}

.tp-filter-tab {
  font-size: 0.88rem;
  color: var(--tp-text-light);
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 15px;
  transition: var(--tp-transition);
  background: none;
  border: none;
  font-family: var(--tp-font-sans);
}

.tp-filter-tab:hover,
.tp-filter-tab.tp-active {
  background: var(--tp-pink);
  color: var(--tp-white);
}

.tp-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.tp-page-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(178, 235, 242, 0.4);
  transition: var(--tp-transition);
  cursor: pointer;
}

.tp-page-num:hover,
.tp-page-num.tp-active {
  background: var(--tp-pink);
  color: var(--tp-white);
  border-color: var(--tp-pink);
}

/* ============================================
   APP DOWNLOAD PAGE
   ============================================ */
.tp-app-section {
  padding: 60px 0;
}

.tp-app-hero {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
}

.tp-app-content {
  flex: 1;
}

.tp-app-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.4;
}

.tp-app-content .tp-subtitle {
  font-size: 1.05rem;
  color: var(--tp-text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.tp-app-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.tp-app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--tp-radius-sm);
  font-size: 0.9rem;
  transition: var(--tp-transition);
  border: 2px solid var(--tp-text);
  color: var(--tp-text);
}

.tp-app-btn:hover {
  transform: scale(1.05);
  color: var(--tp-text);
}

.tp-app-btn img {
  width: 24px;
  height: 24px;
}

.tp-app-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tp-app-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.tp-app-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.tp-app-feature-icon.tp-bg-pink { background: rgba(255, 205, 210, 0.4); }
.tp-app-feature-icon.tp-bg-purple { background: rgba(209, 196, 233, 0.4); }
.tp-app-feature-icon.tp-bg-yellow { background: rgba(255, 249, 196, 0.5); }

.tp-app-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.tp-app-feature p {
  font-size: 0.88rem;
  color: var(--tp-text-light);
}

.tp-app-mockup {
  width: 40%;
  flex-shrink: 0;
}

.tp-app-mockup img {
  width: 100%;
  border-radius: var(--tp-radius);
  box-shadow: 0 12px 40px var(--tp-shadow);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.tp-breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--tp-text-muted);
}

.tp-breadcrumb a {
  color: var(--tp-text-muted);
}

.tp-breadcrumb a:hover {
  color: var(--tp-pink-dark);
}

.tp-breadcrumb span {
  margin: 0 6px;
}

/* ============================================
   ARTICLE DETAIL
   ============================================ */
.tp-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0;
}

.tp-article h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.tp-article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--tp-text-muted);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(178, 235, 242, 0.4);
}

.tp-article-content {
  font-size: 1rem;
  line-height: 2;
  color: var(--tp-text);
}

.tp-article-content p {
  margin-bottom: 20px;
  text-indent: 2em;
}

.tp-article-content img {
  border-radius: var(--tp-radius-sm);
  margin: 20px auto;
  box-shadow: 0 4px 15px var(--tp-shadow);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes tp-fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tp-animate {
  animation: tp-fadeIn 0.6s ease forwards;
}

.tp-delay-1 { animation-delay: 0.1s; }
.tp-delay-2 { animation-delay: 0.2s; }
.tp-delay-3 { animation-delay: 0.3s; }
.tp-delay-4 { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Laptop (992px - 1200px) */
@media (max-width: 1200px) {
  .tp-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tp-hero h1 {
    font-size: 2rem;
  }
}

/* Tablet (768px - 992px) */
@media (max-width: 992px) {
  .tp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-about {
    flex-direction: column;
  }
  .tp-about-img {
    width: 100%;
  }
  .tp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .tp-app-hero {
    flex-direction: column;
  }
  .tp-app-mockup {
    width: 60%;
  }
  .tp-nav {
    display: none;
  }
  .tp-hamburger {
    display: flex;
  }
  .tp-mobile-nav {
    display: block;
  }
  .tp-search-box {
    display: none;
  }
}

/* Phone (<768px) */
@media (max-width: 768px) {
  .tp-grid-4,
  .tp-grid-3,
  .tp-grid-2 {
    grid-template-columns: 1fr;
  }
  .tp-hero h1 {
    font-size: 1.5rem;
  }
  .tp-hero p {
    font-size: 0.9rem;
  }
  .tp-section {
    padding: 40px 0;
  }
  .tp-section-header h2 {
    font-size: 1.4rem;
  }
  .tp-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tp-about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .tp-event-card {
    flex-direction: column;
    gap: 12px;
  }
  .tp-tutorial-card {
    flex-direction: column;
  }
  .tp-tutorial-img {
    width: 100%;
    height: 160px;
  }
  .tp-commission-banner-overlay {
    padding: 20px;
  }
  .tp-commission-banner-overlay h2 {
    font-size: 1.3rem;
  }
  .tp-app-mockup {
    width: 80%;
  }
  .tp-app-buttons {
    flex-direction: column;
  }
  .tp-header-actions .tp-btn {
    display: none;
  }
  .tp-filter-bar {
    flex-direction: column;
    gap: 12px;
  }
}

/* Small Phone (<480px) */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .tp-hero-content {
    width: 90%;
  }
  .tp-about-stats {
    justify-content: center;
  }
  .tp-pagination {
    flex-wrap: wrap;
  }
}

/* ============================================
   JAMMER BLOCK (Hidden)
   ============================================ */
.aqua-jammer-block {
  display: none;
}
