@charset "UTF-8";
/**
 * Core Variables - Sultry Mind Application
 * Main configuration file containing all global variables
 * 
 * TABLE OF CONTENTS:
 * 1. Core Color Palette
 * 2. Theme Colors
 * 3. Text Colors  
 * 4. Background Colors
 * 5. Border Colors
 * 6. Shadow Effects
 * 7. Gradients
 * 8. UI Elements
 * 9. Component-Specific
 * 10. Animations
 * 11. Spacing & Layout
 * 12. Typography
 * 13. Breakpoints
 * 14. Z-Indices
 */
/* ==================================================
   1. CORE COLOR PALETTE
   Base colors from which other colors are derived
================================================== */
/* ==================================================
   2. THEME COLORS
   Semantic color definitions based on core palette
================================================== */
/* ==================================================
   3. TEXT COLORS
   For text elements with varying opacity levels
================================================== */
/* ==================================================
   4. BACKGROUND COLORS
   For component backgrounds with varying opacity
================================================== */
/* ==================================================
   5. BORDER COLORS
   For outlines, separators and boundaries
================================================== */
/* ==================================================
   6. SHADOW EFFECTS
   For depth, elevation and focus states
================================================== */
/* ==================================================
   7. GRADIENTS
   Complex color transitions for UI elements
================================================== */
/* ==================================================
   8. UI ELEMENTS
   Special effect colors for interactive elements
================================================== */
/* ==================================================
   9. COMPONENT-SPECIFIC
   Variables targeting specific components
================================================== */
/* ==================================================
   10. ANIMATIONS
   Timing functions and durations
================================================== */
/* ==================================================
   11. SPACING & LAYOUT
   For consistent spacing throughout the app
================================================== */
/* ==================================================
   12. TYPOGRAPHY
   Font families, sizes, weights and line heights
================================================== */
/* ==================================================
   13. BREAKPOINTS
   For responsive design
================================================== */
/* ==================================================
   14. Z-INDICES
   For controlling element stacking
================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "Inter", "Fredoka", sans-serif;
  background: #0a0a0f;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Fredoka One", "Fredoka", sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.25rem;
  }
}
p {
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-family: "Inter", "Fredoka", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, #da356f 0%, #ff006e 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(218, 53, 111, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(218, 53, 111, 0.4);
}
.btn-secondary {
  background: #2d2d40;
  color: #ffffff;
  border: 2px solid #da356f;
}
.btn-secondary:hover {
  background: rgba(218, 53, 111, 0.1);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #da356f;
  border: 2px solid #da356f;
}
.btn-outline:hover {
  background: #da356f;
  color: white;
  transform: translateY(-2px);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
}
.section-header h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #da356f 0%, #ff006e 100%);
  border-radius: 2px;
}
.section-header p {
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.language-toggle .lang-btn {
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}
.language-toggle .lang-btn.active, .language-toggle .lang-btn:hover {
  color: #da356f;
}
.language-toggle .lang-divider {
  color: #b0b0b0;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.mb-sm {
  margin-bottom: 1rem;
}

.mb-md {
  margin-bottom: 2rem;
}

.mb-lg {
  margin-bottom: 3rem;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 2rem;
}

.mt-lg {
  margin-top: 3rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(218, 53, 111, 0.2);
  transition: all 0.3s ease;
}
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .header .header-content {
    padding: 0 2rem;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header .logo h1 {
  font-family: "Fredoka One", "Fredoka", sans-serif;
  font-size: 1.8rem;
  margin: 0;
  background: linear-gradient(135deg, #da356f 0%, #ff006e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(218, 53, 111, 0.5);
}
.header .logo .logo-accent {
  color: #ff69b4;
  font-size: 1.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

body {
  padding-top: 70px;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
.beta-notice {
  background: linear-gradient(135deg, rgba(255, 51, 153, 0.1) 0%, rgba(51, 51, 255, 0.1) 100%);
  border-bottom: 1px solid rgba(255, 51, 153, 0.2);
  padding: 1rem 0;
  position: relative;
}
.beta-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff3399, #3333ff, #ff3399);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
.beta-notice .beta-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .beta-notice .beta-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.beta-notice .beta-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.beta-notice .beta-badge .beta-label {
  background: linear-gradient(135deg, #ff3399, #3333ff);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(255, 51, 153, 0.3);
}
.beta-notice .beta-text {
  flex: 1;
}
.beta-notice .beta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .beta-notice .beta-text p {
    font-size: 0.85rem;
  }
}
.beta-notice .beta-actions .btn-beta {
  background: linear-gradient(135deg, #ff3399, #3333ff);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 51, 153, 0.2);
}
.beta-notice .beta-actions .btn-beta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 51, 153, 0.3);
  filter: brightness(1.1);
}
.beta-notice .beta-actions .btn-beta:active {
  transform: translateY(0);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@media (max-width: 480px) {
  .beta-notice {
    padding: 0.75rem 0;
  }
  .beta-notice .beta-content {
    gap: 0.75rem;
  }
  .beta-notice .beta-badge .beta-label {
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
  }
  .beta-notice .beta-badge .beta-version {
    font-size: 0.8rem;
  }
  .beta-notice .beta-text p {
    font-size: 0.8rem;
  }
  .beta-notice .beta-actions .btn-beta {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 26, 37, 0.95) 0%, rgba(45, 45, 64, 0.95) 100%);
  overflow: hidden;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(218, 53, 111, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
}
.hero .hero-background .hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 105, 180, 0.3), transparent), radial-gradient(2px 2px at 40px 70px, rgba(218, 53, 111, 0.2), transparent), radial-gradient(1px 1px at 90px 40px, rgba(255, 0, 110, 0.4), transparent);
  background-repeat: repeat;
  background-size: 120px 120px;
  animation: float 20s linear infinite;
}
.hero .hero-main-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1024px) {
  .hero .hero-main-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.hero .hero-text .hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #ff69b4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .hero .hero-text .hero-title {
    font-size: 2.5rem;
  }
}
.hero .hero-text .hero-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 3rem;
  max-width: 500px;
}
@media (max-width: 1024px) {
  .hero .hero-text .hero-subtitle {
    margin: 0 auto 3rem;
  }
}
.hero .hero-text .hero-cta {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .hero .hero-text .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}
.hero .hero-text .hero-cta .hero-btn {
  padding: 16px 32px;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .hero .hero-text .hero-cta .hero-btn {
    width: 100%;
    max-width: 300px;
  }
}
.hero .hero-preview {
  display: flex;
  justify-content: center;
}
.hero .hero-preview .preview-card {
  background: rgba(45, 45, 64, 0.8);
  border: 1px solid rgba(218, 53, 111, 0.3);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(218, 53, 111, 0.3);
  width: 100%;
  max-width: 400px;
}
.hero .hero-preview .preview-card .preview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(218, 53, 111, 0.2);
}
.hero .hero-preview .preview-card .preview-header .preview-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url("/static/images/mia.jpeg") center/cover;
  border: 2px solid #da356f;
  position: relative;
  overflow: hidden;
}
.hero .hero-preview .preview-card .preview-header .preview-avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(218, 53, 111, 0.1);
  border-radius: 50%;
}
.hero .hero-preview .preview-card .preview-header .preview-info {
  flex: 1;
}
.hero .hero-preview .preview-card .preview-header .preview-info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
}
.hero .hero-preview .preview-card .preview-header .preview-info .preview-status {
  color: #ff69b4;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero .hero-preview .preview-card .preview-header .preview-info .preview-status::before {
  content: "●";
  animation: pulse 2s infinite;
}
.hero .hero-preview .preview-card .preview-chat {
  height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(218, 53, 111, 0.3) transparent;
}
.hero .hero-preview .preview-card .preview-chat::-webkit-scrollbar {
  width: 4px;
}
.hero .hero-preview .preview-card .preview-chat::-webkit-scrollbar-track {
  background: transparent;
}
.hero .hero-preview .preview-card .preview-chat::-webkit-scrollbar-thumb {
  background: rgba(218, 53, 111, 0.3);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.hero .hero-preview .preview-card .preview-chat::-webkit-scrollbar-thumb:hover {
  background: rgba(218, 53, 111, 0.5);
}
.hero .hero-preview .preview-card .preview-chat .preview-chat-window {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  padding-bottom: 2rem;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble {
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  max-width: 85%;
  word-wrap: break-word;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble.user-bubble {
  background: rgba(255, 105, 180, 0.2);
  border: 1px solid rgba(255, 105, 180, 0.3);
  align-self: flex-end;
  color: #ffffff;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble.ai-bubble {
  background: rgba(218, 53, 111, 0.2);
  border: 1px solid rgba(218, 53, 111, 0.3);
  align-self: flex-start;
  color: #e0e0e0;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble.ai-bubble .non-verbal {
  font-style: italic;
  color: #b0b0b0;
  opacity: 0.8;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble.typing-bubble {
  background: rgba(218, 53, 111, 0.2);
  border: 1px solid rgba(218, 53, 111, 0.3);
  align-self: flex-start;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble.typing-bubble .typing-indicator {
  display: flex;
  gap: 4px;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble.typing-bubble .typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #da356f;
  animation: typing 1.4s infinite ease-in-out both;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble.typing-bubble .typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble.typing-bubble .typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}
.hero .hero-preview .preview-card .preview-chat .chat-bubble.typing-bubble .typing-indicator span:nth-child(3) {
  animation-delay: 0s;
}
.hero .hero-preview .preview-card .preview-chat .chat-message {
  background: rgba(26, 26, 37, 0.5);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.5rem;
}
.hero .hero-preview .preview-card .preview-chat .chat-message.ai {
  border-left: 3px solid #da356f;
}
.hero .hero-preview .preview-card .preview-chat .chat-message.user {
  border-left: 3px solid #ff69b4;
  margin-left: 2rem;
}
.hero .hero-preview .preview-card .preview-chat .chat-message p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0e0e0;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(10px);
  }
  66% {
    transform: translateY(5px) translateX(-5px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
.trusted-platforms {
  position: absolute;
  top: 9.5rem;
  left: 1rem;
  z-index: 10;
}
@media (max-width: 1024px) {
  .trusted-platforms {
    top: 10.5rem;
    left: 1.5rem;
  }
}
@media (max-width: 768px) {
  .trusted-platforms {
    top: 11.5rem;
    left: 1rem;
  }
}
.trusted-platforms .trusted-platforms-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .trusted-platforms .trusted-platforms-logos {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .trusted-platforms .trusted-platforms-logos {
    gap: 2.5rem;
  }
}
.trusted-platforms .trusted-platforms-logos .trusted-platform-logo {
  transition: all 0.3s ease;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.trusted-platforms .trusted-platforms-logos .trusted-platform-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .trusted-platforms .trusted-platforms-logos .trusted-platform-logo {
    height: 35px;
  }
}
@media (max-width: 768px) {
  .trusted-platforms .trusted-platforms-logos .trusted-platform-logo {
    height: 30px;
  }
}
.trusted-platforms .trusted-platforms-logos .trusted-platform-logo img {
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}
@media (max-width: 1024px) {
  .trusted-platforms .trusted-platforms-logos .trusted-platform-logo img {
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .trusted-platforms .trusted-platforms-logos .trusted-platform-logo img {
    max-width: 120px;
  }
}
.trusted-platforms .trusted-platforms-logos .trusted-platform-logo:hover img {
  filter: brightness(1.1);
}

.features {
  background: rgba(85, 85, 85, 0.3411764706);
  position: relative;
  backdrop-filter: blur(10px);
}
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #da356f, transparent);
}
.features .container {
  position: relative;
}
.features .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.features .features-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.features .feature-item {
  background: rgba(45, 45, 64, 0.6);
  border: 1px solid rgba(218, 53, 111, 0.2);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.features .feature-item:hover {
  border-color: rgba(218, 53, 111, 0.5);
  box-shadow: 0 10px 30px rgba(218, 53, 111, 0.2);
}
.features .feature-item .feature-content {
  position: relative;
  z-index: 2;
}
.features .feature-item .feature-content h4 {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #da356f, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}
.features .feature-item .feature-content h4::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #da356f, transparent);
  border-radius: 1px;
}
.features .feature-item .feature-content p {
  color: #b0b0b0;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.features .feature-item.feature-item-progression .feature-content {
  padding-bottom: 2rem;
}

.coin-system-preview {
  margin-top: 3rem;
}
.coin-system-preview .payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .coin-system-preview .payment-options {
    grid-template-columns: 1fr 1fr;
  }
}
.coin-system-preview .payment-options .payment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.2745098039);
  border: 2px solid rgba(218, 53, 111, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.coin-system-preview .payment-options .payment-option:hover {
  transform: translateY(-2px);
  border-color: rgba(218, 53, 111, 0.3);
  box-shadow: 0 8px 20px rgba(218, 53, 111, 0.1);
}
.coin-system-preview .payment-options .payment-option .payment-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.coin-system-preview .payment-options .payment-option .payment-logo img {
  max-width: 200px;
  max-height: auto;
  object-fit: contain;
}
.coin-system-preview .payment-options .payment-option p {
  color: rgba(0, 0, 0, 0.699);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.features .feature-card-progression {
  padding-bottom: 2rem;
}

.level-system-preview {
  margin-top: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(218, 53, 111, 0.15);
}
.level-system-preview .preview-character-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.level-system-preview .preview-character-image {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 2px solid rgba(218, 53, 111, 0.3);
  flex-shrink: 0;
}
.level-system-preview .preview-level-system {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.level-system-preview .preview-level-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.level-system-preview .preview-level-header .preview-level-current {
  font-size: 1rem;
  font-weight: 700;
  color: #da356f;
  text-shadow: 0 0 8px rgba(218, 53, 111, 0.3);
}
.level-system-preview .preview-level-header .preview-level-next {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.level-system-preview .preview-level-progress-container {
  position: relative;
}
.level-system-preview .preview-level-progress-container .preview-level-progress-bar {
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.3rem;
}
.level-system-preview .preview-level-progress-container .preview-level-progress-bar .preview-level-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff88 0%, #00cc66 50%, #00aa44 100%);
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(218, 53, 111, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.level-system-preview .preview-level-progress-container .preview-level-progress-bar .preview-level-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(52, 255, 45, 0.5) 50%, transparent 100%);
  animation: shimmer 2s infinite;
  border-radius: 4px;
}
.level-system-preview .preview-level-progress-container .preview-level-progress-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  text-align: center;
}
.level-system-preview .preview-level-stats {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(46, 175, 125, 0.1);
}
.level-system-preview .preview-level-stats .preview-stats-item {
  text-align: center;
  flex: 1;
}
.level-system-preview .preview-level-stats .preview-highlight {
  color: #2eaf7d;
  font-weight: 700;
  text-shadow: 0 0 4px rgba(46, 175, 125, 0.4);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.intelligence-system-preview {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(218, 53, 111, 0.15);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  overflow: hidden;
}

.intelligence-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(218, 53, 111, 0.1);
}

.intelligence-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 53, 111, 0.1);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}
.intelligence-tab:hover {
  background: rgba(218, 53, 111, 0.08);
  color: rgba(255, 255, 255, 0.9);
}
.intelligence-tab.active {
  background: rgba(218, 53, 111, 0.1);
  border-color: rgba(218, 53, 111, 0.3);
  color: #da356f;
}
.intelligence-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #da356f, #ff006e);
}

.tab-icon {
  font-size: 16px;
}

.intelligence-content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.intelligence-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.notes-preview-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note-input-preview {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(218, 53, 111, 0.1);
  border-radius: 8px;
  padding: 16px;
  position: relative;
}

.note-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.note-title {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}

.note-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.note-status.active {
  background: rgba(46, 175, 125, 0.2);
  color: #2eaf7d;
  border: 1px solid rgba(46, 175, 125, 0.3);
}

.note-text-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 53, 111, 0.1);
  border-radius: 6px;
  padding: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: 60px;
  resize: none;
  font-family: inherit;
}

.note-counter {
  text-align: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.note-benefits {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 53, 111, 0.1);
  border-radius: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-icon {
  font-size: 14px;
}

.thinking-preview-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thinking-mode-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(218, 53, 111, 0.1);
  border: 1px solid rgba(218, 53, 111, 0.3);
  border-radius: 8px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.toggle-switch.active {
  background: linear-gradient(135deg, #da356f, #ff006e);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.toggle-switch.active .toggle-slider {
  transform: translateX(24px);
}

.toggle-info {
  flex: 1;
}

.toggle-title {
  font-weight: 600;
  color: #da356f;
  margin-bottom: 4px;
}

.toggle-cost {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.thinking-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.thinking-bubble {
  background: rgba(0, 20, 40, 0.3);
  border: 1px solid rgba(218, 53, 111, 0.3);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  position: relative;
}
.thinking-bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(218, 53, 111, 0.05) 0%, transparent 70%);
  border-radius: 12px;
  animation: dreamyPulse 3s ease-in-out infinite;
}

@keyframes dreamyPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}
.thinking-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #da356f;
  font-weight: 500;
  font-size: 14px;
}

.thinking-icon {
  font-size: 16px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
.thinking-text {
  color: #da356f;
  font-family: "Courier New", Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
  font-style: italic;
  text-shadow: 0 0 8px rgba(218, 53, 111, 0.4);
}

.thinking-arrow {
  font-size: 24px;
  color: #da356f;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.thinking-result {
  background: rgba(46, 175, 125, 0.1);
  border: 1px solid rgba(46, 175, 125, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
}

.result-message {
  color: #2eaf7d;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 768px) {
  .intelligence-system-preview {
    padding: 16px;
  }
  .intelligence-tabs {
    flex-direction: column;
    gap: 8px;
  }
  .intelligence-tab {
    border-radius: 8px;
  }
  .intelligence-tab.active::after {
    display: none;
  }
  .note-benefits {
    flex-direction: column;
  }
  .thinking-mode-toggle {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .thinking-demo {
    gap: 12px;
  }
  .thinking-text {
    font-size: 12px;
  }
}
.gallery-system-preview {
  background: linear-gradient(135deg, rgba(139, 69, 199, 0.1), rgba(74, 20, 140, 0.1));
  border: 1px solid rgba(139, 69, 199, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.gallery-system-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 69, 199, 0.1), transparent);
}
.gallery-system-preview .gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.gallery-system-preview .gallery-header .gallery-character-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gallery-system-preview .gallery-header .gallery-character-info .gallery-character-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(139, 69, 199, 0.5);
  box-shadow: 0 0 15px rgba(139, 69, 199, 0.3);
}
.gallery-system-preview .gallery-header .gallery-character-info .gallery-character-details h5 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  font-weight: 600;
}
.gallery-system-preview .gallery-header .gallery-character-info .gallery-character-details .gallery-progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-system-preview .gallery-header .gallery-character-info .gallery-character-details .gallery-progress .gallery-unlocked {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.gallery-system-preview .gallery-header .gallery-character-info .gallery-character-details .gallery-progress .gallery-progress-bar {
  width: 120px;
  height: 6px;
  background: rgba(139, 69, 199, 0.2);
  border-radius: 3px;
  overflow: hidden;
}
.gallery-system-preview .gallery-header .gallery-character-info .gallery-character-details .gallery-progress .gallery-progress-bar .gallery-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b45c7, #ff6b9d);
  border-radius: 3px;
  transition: width 0.3s ease;
  position: relative;
}
.gallery-system-preview .gallery-header .gallery-points .points-available {
  background: linear-gradient(135deg, #8b45c7, #ff6b9d);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(139, 69, 199, 0.3);
  position: relative;
}
.gallery-system-preview .gallery-header .gallery-points .points-available::before {
  content: "🏆";
  margin-right: 4px;
}
.gallery-system-preview .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.gallery-system-preview .gallery-grid .gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}
.gallery-system-preview .gallery-grid .gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.gallery-system-preview .gallery-grid .gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}
.gallery-system-preview .gallery-grid .gallery-item .gallery-image.blurred {
  filter: blur(8px) brightness(0.7);
}
.gallery-system-preview .gallery-grid .gallery-item .gallery-image.heavily-blurred {
  filter: blur(15px) brightness(0.5);
}
.gallery-system-preview .gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.gallery-system-preview .gallery-grid .gallery-item.unlocked {
  border-color: rgba(34, 197, 94, 0.5);
}
.gallery-system-preview .gallery-grid .gallery-item.unlocked .gallery-overlay {
  background: rgba(0, 0, 0, 0.1);
}
.gallery-system-preview .gallery-grid .gallery-item.unlocked .gallery-overlay .gallery-status {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(34, 197, 94, 0.9);
  padding: 4px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.gallery-system-preview .gallery-grid .gallery-item.unlocked .gallery-overlay .gallery-status .status-icon {
  font-size: 0.8rem;
  color: white;
}
.gallery-system-preview .gallery-grid .gallery-item.unlocked .gallery-overlay .gallery-status .status-text {
  font-size: 0.75rem;
  color: white;
  font-weight: 600;
}
.gallery-system-preview .gallery-grid .gallery-item.unlocked:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.05);
}
.gallery-system-preview .gallery-grid .gallery-item.locked .gallery-lock-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: white;
}
.gallery-system-preview .gallery-grid .gallery-item.locked .gallery-lock-info .lock-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.gallery-system-preview .gallery-grid .gallery-item.locked .gallery-lock-info .unlock-cost {
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.gallery-system-preview .gallery-grid .gallery-item.locked .gallery-lock-info .content-warning {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: 8px;
}
.gallery-system-preview .gallery-grid .gallery-item.locked.nsfw {
  border-color: rgba(255, 107, 157, 0.5);
}
.gallery-system-preview .gallery-grid .gallery-item.locked.nsfw .gallery-lock-info .lock-icon {
  color: #ff6b9d;
}
.gallery-system-preview .gallery-grid .gallery-item.locked.nsfw .gallery-lock-info .content-warning {
  color: #ff6b9d;
  border: 1px solid rgba(255, 107, 157, 0.3);
}
.gallery-system-preview .gallery-grid .gallery-item.locked.romantic {
  border-color: rgba(255, 105, 180, 0.5);
}
.gallery-system-preview .gallery-grid .gallery-item.locked.romantic .gallery-lock-info .lock-icon {
  color: #ff69b4;
}
.gallery-system-preview .gallery-grid .gallery-item.locked.romantic .gallery-lock-info .content-warning {
  color: #ff69b4;
  border: 1px solid rgba(255, 105, 180, 0.3);
}
.gallery-system-preview .gallery-grid .gallery-item.locked.premium {
  border-color: rgba(255, 215, 0, 0.5);
}
.gallery-system-preview .gallery-grid .gallery-item.locked.premium .gallery-lock-info .lock-icon {
  color: #ffd700;
}
.gallery-system-preview .gallery-grid .gallery-item.locked.premium .gallery-lock-info .content-warning {
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.gallery-system-preview .gallery-grid .gallery-item.locked:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.5);
}
.gallery-system-preview .gallery-grid .gallery-item.locked:hover .gallery-image.blurred {
  filter: blur(6px) brightness(0.8);
}
.gallery-system-preview .gallery-grid .gallery-item.locked:hover .gallery-image.heavily-blurred {
  filter: blur(12px) brightness(0.6);
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-2px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(2px);
  }
}
@media (max-width: 768px) {
  .gallery-system-preview {
    padding: 16px;
  }
  .gallery-system-preview .gallery-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .gallery-system-preview .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.characters {
  background: #0a0a0f;
  position: relative;
  padding: 4rem 0;
}
.characters .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.characters .characters-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .characters .characters-carousel-container {
    gap: 1rem;
    max-width: 100%;
  }
}
.characters .carousel-nav {
  background: rgba(45, 45, 64, 0.9);
  border: 2px solid rgba(218, 53, 111, 0.4);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  flex-shrink: 0;
  z-index: 10;
}
.characters .carousel-nav:hover {
  background: rgba(218, 53, 111, 0.2);
  border-color: #da356f;
  color: #da356f;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(218, 53, 111, 0.3);
}
.characters .carousel-nav:active {
  transform: scale(0.95);
}
.characters .carousel-nav svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .characters .carousel-nav {
    width: 40px;
    height: 40px;
  }
  .characters .carousel-nav svg {
    width: 16px;
    height: 16px;
  }
}
.characters .characters-carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
  max-width: 1000px;
  height: 480px;
  padding: 20px 0;
}
.characters .characters-carousel::before, .characters .characters-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.8;
}
.characters .characters-carousel::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0f, transparent);
}
.characters .characters-carousel::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0f, transparent);
}
@media (max-width: 1024px) {
  .characters .characters-carousel {
    height: 420px;
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .characters .characters-carousel {
    height: 360px;
    padding: 20px 0;
  }
}
.characters .characters-track {
  display: flex;
  gap: 3rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 768px) {
  .characters .characters-track {
    gap: 2rem;
  }
}
.characters .character-card {
  background: linear-gradient(135deg, #1a1a25 0%, #2d2d40 100%);
  border: 2px solid rgba(218, 53, 111, 0.2);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  width: 280px;
  height: 400px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .characters .character-card {
    width: 240px;
    height: 340px;
  }
}
@media (max-width: 768px) {
  .characters .character-card {
    width: 200px;
    height: 280px;
  }
}
.characters .character-card.center {
  opacity: 1;
  transform: scale(1.08);
  z-index: 3;
  border-color: #da356f;
  box-shadow: 0 15px 40px rgba(218, 53, 111, 0.4);
}
.characters .character-card.side {
  opacity: 0.8;
  transform: scale(0.95);
  z-index: 2;
}
.characters .character-card.far {
  opacity: 0.5;
  transform: scale(0.85);
  z-index: 1;
}
.characters .character-card.hidden {
  opacity: 0.2;
  transform: scale(0.75);
  z-index: 0;
}
.characters .character-card:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #da356f;
  box-shadow: 0 20px 50px rgba(218, 53, 111, 0.4);
  z-index: 15 !important;
}
.characters .character-card:hover .character-image {
  transform: scale(1.1);
}
.characters .character-card:hover .character-trait {
  background: rgba(218, 53, 111, 0.3);
  border-color: #da356f;
  color: white;
  transform: scale(1.05);
}
.characters .character-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(218, 53, 111, 0.3) 0%, rgba(255, 0, 110, 0.2) 50%, rgba(218, 53, 111, 0.3) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.characters .character-card.center::before, .characters .character-card:hover::before {
  opacity: 1;
}
.characters .character-card .character-image {
  width: 100%;
  height: 75%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 0.6s ease-out;
  position: relative;
}
.characters .character-card .character-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  z-index: 1;
}
.characters .character-card .character-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}
.characters .character-card .character-info h4 {
  color: white;
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
  font-family: "Fredoka One", "Fredoka", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
@media (max-width: 1024px) {
  .characters .character-card .character-info h4 {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .characters .character-card .character-info h4 {
    font-size: 1.1rem;
  }
}
.characters .character-card .character-info .character-trait {
  color: #da356f;
  font-size: 0.9rem;
  margin: 0;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  background: rgba(218, 53, 111, 0.15);
  border: 2px solid rgba(218, 53, 111, 0.6);
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-block;
  backdrop-filter: blur(10px);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .characters .character-card .character-info .character-trait {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
}
@media (max-width: 768px) {
  .characters .character-card .character-info .character-trait {
    font-size: 0.75rem;
    padding: 3px 6px;
  }
}
.characters .character-counter {
  text-align: center;
  margin-top: 3rem;
  font-family: "Fredoka One", "Fredoka", sans-serif;
  font-size: 1.1rem;
  color: #e0e0e0;
}
.characters .character-counter .current-character {
  color: #da356f;
  font-weight: 700;
  font-size: 1.3rem;
}
.characters .character-counter .counter-divider {
  margin: 0 8px;
  color: #b0b0b0;
}
.characters .character-counter .total-characters {
  color: #e0e0e0;
}
.characters .character-progress-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 3rem;
}
.characters .character-progress-dots .progress-dot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(176, 176, 176, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.characters .character-progress-dots .progress-dot:hover {
  background: rgba(218, 53, 111, 0.5);
  transform: scale(1.2);
}
.characters .character-progress-dots .progress-dot.active {
  background: #da356f;
  box-shadow: 0 0 15px rgba(218, 53, 111, 0.5);
}
.characters .character-progress-dots .progress-dot.active .progress-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: #da356f;
  opacity: 0.8;
}

@keyframes progressFill {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.how-it-works {
  background: #1a1a25;
  position: relative;
}
.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #da356f, transparent);
}
.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .how-it-works .steps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.how-it-works .step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 4rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.how-it-works .step.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .how-it-works .step.mobile-active {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 20, 147, 0.3);
  }
  .how-it-works .step.mobile-active::before {
    opacity: 1;
  }
  .how-it-works .step.mobile-active .step-number {
    transform: scale(1.1);
  }
}
.how-it-works .step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(255, 105, 180, 0.05) 50%, rgba(255, 20, 147, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.how-it-works .step:hover, .how-it-works .step:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 20, 147, 0.3);
  outline: none;
}
.how-it-works .step:hover::before, .how-it-works .step:focus-within::before {
  opacity: 1;
}
.how-it-works .step:hover .step-number, .how-it-works .step:focus-within .step-number {
  transform: scale(1.1);
}
.how-it-works .step .step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #da356f 0%, #ff006e 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 3rem;
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}
.how-it-works .step .step-number::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #da356f, #ff006e, #ff69b4, #da356f);
  z-index: -1;
  animation: rotate 4s linear infinite;
  opacity: 0.7;
}
.how-it-works .step .step-number::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: #1a1a25;
  z-index: -1;
}
.how-it-works .step h4 {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.how-it-works .step p {
  color: #b0b0b0;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}
.how-it-works .step p a {
  color: #da356f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.how-it-works .step p a:hover {
  color: #ff006e;
  text-decoration: underline;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pricing {
  background: #0a0a0f;
  position: relative;
}
.pricing .pricing-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing .pricing-container {
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    position: relative;
  }
}
.pricing .carousel-nav {
  background: rgba(45, 45, 64, 0.9);
  border: 2px solid rgba(218, 53, 111, 0.4);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  flex-shrink: 0;
  z-index: 10;
}
.pricing .carousel-nav:hover:not(:disabled) {
  background: rgba(218, 53, 111, 0.2);
  border-color: #da356f;
  color: #da356f;
  transform: scale(1.1);
  box-shadow: 0 4px 0px rgba(218, 53, 111, 0.3);
}
.pricing .carousel-nav:active {
  transform: scale(0.95);
}
.pricing .carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.pricing .carousel-nav svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .pricing .carousel-nav {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: scale(1.2);
    z-index: 15;
  }
  .pricing .carousel-nav:first-of-type {
    left: 10px;
  }
  .pricing .carousel-nav:last-of-type {
    right: 10px;
  }
  .pricing .carousel-nav svg {
    width: 16px;
    height: 16px;
  }
}
.pricing .pricing-carousel {
  flex: 1;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  height: 600px;
  padding: 50px 0 50px 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.pricing .pricing-carousel::before, .pricing .pricing-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0px;
  width: 60px;
  z-index: 5;
  pointer-events: none;
  opacity: 0.8;
}
.pricing .pricing-carousel::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0f, transparent);
}
.pricing .pricing-carousel::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0f, transparent);
}
@media (max-width: 1024px) {
  .pricing .pricing-carousel {
    padding: 60px 0 45px 0;
  }
}
@media (max-width: 768px) {
  .pricing .pricing-carousel {
    padding: 60px 0 60px 0;
    width: 100%;
    max-width: 100%;
  }
  .pricing .pricing-carousel::before, .pricing .pricing-carousel::after {
    background: linear-gradient(to right, #0a0a0f, transparent);
    width: 40px;
    opacity: 1;
  }
  .pricing .pricing-carousel::after {
    background: linear-gradient(to left, #0a0a0f, transparent);
  }
}
.pricing .pricing-track {
  display: flex;
  gap: 3rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media (max-width: 768px) {
  .pricing .pricing-track {
    gap: 2rem;
  }
}
.pricing .pricing-card {
  background: linear-gradient(135deg, #1a1a25 0%, #2d2d40 100%);
  border: 2px solid rgba(218, 53, 111, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  width: 340px;
  height: 420px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin-bottom: 25px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}
@media (max-width: 1024px) {
  .pricing .pricing-card {
    width: 320px;
    padding: 1rem;
    margin-bottom: 22px;
  }
}
@media (max-width: 768px) {
  .pricing .pricing-card {
    width: 280px;
    height: 420px;
    padding: 1rem;
    margin-bottom: 20px;
  }
}
.pricing .pricing-card.center {
  opacity: 1;
  transform: scale(1.05);
  z-index: 3;
  border-color: #da356f;
  box-shadow: 0 15px 40px rgba(218, 53, 111, 0.4);
}
.pricing .pricing-card.side {
  opacity: 0.8;
  transform: scale(0.95);
  z-index: 2;
}
.pricing .pricing-card.far {
  opacity: 0.5;
  transform: scale(0.85);
  z-index: 1;
}
.pricing .pricing-card.hidden {
  opacity: 0.2;
  transform: scale(0.75);
  z-index: 0;
}
.pricing .pricing-card:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #da356f;
  box-shadow: 0 10px 10px rgba(218, 53, 111, 0.4);
  z-index: 15 !important;
}
.pricing .pricing-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(218, 53, 111, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.pricing .pricing-card:hover::before {
  opacity: 1;
}
.pricing .pricing-card.featured {
  border-color: #da356f;
  box-shadow: 0 4px 20px rgba(218, 53, 111, 0.3);
}
.pricing .pricing-card.featured .pricing-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #da356f 0%, #ff006e 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}
.pricing .pricing-card .pricing-header {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.pricing .pricing-card .pricing-header h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.pricing .pricing-card .pricing-header .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.pricing .pricing-card .pricing-header .price .currency {
  color: #da356f;
  font-size: 1.2rem;
  font-weight: 600;
}
.pricing .pricing-card .pricing-header .price .amount {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 4px;
}
.pricing .pricing-card .pricing-header .price .period {
  color: #b0b0b0;
  font-size: 0.9rem;
}
.pricing .pricing-card .pricing-header .price-subtitle {
  color: #b0b0b0;
  font-size: 0.8rem;
  margin: 0;
  text-align: center;
}
.pricing .pricing-card .pricing-features {
  list-style: none;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}
.pricing .pricing-card .pricing-features li {
  color: #e0e0e0;
  padding: 0.2rem 0;
  position: relative;
  font-size: 0.85rem;
  line-height: 1.4;
}
.pricing .pricing-card .pricing-features li::before {
  content: "✓";
  color: #da356f;
  font-weight: bold;
  margin-right: 0.25rem;
  font-size: 0.8rem;
}
.pricing .pricing-card .btn {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  margin-top: 0;
  padding: 10px 10px;
  font-size: 0.6rem;
  font-weight: 600;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .pricing .pricing-card .btn {
    bottom: -60px;
  }
}
@media (max-width: 768px) {
  .pricing .pricing-card .btn {
    bottom: -60px;
  }
}
.pricing .pricing-card.premium {
  border-color: rgba(255, 0, 110, 0.5);
}
.pricing .pricing-card.premium:hover {
  border-color: #ff006e;
  box-shadow: 0 15px 35px rgba(255, 0, 110, 0.3);
}
.pricing .pricing-card.premium .pricing-header .price .currency,
.pricing .pricing-card.premium .pricing-header .price .amount {
  background: linear-gradient(135deg, #ff006e, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing .pricing-card.pro {
  border-color: rgba(255, 105, 180, 0.5);
}
.pricing .pricing-card.pro:hover {
  border-color: #ff69b4;
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.3);
}
.pricing .pricing-card.pro .pricing-header .price .currency,
.pricing .pricing-card.pro .pricing-header .price .amount {
  background: linear-gradient(135deg, #ff69b4, #da356f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing .economy-info {
  margin-bottom: 4rem;
}
.pricing .economy-info .economy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.pricing .economy-info .economy-card h4 {
  color: #ffffff;
  margin-bottom: 3rem;
  font-size: 1.4rem;
}
.pricing .economy-info .economy-card .coin-rates {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.pricing .economy-info .economy-card .coin-rates .rate-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pricing .economy-info .economy-card .coin-rates .rate-item .cost {
  background: linear-gradient(135deg, #da356f 0%, #ff006e 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}
.pricing .economy-info .economy-card .coin-rates .rate-item .equals {
  color: #da356f;
  font-weight: bold;
  font-size: 1.2rem;
}
.pricing .economy-info .economy-card .coin-rates .rate-item .service {
  color: #e0e0e0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .pricing .economy-info .economy-card .coin-rates {
    flex-direction: column;
    gap: 2rem;
  }
}

.cta {
  background: linear-gradient(135deg, #1a1a25 0%, #2d2d40 100%);
  position: relative;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #da356f, transparent);
}
.cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #da356f, transparent);
}
.cta .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta .cta-content h3 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #ff69b4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .cta .cta-content h3 {
    font-size: 2rem;
  }
}
.cta .cta-content p {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.cta .cta-content .cta-btn {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .cta .cta-content .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

.about-me {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a25 100%);
  position: relative;
  overflow: hidden;
}
.about-me::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #da356f, transparent);
}
.about-me .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about-me .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
}
.about-me .about-text .section-header {
  margin-bottom: 3rem;
}
.about-me .about-text .section-header h3 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #da356f, #ff006e, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .about-me .about-text .section-header h3 {
    font-size: 2rem;
  }
}
.about-me .about-text .section-header p {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin: 0;
}
.about-me .about-text .about-paragraphs {
  margin-bottom: 3rem;
}
.about-me .about-text .about-paragraphs p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.about-me .about-text .about-paragraphs p:last-child {
  margin-bottom: 0;
}
.about-me .about-text .about-cta {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .about-me .about-text .about-cta {
    flex-direction: column;
    align-items: center;
  }
}
.about-me .about-text .about-cta .about-btn {
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-me .about-text .about-cta .about-btn:hover {
  transform: translateY(-2px);
}
.about-me .about-visual {
  display: flex;
  justify-content: center;
}
.about-me .about-visual .developer-card {
  background: rgba(45, 45, 64, 0.8);
  border: 1px solid rgba(218, 53, 111, 0.3);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(218, 53, 111, 0.3);
  text-align: center;
  max-width: 300px;
  width: 100%;
  position: relative;
}
.about-me .about-visual .developer-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(from 0deg, #da356f, #ff006e, #ff69b4, #da356f);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-me .about-visual .developer-card:hover::before {
  opacity: 0.5;
}
.about-me .about-visual .developer-card .dev-avatar {
  margin-bottom: 2rem;
}
.about-me .about-visual .developer-card .dev-avatar .avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #da356f 0%, #ff006e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  border: 3px solid rgba(218, 53, 111, 0.3);
}
.about-me .about-visual .developer-card .dev-avatar .avatar-placeholder span {
  filter: brightness(1.2);
}
.about-me .about-visual .developer-card .dev-info {
  margin-bottom: 0;
}
.about-me .about-visual .developer-card .dev-info h4 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.about-me .about-visual .developer-card .dev-info p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}
.developer-card {
  animation: cardFloat 6s ease-in-out infinite;
}

.tech-skills {
  background: rgba(20, 20, 30, 0.6);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.tech-skills .tech-skills-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.tech-skills .tech-skills-header h4 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ff3399, #3333ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tech-skills .tech-skills-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}
.tech-skills .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tech-skills .tech-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .tech-skills .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}
.tech-skills .tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tech-skills .tech-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 51, 153, 0.3);
  box-shadow: 0 10px 30px rgba(255, 51, 153, 0.1);
}
.tech-skills .tech-item:hover .tech-icon img {
  transform: scale(1.1);
}
.tech-skills .tech-item:hover .tech-icon .jinja-icon,
.tech-skills .tech-item:hover .tech-icon .yaml-icon,
.tech-skills .tech-item:hover .tech-icon .json-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ff3399, #3333ff);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 51, 153, 0.3);
}
.tech-skills .tech-item:hover .tech-name {
  color: #ff3399;
}
.tech-skills .tech-item .tech-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-skills .tech-item .tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.tech-skills .tech-item .tech-icon .jinja-icon,
.tech-skills .tech-item .tech-icon .yaml-icon,
.tech-skills .tech-item .tech-icon .json-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: bold;
  font-size: 0.7rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tech-skills .tech-item .tech-icon .json-icon {
  font-size: 0.6rem;
}
.tech-skills .tech-item .tech-icon .jinja-icon {
  font-size: 0.8rem;
}
.tech-skills .tech-item .tech-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .tech-skills .tech-item .tech-name {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .tech-skills .tech-item {
    padding: 1rem 0.5rem;
  }
  .tech-skills .tech-item .tech-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .tech-skills .tech-item {
    padding: 0.75rem 0.25rem;
  }
  .tech-skills .tech-item .tech-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.4rem;
  }
  .tech-skills .tech-item .tech-icon .jinja-icon,
  .tech-skills .tech-item .tech-icon .yaml-icon {
    font-size: 0.7rem;
  }
}

.tech-item[data-tech=Python]:hover {
  border-color: rgba(55, 118, 171, 0.5);
  box-shadow: 0 10px 30px rgba(55, 118, 171, 0.2);
}
.tech-item[data-tech=JavaScript]:hover {
  border-color: rgba(240, 219, 79, 0.5);
  box-shadow: 0 10px 30px rgba(240, 219, 79, 0.2);
}
.tech-item[data-tech=HTML5]:hover {
  border-color: rgba(227, 76, 38, 0.5);
  box-shadow: 0 10px 30px rgba(227, 76, 38, 0.2);
}
.tech-item[data-tech=SQL]:hover {
  border-color: rgba(0, 123, 191, 0.5);
  box-shadow: 0 10px 30px rgba(0, 123, 191, 0.2);
}
.tech-item[data-tech=SCSS]:hover {
  border-color: rgba(207, 100, 154, 0.5);
  box-shadow: 0 10px 30px rgba(207, 100, 154, 0.2);
}
.tech-item[data-tech=CSS3]:hover {
  border-color: rgba(21, 114, 182, 0.5);
  box-shadow: 0 10px 30px rgba(21, 114, 182, 0.2);
}
.tech-item[data-tech=JSON]:hover {
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
}
.tech-item[data-tech=YAML]:hover {
  border-color: rgba(108, 117, 125, 0.5);
  box-shadow: 0 10px 30px rgba(108, 117, 125, 0.2);
}
.tech-item[data-tech=Jinja]:hover {
  border-color: rgba(183, 58, 58, 0.5);
  box-shadow: 0 10px 30px rgba(183, 58, 58, 0.2);
}

.category-title {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 1.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #88f7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
@media (max-width: 768px) {
  .category-title {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
  }
  .category-title::after {
    width: 45px;
    height: 1.5px;
  }
}
@media (max-width: 480px) {
  .category-title {
    font-size: 1rem;
    margin: 1rem 0 0.75rem 0;
    letter-spacing: 0.5px;
  }
  .category-title::after {
    width: 35px;
    bottom: -6px;
  }
}

.footer {
  background: #0a0a0f;
  border-top: 1px solid rgba(218, 53, 111, 0.2);
  padding: 4rem 0 2rem;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.footer .footer-section h4, .footer .footer-section h5 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.footer .footer-section h4:first-child, .footer .footer-section h5:first-child {
  background: linear-gradient(135deg, #da356f 0%, #ff006e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer .footer-section p {
  color: #b0b0b0;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.footer .footer-section ul {
  list-style: none;
}
.footer .footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer .footer-section ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-section ul li a:hover {
  color: #da356f;
}
.footer .footer-section a {
  color: #da356f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-section a:hover {
  color: #ff69b4;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(218, 53, 111, 0.1);
}
.footer .footer-bottom p {
  color: #b0b0b0;
  margin: 0;
  font-size: 0.9rem;
}

.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-verification-overlay .age-verification-container {
  background: linear-gradient(135deg, #1a1a25 0%, #2d2d40 100%);
  border: 2px solid #da356f;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(218, 53, 111, 0.3);
  max-width: 500px;
  width: 90%;
  animation: slideIn 0.5s ease-out;
}
.age-verification-overlay .age-verification-container .age-verification-content {
  padding: 4rem;
  text-align: center;
}
.age-verification-overlay .age-verification-container .age-verification-content h2 {
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.age-verification-overlay .age-verification-container .age-verification-content p {
  color: #e0e0e0;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.age-verification-overlay .age-verification-container .age-verification-content .age-verification-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .age-verification-overlay .age-verification-container .age-verification-content .age-verification-buttons {
    flex-direction: column;
  }
}
.age-verification-overlay .age-verification-container .age-verification-content .age-verification-buttons .btn {
  padding: 12px 24px;
  font-weight: 600;
  min-width: 120px;
}
@media (max-width: 768px) {
  .age-verification-overlay .age-verification-container .age-verification-content .age-verification-buttons .btn {
    width: 100%;
  }
}
.age-verification-overlay.verified {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}