:root {
  --bg-color: #050505;
  --card-bg: rgba(17, 17, 17, 0.6); /* Translucent for glassmorphism */
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent: #ff007f; /* Neon Rose */
  --border-color: rgba(255, 0, 127, 0.2); /* Subtle Rose Border */
  --hover-color: #333333;
  --success: #32cd32;
  --font-main: "Outfit", sans-serif;
  
  /* Professional Pink Palette */
  --accent-pink: #ff007f;
  --accent-rose: #e11d48;
  
  /* Rich Saturated Gradient */
  --gradient-premium: linear-gradient(135deg, #ff0055 0%, #ff007f 100%);
  --gradient-text: linear-gradient(to right, #fff, #ff007f);
  --gradient-border: linear-gradient(135deg, rgba(255, 0, 85, 0.4), rgba(255, 0, 127, 0.4));
}

/* ... (keep other styles) ... */

/* REMOVED CURSOR STYLES */

/* Enhanced Matte Card with Gradient Border */
.matte-card {
  background-color: var(--card-bg);
  border: 1px solid transparent; /* Prepare for gradient border */
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  /* Gradient Border Trick */
  background-image: linear-gradient(var(--card-bg), var(--card-bg)), var(--gradient-border);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.matte-card:hover {
  transform: translateY(-5px);
  /* White-Pinkish Glow */
  box-shadow: 0 15px 40px -10px rgba(255, 192, 203, 0.35); 
  /* Gradient Border: White to Soft Pink */
  background-image: linear-gradient(var(--card-bg), var(--card-bg)), linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 105, 180, 0.5));
  border-color: rgba(255, 182, 193, 0.4);
}

/* Simple Headings */
.services-section h2, .payment-section h2, .contact-section h2, .about-section h2 {
    color: var(--text-primary);
    display: inline-block;
}

/* Enhanced Icons */
.specializations li i, .crypto-header i, .contact-btn i, .works-btn i {
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Gradient Buttons - Clean & Sharp */
.works-btn, .contact-btn, .nav-cta {
    border: none;
    background: var(--gradient-premium);
    color: #000; /* Black text on bright blue is very readable/tech */
    font-weight: 700;
}

.works-btn:hover, .contact-btn:hover, .nav-cta:hover {
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
    transform: translateY(-2px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at 50% 0%, #2a0a12 0%, #0a0205 50%, #000000 100%); /* Deep Wine Void */
  background-color: var(--bg-color); /* Fallback */
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Noise Overlay for Matte Texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999; /* Higher z-index to sit on top */
  mix-blend-mode: overlay;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 80px;
}

.page-content {
    padding-top: 150px; /* Space for fixed header on content pages */
    min-height: 80vh;
}

/* Typography & Animations */
h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.03em;
}

.fade-in {
    /* Opacity handled by GSAP to ensure content is visible if JS fails */
    /* opacity: 0; REMOVED */
  /* Transformation handled by GSAP */
}

/* Header */
.main-header {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 100;
}

.main-header nav {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.main-header a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-header a.active {
    color: var(--text-primary);
    border-bottom: 1px solid var(--accent);
}

.main-header a:hover {
    color: var(--text-primary);
}

.main-header .nav-cta {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.main-header .nav-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Left align specifically for desktop default */
    text-align: left;
    position: relative;
    padding-left: 40px; /* Add some spacing from edge */
}

.hero-content h1 {
    font-size: 6rem; /* Larger for impact */
    line-height: 1;
    margin-bottom: 24px;
    
    /* Shine Effect Gradient */
    background: linear-gradient(
        110deg,
        #777 0%,
        #ff007f 20%,
        #fff 30%,
        #ff0055 40%,
        #777 60%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.05em;
    transform-origin: left center;
    
    animation: shine 5s ease-in-out infinite;
}

@keyframes shine {
    0% {
        background-position: 100% center;
    }
    100% {
        background-position: -100% center;
    }
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.status-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.works-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--bg-color);
    background: var(--text-primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden; /* For shine effect */
}

/* Universal Button Shine Animation */
@keyframes btnShine {
    0% {
        left: -100%;
    }
    10% {
        left: 200%;
    }
    100% {
        left: 200%;
    }
}

.works-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.25);
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(50, 205, 50, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(50, 205, 50, 0);
  }
}

/* Cards & Matte Design */
/* Cards & Matte Design */
.matte-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color); /* Back to subtle border */
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.matte-card:hover {
  transform: translateY(-5px);
  /* Classy Gold Glow */
  box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  background-color: rgba(255, 255, 255, 0.04);
}

/* Services */
.services-section h2 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bio-text {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.bio-text strong {
  color: var(--text-primary);
}

.specializations {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.specializations li {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-color);
}

.specializations li i {
  background: var(--gradient-icon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; /* Required for transform/clip */
}

/* Crypto */
.payment-section h2 {
  margin-bottom: 24px;
  text-align: center;
}

.crypto-grid {
  display: grid;
  gap: 16px;
}

.crypto-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.crypto-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-primary);
}

.crypto-header i {
  font-size: 1.2rem;
}

.crypto-address-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.crypto-address {
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s;
}

.copy-btn:hover {
  color: var(--text-primary);
}

/* Contact */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 12px 24px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  max-width: 400px;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #666;
}

.telegram-group {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.divider {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 60px;
  color: #444;
  font-size: 0.8rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text-primary);
  color: var(--bg-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Cursor Glow Effect */


/* Universal Button Shine Mixin Logic (Applied to multiple classes) */
.works-btn,
.contact-btn,
.nav-cta {
    position: relative;
    overflow: hidden;
}

.works-btn::after,
.contact-btn::after,
.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: btnShine 3s infinite;
    pointer-events: none;
}

@media (max-width: 600px) {
  .hero-section {
      align-items: center;
      text-align: center;
      padding-left: 0;
  }
  
  .hero-content h1 {
      font-size: 3.5rem;
      transform-origin: center center;
  }
  
  .hero-actions {
      justify-content: center;
  }
  
  .main-header {
      width: 100%;
      right: 0;
      top: 10px;
      padding: 0 20px;
      display: flex;
      justify-content: center;
  }
  
  .main-header nav {
      width: 100%;
      justify-content: center;
      gap: 15px;
      font-size: 0.8rem;
  }

  .crypto-address-container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .copy-btn {
    align-self: flex-end;
  }
  
  .cursor-glow {
      display: none; /* Hide custom cursor on touch devices */
  }
}
