/* ===== VARIABLES & RESET ===== */
:root {
    --primary: #9b59b6;
    --primary-dark: #8e44ad;
    --primary-light: #b37fd1;
    --secondary: #2ecc71;
    --dark: #111111;
    --darker: #0a0a0a;
    --medium: #2a2a2a;
    --light: #3a3a3a;
    --text: #f0f0f0;
    --text-muted: #b0b0b0;
    
    --glow: 0 0 15px rgba(155, 89, 182, 0.6);
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ===== BASE STYLES ===== */
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: linear-gradient(135deg, var(--darker), var(--dark));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    overflow-x: hidden;
  }
  
  /* ===== TYPOGRAPHY ===== */
  h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    text-shadow: var(--glow);
    letter-spacing: -1px;
  }
  
  /* ===== LAYOUT COMPONENTS ===== */
  .container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(20, 20, 20, 0.15);
    backdrop-filter: blur(3px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.05) 0%, transparent 70%);
    z-index: -1;
    animation: rotate 20s linear infinite;
  }
  
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* ===== BUTTON STYLES ===== */
  .button-group {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
  }
  
  .cta-button {
    position: relative;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    text-align: center;
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius-sm);
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(155, 89, 182, 0.3);
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow);
    border-color: var(--primary);
    color: white;
  }
  
  .cta-button:hover::before {
    opacity: 1;
  }
  
  .cta-button i {
    font-size: 1.2em;
    transition: var(--transition);
  }
  
  .cta-button:hover i {
    transform: translateX(3px);
  }
  
  /* Specific button styles */
  .cta-button.skins {
    --primary: #9b59b6;
    --primary-dark: #8e44ad;
  }
  
  .cta-button.catgirls {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
  }
  
  .cta-button.countdown {
    --primary: #3498db;
    --primary-dark: #2980b9;
  }
  
  /* ===== MEDIA ELEMENTS ===== */
  .img-container {
    position: relative;
    margin: 3rem auto;
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(155, 89, 182, 0.3), transparent);
    mix-blend-mode: overlay;
    pointer-events: none;
  }
  
  .img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .img-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
  }
  
  .img-container:hover img {
    transform: scale(1.05);
  }
  
  /* ===== DECORATIVE ELEMENTS ===== */
  .corner-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    opacity: 0.3;
  }
  
  .corner-accent:nth-child(1) {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
    border-radius: var(--border-radius) 0 0 0;
  }
  
  .corner-accent:nth-child(2) {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
    border-radius: 0 0 var(--border-radius) 0;
  }
  
  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 768px) {
    body {
      padding: 1rem;
    }
    
    .container {
      padding: 2rem 1.5rem;
    }
    
    h1 {
      font-size: 2.5rem;
    }
    
    .cta-button {
      padding: 1rem 1.5rem;
      font-size: 1.1rem;
    }
    
    .button-group {
      gap: 1rem;
      margin: 2rem 0;
    }
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .floating {
    animation: float 3s ease-in-out infinite;
  }
  
  /* Star styles */
  #stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  
  .star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: twinkle infinite ease-in-out;
  }
  
  @keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
  }
  
  /* Make sure container stays above stars */
  .container {
    position: relative;
    z-index: 1;
  }
  
  html, body {
    overflow-x: hidden;
  }
  
  html, body {
    overflow: hidden;
    height: 100%;
  }
  