/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Color Palette - Ultra Dark Tech Theme */
  --bg-primary: #000000;
  --bg-secondary: #050505;
  --bg-tertiary: #0a0a0a;
  --bg-card: #0f0f0f;
  --bg-overlay: rgba(0, 0, 0, 0.9);
  
  /* Neon Accents - More Intense */
  --accent-primary: #00ffff;
  --accent-secondary: #ff00ff;
  --accent-success: #00ff00;
  --accent-warning: #ffff00;
  --accent-error: #ff0000;
  
  /* Text Colors - Darker */
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-muted: #444444;
  
  /* Borders & Shadows - Darker */
  --border-primary: #1a1a1a;
  --border-accent: #00ffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.4);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  
  /* Z-Index */
  --z-dropdown: 1000;
  --z-modal: 2000;
  --z-tooltip: 3000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* Section Layout */
.section {
  padding: var(--space-2xl) 0;
  min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: var(--space-2xl);
  padding: var(--space-2xl) 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.stat-item:hover {
  border-color: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Action Bar */
.action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.action-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.action-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: var(--space-md);
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  padding-left: 2.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  padding-left: 2.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: all var(--transition-normal);
  width: 300px;
}

.search-input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Create Form */
.create-form-container {
  margin-bottom: var(--space-xl);
}

.create-form {
  background: rgba(15, 15, 15, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--border-primary);
}

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

.form-header h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.form-header p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: var(--space-lg);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.form-field {
  margin-bottom: var(--space-lg);
}

.form-field label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-primary);
}

.form-field small {
  display: block;
  margin-top: var(--space-xs);
  color: var(--text-muted);
  font-size: 0.75rem;
}

.options-container {
  margin-bottom: var(--space-md);
}

.option-input-group {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  align-items: center;
}

.option-input-group .input {
  flex: 1 1;
}

.form-actions {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Polls Grid */
.polls-container {
  margin-top: var(--space-xl);
}

.polls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: var(--space-xl);
  gap: var(--space-xl);
}

.poll-card {
  background: rgba(15, 15, 15, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.poll-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #059669);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.poll-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #10b981;
}

.poll-card:hover::before {
  opacity: 1;
}

.poll-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  gap: var(--space-md);
}

.poll-card-header {
  cursor: pointer;
  transition: all var(--transition-normal);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: calc(-1 * var(--space-md));
  margin-bottom: var(--space-lg);
}

.poll-card-header:hover {
  background: rgba(16, 185, 129, 0.05);
  transform: translateY(-1px);
}

/* Poll Detail Page Styles */


.poll-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  gap: var(--space-lg);
}

.poll-title-section {
  flex: 1 1;
}

