/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Logo Colors */
    --primary: #ffc443;
    --primary-dark: #3c2a04;
    --primary-light: #ffc443;
    --secondary: #3b2a04;
    --accent: #392804;
    --success: #ffc443;
    --warning: #ffc443;
    --error: #ffc443;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

body {
    font-family: var(--font-family);
  line-height: 1.6;
    color: var(--gray-200);
    background: #020200;
    overflow-x: hidden;
    max-width: 100vw;
    margin: 0 auto;
}

/* Ensure all elements use the same font family */
*, *::before, *::after {
    font-family: var(--font-family) !important;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    width: 100%;
}

/* Ensure all sections have proper width constraints */
section {
    max-width: 100vw;
    margin: 0 auto;
}

/* Add responsive padding for better spacing */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero-container {
        padding: 0 var(--space-4);
    }
    
    .nav-container {
        padding: var(--space-4);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: var(--space-4);
    }
    
    .plan {
        padding: var(--space-6);
    }
    
    .dashboard-preview {
        max-width: 100%;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    font-size: var(--font-size-4xl);
  font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
  top: 0;
    left: 0;
    right: 0;
    background: rgba(2, 2, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 196, 67, 0.3);
    z-index: 1002;
    transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1003;
}

.nav-brand {
  display: flex; 
  align-items: center; 
    gap: var(--space-3);
    font-weight: 700;
    font-size: var(--font-size-xl);
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-logo {
    width: 32px;
    height: 32px;
  object-fit: contain; 
}

.nav-menu {
  display: flex;
  align-items: center;
    gap: var(--space-8);
}

.nav-link {
    color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 2, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-menu-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.mobile-nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-size: var(--font-size-lg);
    font-weight: 500;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-nav-btn {
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-base);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: var(--space-2) 0;
}

.mobile-nav-btn.primary {
    background: var(--primary);
    color: var(--gray-800);
}

.mobile-nav-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.mobile-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-profile {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-profile-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.mobile-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.mobile-username {
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-lg);
    font-family: var(--font-family);
}

.mobile-profile-action {
    display: block;
    width: 100%;
    padding: var(--space-3) 0;
    background: none;
    border: none;
    color: var(--gray-300);
    text-align: left;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-profile-action:hover {
    color: var(--primary);
}

.mobile-profile-action.danger {
    color: #ff6b6b;
}

.mobile-profile-action.danger:hover {
    color: #ff5252;
}

.mobile-discord-status {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    margin-top: var(--space-1);
}

.nav-btn {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
  font-weight: 600;
    text-decoration: none;
  transition: all 0.3s ease;
  border: none;
    cursor: pointer;
}

.nav-btn.primary {
    background: var(--primary);
    color: var(--gray-800);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.nav-btn.primary:hover {
    background: #ffd700;
    color: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn.secondary {
    background: var(--gray-600);
    color: var(--gray-200);
  border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.nav-btn.secondary:hover {
    background: var(--gray-500);
    color: var(--white);
  transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    padding: var(--space-24) 0 var(--space-20);
    background: linear-gradient(135deg, #020200 0%, #030100 25%, #050300 50%, #3c2a04 75%, #3b2a04 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 196, 67, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 196, 67, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none; /* Prevent the pseudo-element from blocking clicks */
}

.hero-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
    gap: var(--space-16);
  align-items: start;
  position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
  width: 100%;
    min-height: 600px;
}

.hero-content {
    text-align: left;
  position: relative;
    z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
    gap: var(--space-2);
  background: rgba(255, 196, 67, 0.15);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
  font-weight: 600;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255, 196, 67, 0.3);
    box-shadow: 0 0 20px rgba(255, 196, 67, 0.2), 0 0 40px rgba(255, 196, 67, 0.1);
}

.badge-icon {
    font-size: var(--font-size-lg);
}

.hero-title {
    font-size: var(--font-size-6xl);
  font-weight: 800;
  line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-6);
    text-shadow: 0 0 30px rgba(255, 196, 67, 0.3), 0 0 60px rgba(255, 196, 67, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
    font-size: var(--font-size-xl);
    color: var(--gray-300);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.hero-actions {
  display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-size-base);
}

.btn.primary {
    background: var(--primary);
    color: var(--gray-800);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.btn.primary:hover {
    background: #ffd700;
    color: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn.outline {
    background: var(--gray-600);
    color: var(--gray-200);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.btn.outline:hover {
    background: var(--gray-500);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn.large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
}

.btn.discord-btn {
    background: #5865F2;
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn.discord-btn:hover:not(:disabled) {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.3);
}
.btn.discord-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.btn.discord-btn.authorized {
    background: #10b981;
}
.btn.discord-btn.authorized:hover {
    background: #059669;
}

.hero-stats {
  display: flex;
    gap: var(--space-8);
}

.stat {
  text-align: center;
}

.stat-number {
    font-size: var(--font-size-2xl);
  font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-300);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: start;
  position: relative;
  z-index: 1;
    width: 100%;
  height: 100%;
  padding-top: 80px; /* Adjust this value to move the dashboard preview up/down */
  margin-left: 100px; /* Adjust this value to move the dashboard preview left/right */
}

.dashboard-preview {
    background: linear-gradient(135deg, #020200 0%, #030100 25%, #050300 50%, #3c2a04 100%);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(255, 196, 67, 0.2), 0 0 80px rgba(255, 196, 67, 0.1);
    padding: var(--space-6);
    width: 100%;
    max-width: 600px;
    border: 2px solid rgba(255, 196, 67, 0.4);
    display: flex;
    flex-direction: column;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 196, 67, 0.3);
}

.preview-dots {
    display: flex;
    gap: var(--space-1);
}

.preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffc443;
}

.preview-title {
    font-weight: 600;
    color: var(--white);
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    flex: 1;
}

.resource-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.resource-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  text-align: center;
    padding: var(--space-3);
    background: rgba(255, 196, 67, 0.1);
    border: 1px solid rgba(255, 196, 67, 0.3);
    border-radius: var(--radius-lg);
}

.resource-icon {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon img {
    display: block;
    object-fit: contain;
}

.resource-amount {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #ffc443;
    margin-bottom: var(--space-1);
}

.resource-type {
    font-size: var(--font-size-xs);
    color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.activity-status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: rgba(255, 196, 67, 0.1);
    border: 1px solid rgba(255, 196, 67, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: var(--gray-300);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffc443;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Features Section */
.features {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #030100 0%, #050300 50%, #3c2a04 100%);
    max-width: 100vw;
    margin: 0 auto;
}

/* Simple dashboard styling reusing feature cards */
#dashboard .feature-card h3 {
  margin-bottom: var(--space-2);
}

.features-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.feature-card {
  text-align: center;
    padding: var(--space-8);
    background: rgba(2, 2, 0, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 196, 67, 0.1);
    border: 1px solid rgba(255, 196, 67, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(255, 196, 67, 0.2), 0 0 60px rgba(255, 196, 67, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-4);
  display: block;
}

.feature-card h3 {
    font-size: var(--font-size-xl);
  font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--gray-300);
  line-height: 1.6;
}

/* Pricing Section (Preserved) */
.section {
    padding: var(--space-20) 0;
    max-width: 100vw;
    margin: 0 auto;
}

.section.dark {
    background: linear-gradient(135deg, #020200 0%, #030100 25%, #050300 50%, #3c2a04 75%, #3b2a04 100%);
    color: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-intro h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.section-intro p {
    font-size: var(--font-size-lg);
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
  display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.plan {
    background: rgba(2, 2, 0, 0.8);
    border: 1px solid rgba(255, 196, 67, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
  position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 196, 67, 0.1);
}

.plan:hover { 
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 196, 67, 0.2), 0 0 60px rgba(255, 196, 67, 0.1);
}

.plan.featured {
    border-color: var(--primary);
    background: rgba(255, 196, 67, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 196, 67, 0.3), 0 0 60px rgba(255, 196, 67, 0.1);
}

.plan h3 {
    font-size: var(--font-size-2xl);
  font-weight: 700;
    margin-bottom: var(--space-4);
}

.plan-price {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: #ffc443;
    margin-bottom: var(--space-6);
}

.plan-price span {
    font-size: var(--font-size-lg);
    color: var(--gray-300);
}

.plan ul {
    list-style: none;
    margin-bottom: var(--space-8);
}

.plan li {
    padding: var(--space-2) 0;
    color: var(--gray-300);
    position: relative;
    padding-left: var(--space-6);
}

.plan li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc443;
    font-weight: 700;
}

.badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: #ffc443;
    color: #020200;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-selector {
    margin-top: var(--space-6);
    padding: var(--space-6);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.duration-selector {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

.selector-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.duration-dropdown {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    padding-right: var(--space-10);
    background: rgba(2, 2, 0, 0.8);
    border: 1px solid rgba(255, 196, 67, 0.3);
    border-radius: var(--radius-md);
    color: #e5e7eb;
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 196, 67, 0.1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffc443' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-3) center;
    background-size: 12px;
}

.duration-dropdown:hover {
    border-color: #ffc443;
    background: rgba(2, 2, 0, 0.9);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffc443' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-3) center;
    background-size: 12px;
    box-shadow: 0 0 0 1px rgba(255, 196, 67, 0.2), 0 0 15px rgba(255, 196, 67, 0.2);
}

.duration-dropdown:focus {
    outline: none;
    border-color: #ffc443;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffc443' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-3) center;
    background-size: 12px;
    box-shadow: 0 0 0 3px rgba(255, 196, 67, 0.2), 0 0 20px rgba(255, 196, 67, 0.1);
    color: #ffc443;
}

.buy-btn {
    margin-top: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    background: var(--primary);
    color: var(--gray-800);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-weight: 600;
}

.buy-btn:hover {
    background: #ffd700;
    color: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Resellers section styling */
.resellers-notice {
    margin-top: var(--space-4);
    background: rgba(2, 2, 0, 0.8);
    border: 1px solid rgba(255, 196, 67, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 196, 67, 0.1);
}

.resellers-notice strong {
    color: var(--primary);
    font-weight: 700;
}

.resellers-notice {
    color: var(--gray-300);
    font-size: var(--font-size-sm);
}

/* Pricing section specific button styling */
.plan .btn {
    background: var(--primary);
    color: var(--gray-800);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.plan .btn:hover {
    background: #ffd700;
    color: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, #030100 0%, #050300 50%, #3c2a04 100%);
    max-width: 100vw;
    margin: 0 auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(2, 2, 0, 0.8);
  border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 196, 67, 0.05) 0%, rgba(255, 196, 67, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-item:hover::before,
.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: rgba(255, 196, 67, 0.3);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 196, 67, 0.1);
}

.faq-question {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}


.faq-icon {
    font-size: var(--font-size-xl);
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active {
    border-color: rgba(255, 196, 67, 0.4);
    box-shadow: var(--shadow-md), 0 0 25px rgba(255, 196, 67, 0.15);
}

.faq-answer {
    padding: 0 var(--space-4) var(--space-4);
    color: var(--gray-300);
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    position: relative;
    z-index: 1;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 0 var(--space-4) var(--space-4);
}

/* CTA Section */
.cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
    max-width: 100vw;
  margin: 0 auto;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 196, 67, 0.2) 0%, transparent 70%);
    opacity: 0.8;
    pointer-events: none; /* Prevent the pseudo-element from blocking clicks */
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--gray-800);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-8);
    color: var(--gray-700);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta .btn.primary {
    background: var(--gray-800);
    color: var(--primary);
    border: 2px solid var(--gray-700);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta .btn.primary:hover {
    background: var(--gray-700);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Profile Dropdown */
.profile {
  position: relative;
    display: inline-block;
}

.profile-toggle {
    display: flex;
  align-items: center;
    gap: var(--space-2);
    background: transparent;
    border: none;
    color: var(--gray-300);
    cursor: pointer;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.profile-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.avatar {
  width: 32px;
  height: 32px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* Optional support for avatar images in the future */
.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.username {
    font-weight: 500;
    color: var(--gray-300);
    font-family: var(--font-family);
}

.profile-dropdown {
  position: absolute;
    top: 100%;
  right: 0;
    background: rgba(13, 16, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    padding: var(--space-3);
    min-width: 220px;
    z-index: 1000;
    display: none;
}

.profile-dropdown[aria-expanded="true"],
.profile.open .profile-dropdown {
    display: block;
}

.profile-card {
    padding: var(--space-3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-2);
}

.profile-name {
    display: block;
  font-weight: 600;
    color: var(--white);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
}

.profile-role {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--primary);
    font-weight: 500;
}

.profile-action {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    width: 100%;
    padding: var(--space-2) var(--space-3);
    background: transparent;
    border: none;
    color: var(--gray-200);
  text-align: left;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: background 0.2s ease, color 0.2s ease;
    font-size: var(--font-size-sm);
}

/* (removed icons from profile actions) */

.profile-action:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.profile-action.danger {
    color: #f87171;
}

.profile-action.danger:hover {
    background: rgba(248, 113, 113, 0.1);
  color: #fca5a5;
}

/* Divider inside profile dropdown */
.profile-dropdown hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: var(--space-2) 0;
}

.discord-label {
    display: block;
    font-weight: 500;
}

.discord-status {
  display: block;
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    margin-top: var(--space-1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #020200 0%, #030100 25%, #050300 50%, #3c2a04 75%, #3b2a04 100%);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
    max-width: 100vw;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-logo {
  width: 32px;
  height: 32px;
    object-fit: contain;
}

.footer-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-links {
  display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.footer-column h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: var(--space-2);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
  display: flex;
    justify-content: space-between;
  align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
}

.social-links {
  display: flex;
    gap: var(--space-4);
}

.social-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.social-links a:hover {
    color: var(--primary);
}

.discord-link {
    color: #5865F2 !important;
    font-weight: 600;
}

.discord-link:hover {
    color: #4752C4 !important;
    transform: translateY(-1px);
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
    padding: var(--space-4);
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal[hidden] {
  display: none;
}

.modal-content {
    background: linear-gradient(135deg, #020200 0%, #030100 25%, #050300 50%, #3c2a04 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    max-width: 500px;
  width: 100%;
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(255, 196, 67, 0.3), 0 0 80px rgba(255, 196, 67, 0.1);
    border: 2px solid rgba(255, 196, 67, 0.4);
  position: relative;
}

.modal-close {
  position: absolute;
    top: var(--space-4);
    right: var(--space-4);
  background: none;
    border: none;
    font-size: var(--font-size-2xl);
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffc443;
}

.modal-subtitle {
    color: var(--gray-300);
    margin-bottom: var(--space-6);
}

.form-grid {
  display: grid;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

label {
  display: grid;
    gap: var(--space-2);
  font-weight: 500;
    color: var(--white);
}

input, select, textarea {
  width: 100%;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 196, 67, 0.3);
    background: rgba(2, 2, 0, 0.8);
    color: var(--white);
  font: inherit;
    transition: border-color 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 196, 67, 0.1);
}

/* Global Select/Dropdown Styling - Consistent across all pages */
select {
  padding-right: var(--space-10);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffc443' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 12px;
  cursor: pointer;
  color: #e5e7eb;
}

select option {
  background: #020200;
  color: #e5e7eb;
  padding: var(--space-2);
  border: none;
}

select option:hover,
select option:checked {
  background: rgba(255, 196, 67, 0.1);
  color: #ffc443;
}

select option:focus {
  background: rgba(255, 196, 67, 0.15);
  color: #ffc443;
}

select:hover {
  background: rgba(2, 2, 0, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffc443' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 12px;
  border-color: #ffc443;
  box-shadow: 0 0 0 1px rgba(255, 196, 67, 0.2);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #ffc443;
    box-shadow: 0 0 0 3px rgba(255, 196, 67, 0.2), 0 0 20px rgba(255, 196, 67, 0.1);
}

select:focus {
  background: rgba(2, 2, 0, 0.95);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffc443' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  background-size: 12px;
  color: #ffc443;
}

.form-footnote {
    font-size: var(--font-size-sm);
    color: var(--gray-300);
    text-align: center;
}

.form-feedback {
    min-height: var(--space-5);
    font-size: var(--font-size-sm);
    color: var(--error);
    text-align: center;
}

.subscription-info {
    background: var(--gray-100);
  border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
    color: var(--gray-700);
}

.link {
    background: none;
    border: none;
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.link:hover {
    color: var(--primary-dark);
}

/* Chat Support */
.chat-window {
  position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 350px;
    height: 500px;
    background: linear-gradient(135deg, #020200 0%, #030100 25%, #050300 50%, #3c2a04 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(255, 196, 67, 0.3), 0 0 80px rgba(255, 196, 67, 0.1);
    border: 2px solid rgba(255, 196, 67, 0.4);
  display: flex;
  flex-direction: column;
  z-index: 1000;
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
  from {
        transform: translateY(100%);
    opacity: 0;
  }
  to {
        transform: translateY(0);
    opacity: 1;
  }
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
    padding: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13,16,24,0.85);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.chat-actions { display:flex; align-items:center; gap: var(--space-2); }
.chat-fullscreen {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-300);
  cursor: pointer;
  width: 32px; height: 32px; border-radius: 8px;
}

.chat-window.fullscreen {
  position: fixed;
  inset: 0;
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  z-index: 3000;
}

.chat-title {
  display: flex;
  align-items: center;
    gap: var(--space-2);
  font-weight: 600;
    color: var(--white);
}

.chat-status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
    background: #ffc443;
  animation: pulse 2s infinite;
}

.chat-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-300);
    font-size: var(--font-size-lg);
  cursor: pointer;
    width: 32px; height: 32px; border-radius: 8px;
  transition: all 0.2s ease;
}

.chat-close:hover, .chat-fullscreen:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.chat-messages {
  flex: 1;
    padding: var(--space-4);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
    gap: var(--space-3);
}

.message {
  display: flex;
    gap: var(--space-2);
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message.user {
  flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
    font-size: var(--font-size-sm);
  flex-shrink: 0;
}

.message.support .message-avatar {
    background: var(--primary);
    color: var(--white);
}

.message.user .message-avatar {
    background: var(--secondary);
    color: var(--white);
}

.message-content {
  flex: 1;
  display: flex;
  flex-direction: column;
    gap: var(--space-1);
}

.message.user .message-content {
  align-items: flex-end;
}

.message-text {
    background: rgba(255, 196, 67, 0.1);
    border: 1px solid rgba(255, 196, 67, 0.3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    max-width: 250px;
  word-wrap: break-word;
  line-height: 1.4;
    font-size: var(--font-size-sm);
}

.message-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  max-width: 300px;
}

.message-attachments img {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.message-attachments img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: pointer;
}

.image-modal.hidden {
  display: none;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.image-modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.message.user .message-text {
    background: #ffc443;
    color: #020200;
}

.message-time {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    margin-top: var(--space-1);
}

.message.user .message-time {
  text-align: right;
}

.chat-input-container {
    padding: var(--space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(13,16,24,0.85);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.chat-input-wrapper {
  display: flex;
    gap: var(--space-2);
  align-items: flex-end;
    margin-bottom: var(--space-1);
}

#chat-attach {
  margin-right: var(--space-2);
  width: 28px; height: 28px; line-height: 28px;
  font-size: 16px;
  padding: 0;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-200);
  border-radius: 8px;
}

@media (max-width: 480px) {
  #chat-attach {
    width: 24px;
    height: 24px;
    line-height: 22px;
    font-size: 14px;
  }
}

#chat-input {
  flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    color: var(--white);
  font: inherit;
  resize: none;
    min-height: 44px;
    max-height: 130px;
  line-height: 1.5;
  font-size: 16px;
}

#chat-input:focus {
  outline: none;
    border-color: #ffc443;
    box-shadow: 0 0 0 3px rgba(255, 196, 67, 0.1);
}

.chat-send {
    background: #ffc443;
    color: #020200;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
    padding: 0 var(--space-2);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
    min-width: 32px;
    height: 32px;
}

.chat-send:hover {
    background: #3c2a04;
  transform: translateY(-1px);
}

.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

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

.chat-status {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    text-align: center;
  }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .chat-window {
        right: var(--space-4);
        left: var(--space-4);
        width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero {
        padding: var(--space-16) 0 var(--space-12);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-actions {
    flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }
}

/* Hidden utility */
[hidden] {
    display: none !important;
}

/* iOS-Style Notification System */
#notification-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 90%;
  width: 420px;
}

.notification {
  background: rgba(20, 20, 30, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  pointer-events: auto;
  transform: translateY(-120px);
  opacity: 0;
  animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  min-height: 60px;
}

.notification.removing {
  animation: slideOut 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-120px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateX(500px);
    opacity: 0;
  }
}

.notification-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 2px;
}

.notification-icon.success {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.notification-icon.error {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.notification-icon.warning {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.notification-icon.info {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.notification-icon.question {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.notification-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notification-title {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}

.notification-message {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.5;
}

.notification-close {
  background: transparent;
  border: none;
  color: var(--gray-400);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.notification-close:hover {
  color: var(--white);
}