.poll-title-section .poll-title {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.poll-status-section {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.poll-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: var(--space-md);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: #10b981;
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.token-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.token-info-card h3 {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.token-details {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.poll-options-detail {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.poll-options-detail h3 {
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.poll-option-detail {
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-normal);
}

.poll-option-detail.voted {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.poll-option-detail:hover {
  border-color: #10b981;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.loading-state, .error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

.loading-state .spinner {
  margin-bottom: var(--space-md);
}

.error-state h2 {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.error-state p {
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

/* Embed Styles */
.embed-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.embed-header {
  margin-bottom: 1rem;
  padding: 0;
}

.embed-header h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
  color: inherit;
}

.embed-controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.embed-search {
  flex: 1 1;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.875rem;
  background: white;
  color: #333;
}

.embed-select {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.875rem;
  background: white;
  color: #333;
  min-width: 120px;
}

.embed-polls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.embed-poll-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.embed-poll-header h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem 0;
  color: #333;
}

.embed-poll-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.embed-status {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.embed-status.active {
  background: #d1fae5;
  color: #065f46;
}

.embed-status.ended {
  background: #fee2e2;
  color: #991b1b;
}

.embed-voted-notice {
  background: #d1fae5;
  color: #065f46;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.embed-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.embed-option {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.75rem;
  transition: all 0.2s;
}

.embed-option.voted {
  border-color: #10b981;
  background: #f0fdf4;
}

.embed-option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.embed-option-text {
  font-weight: 500;
  color: #333;
  flex: 1 1;
}

.embed-option-stats {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #666;
}

.your-vote {
  color: #10b981;
  font-weight: 500;
}

.embed-vote-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.5rem;
}

.embed-vote-btn:hover:not(:disabled) {
  background: #f3f4f6;
  border-color: #10b981;
}

.embed-vote-btn.voted {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.embed-vote-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.embed-progress {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.embed-progress-bar {
  height: 100%;
  background: #10b981;
  transition: width 0.3s ease;
}

.embed-empty {
  text-align: center;
  padding: 2rem;
  color: #666;
}

/* Responsive embed styles */
@media (max-width: 768px) {
  .embed-controls {
    flex-direction: column;
  }
  
  .embed-poll-meta {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .embed-option-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Single Poll Embed Styles */
.embed-single-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  max-width: 100%;
  margin: 0;
  padding: 1rem;
  background: white;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.embed-single-loading, .embed-single-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
  padding: 2rem;
}

.embed-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #e5e7eb;
  border-top: 2px solid #10b981;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.embed-single-error h3 {
  margin-bottom: 0.5rem;
  color: #dc2626;
}

.embed-single-error p {
  color: #6b7280;
}

.embed-single-header {
  margin-bottom: 1rem;
}

.embed-single-header h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
  color: #111827;
  line-height: 1.4;
}

.embed-single-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.embed-single-status {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.embed-single-status.active {
  background: #d1fae5;
  color: #065f46;
}

.embed-single-status.ended {
  background: #fee2e2;
  color: #991b1b;
}

.embed-single-voted-notice {
  background: #d1fae5;
  color: #065f46;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-align: center;
}

.embed-single-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-radius: 6px;
}

.embed-single-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
}

.embed-single-stat .stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
}

.embed-single-stat .stat-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.embed-single-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.embed-single-option {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.75rem;
  transition: all 0.2s;
}

.embed-single-option.voted {
  border-color: #10b981;
  background: #f0fdf4;
}

.embed-single-option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.embed-single-option-text {
  font-weight: 500;
  color: #111827;
  flex: 1 1;
  margin-right: 1rem;
}

.embed-single-option-stats {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
  align-items: center;
}

.embed-single-option-stats .your-vote {
  color: #10b981;
  font-weight: 500;
}

.embed-single-vote-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: white;
  color: #374151;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.5rem;
  width: 100%;
}

.embed-single-vote-btn:hover:not(:disabled) {
  background: #f3f4f6;
  border-color: #10b981;
}

.embed-single-vote-btn.voted {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.embed-single-vote-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.embed-single-progress {
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
}

.embed-single-progress-bar {
  height: 100%;
  background: #10b981;
  transition: width 0.3s ease;
}

.embed-single-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.embed-single-link {
  color: #10b981;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.embed-single-link:hover {
  color: #059669;
}

/* Responsive single poll embed */
@media (max-width: 480px) {
  .embed-single-container {
    padding: 0.75rem;
  }
  
  .embed-single-header h2 {
    font-size: 1.125rem;
  }
  
  .embed-single-meta {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .embed-single-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .embed-single-option-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .embed-single-option-stats {
    align-self: flex-end;
  }
}

/* Embed Codes Page Styles */
.embed-codes-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.embed-codes-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-align: center;
}

.embed-codes-page .description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}



.poll-id-input {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.poll-id-input h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.poll-id-field {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.poll-id-field:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.poll-id-input small {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.preview-placeholder {
  margin-bottom: 3rem;
}

.preview-placeholder h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.placeholder-message {
  border: 2px dashed var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  background: var(--bg-secondary);
}

.placeholder-message p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

.embed-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-bottom: 3rem;
}

.option-group {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.option-group h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.size-options, .theme-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.size-option, .theme-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.size-option:hover, .theme-option:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.size-option input, .theme-option input {
  margin: 0;
}

.size-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.size-label small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.preview-section {
  margin-bottom: 3rem;
}

.preview-section h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.preview-container {
  border: 2px dashed var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: var(--bg-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.code-section {
  margin-bottom: 3rem;
}

.code-section h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.code-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-primary);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.tab-btn.active {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.code-container {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.code-block {
  margin: 0;
  padding: 1.5rem;
  background: #1f2937;
  color: #e5e7eb;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

.copy-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: #10b981;
  color: white;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all var(--transition-normal);
}

.copy-btn:hover {
  background: #059669;
}

.instructions {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.instructions h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.instructions ol, .instructions ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.instructions li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.instructions ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}

.instructions ul li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .embed-codes-page {
    padding: 1rem;
  }
  
  .embed-codes-page h1 {
    font-size: 2rem;
  }
  
  .embed-options {
    grid-template-columns: 1fr;
  }
  
  .preview-container {
    padding: 0.5rem;
  }
  
  .code-block {
    font-size: 0.75rem;
    padding: 1rem;
  }
}

.poll-title {
  flex: 1 1;
  min-width: 0; /* Allows flex item to shrink below content size */
}

.poll-title h4 {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  font-size: 1.25rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  /* Fallback for browsers that don't support -webkit-line-clamp */
  max-height: calc(1.4em * 3);
}

.poll-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.creator, .token {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.token-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(16,
    185,
    129, 0.05);
  border: 1px solid rgba(16,
    185,
    129, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  max-width: 80%;
  overflow: hidden;
}

.token-label {
  color: rgba(16,
    185,
    129);
  font-weight: 500;
  white-space: nowrap;
}

.token-name {
  color: rgba(16, 185, 129);
  font-weight: 600;
  white-space: nowrap;
}

.token-copy-btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.token-copy-btn:hover {
  background: rgba(16,
    185,
    129, 0.1);
  color: var(--accent-primary);
}

.token-copy-btn svg {
  flex-shrink: 0;
}

.token-contract {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.poll-status {
  display: flex;
  gap: var(--space-sm);
}

.voted-notification {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  color: var(--accent-success);
  font-size: 0.875rem;
}

.vote-detail {
  font-weight: 600;
  margin-left: var(--space-xs);
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.poll-option {
  padding: var(--space-lg);
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.poll-option.voted {
  border-color: var(--accent-success);
  background: rgba(0, 255, 0, 0.05);
}

.poll-option:hover {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.option-info {
  flex: 1 1;
}

.option-text {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.option-stats {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.voting-power {
  font-family: var(--font-mono);
}

.percentage {
  color: #10b981;
  font-weight: 600;
}

.your-vote {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--accent-success);
  font-weight: 600;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--text-secondary);
}

.empty-icon {
  margin-bottom: var(--space-lg);
  opacity: 0.5;
}

.empty-state h3 {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.empty-state p {
  margin-bottom: var(--space-lg);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Spinner Animation */
.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Progress Bars */
.progress {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  height: 8px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: var(--radius-md);
  transition: width var(--transition-slow);
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-success {
  background: rgba(0, 255, 0, 0.1);
  color: var(--accent-success);
  border: 1px solid rgba(0, 255, 0, 0.3);
}

.tag-warning {
  background: rgba(255, 255, 0, 0.1);
  color: var(--accent-warning);
  border: 1px solid rgba(255, 255, 0, 0.3);
}

.tag-info {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

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

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.6); }
}

.fade-in {
  animation: fadeIn 0.5s ease-out;
}

.pulse {
  animation: pulse 2s infinite;
}

.glow {
  animation: glow 2s infinite;
}

/* Grid System */
.grid {
  display: grid;
  grid-gap: var(--space-lg);
  gap: var(--space-lg);
}

.grid-1 { grid-template-columns: repeat(1, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .action-bar {
    flex-direction: column;
    gap: var(--space-md);
    align-items: stretch;
  }
  
  .action-right {
    justify-content: center;
  }
  
  .search-input {
    width: 100%;
  }
  
  .polls-grid {
    grid-template-columns: 1fr;
  }
  
  .poll-header {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .poll-title h4 {
    font-size: 1.125rem;
    -webkit-line-clamp: 2;
  }
  
  .option-content {
    flex-direction: column;
    gap: var(--space-md);
    align-items: stretch;
  }

  .poll-detail-header {
    flex-direction: column;
    gap: var(--space-md);
  }

  .poll-title-section .poll-title {
    font-size: 1.5rem;
  }

  .poll-stats {
    grid-template-columns: 1fr;
  }

  .token-details {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space-md); }
.gap-4 { gap: var(--space-lg); }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-primary);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: #10b981;
}

/* Focus styles */
*:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: #10b981;
  color: var(--text-primary);
}

/* Navigation */
.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: var(--z-dropdown);
  background: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-primary);
  padding: var(--space-md) 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
}

.nav-logo:hover {
  color: var(--accent-primary);
  transform: translateY(-1px);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.nav-logo:hover .logo-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.logo-text {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-secondary) !important;
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  font-size: 0.875rem;
}

.nav-link:hover {
  color: var(--text-primary) !important;
  background: var(--bg-secondary);
}

.wallet-status {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.wallet-status:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.wallet-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.status-dot.connected {
  background: var(--accent-success);
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  animation: pulse 2s infinite;
}

.status-dot.disconnected {
  background: var(--accent-error);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.wallet-address {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

/* Links */
a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  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.1), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--text-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #10b981;
  border: 1px solid #10b981;
}

.btn-secondary:hover {
  background: #10b981;
  color: var(--text-primary);
}

.btn-success {
  background: linear-gradient(135deg, var(--accent-success), #00cc00);
  color: var(--text-primary);
}

.btn-warning {
  background: linear-gradient(135deg, var(--accent-warning), #cccc00);
  color: var(--text-primary);
}

.btn-error {
  background: linear-gradient(135deg, var(--accent-error), #cc0000);
  color: var(--text-primary);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #059669);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #10b981;
}

.card:hover::before {
  opacity: 1;
}

/* Form Elements */
.input {
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: all var(--transition-normal);
  width: 100%;
}

.input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  padding-right: 2.5rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  width: 100%;
}

.select::after {
  content: '▼';
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 0.75rem;
}

.select select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.back-button-container {
  margin-bottom: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  justify-content: space-between;
  align-items: center;
}

.embed-code-section {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.embed-code-section h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  font-size: 1.25rem;
}

.embed-code-section p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.embed-code-pre {
  background: #1f2937;
  color: #e5e7eb;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
  margin-bottom: var(--space-md);
  border: 1px solid #374151;
}

.embed-code-section .btn {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.embed-preview-section {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.embed-preview-section h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  font-size: 1.25rem;
}

.embed-preview-section p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.embed-preview-container {
  border: 2px dashed var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  background: var(--bg-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

/* My Votes Page Styles */
.my-votes-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.your-vote-section {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
}

.vote-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.voted-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  color: var(--accent-success);
}

.voted-option svg {
  color: var(--accent-success);
}

/* Navigation styles for nav-start */
.nav-start {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[13].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"src/app/layout.tsx","import":"Inter","arguments":[{"subsets":["latin"],"variable":"--font-inter"}],"variableName":"inter"} ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__Inter_Fallback_f367f3';src: local("Arial");ascent-override: 90.49%;descent-override: 22.56%;line-gap-override: 0.00%;size-adjust: 107.06%
}.__className_f367f3 {font-family: '__Inter_f367f3', '__Inter_Fallback_f367f3';font-style: normal
}.__variable_f367f3 {--font-inter: '__Inter_f367f3', '__Inter_Fallback_f367f3'
}

