:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Neutrals */
    --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;

    /* 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;

    /* Typography */
    --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;

    /* 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);

    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Transitions */
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

@font-face {
  font-family: 'Solar6VF';
  src: url('fonts/Solar6VF.woff2') format('woff2'),
       url('fonts/Solar6VF.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  background: linear-gradient(256deg, var(--primary-dark), var(--primary));
  margin: 0;
  padding: 0;
}

.logo {
    text-align: center;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: bold;
    margin-top: 2rem;
    font-family: 'Solar6VF';
}

.search-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    border: #10b981;
}

#search-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.more {
    font-family: 'Solar6VF';
    text-align: center;
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 3rem;
    transition: background-color 0.3s ease;
}

.twitter-tweet {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
}

.footer {
    text-align: center;
    color: var(--white);
    font-size: 0.875rem;
    margin-top: 2rem;
}


@media (max-width: 768px) {
  .logo {
    font-size: var(--font-size-2xl);
    margin-top: var(--space-4);
  }

  .search-container {
    flex-direction: column;
    align-items: center;
    padding: var(--space-3);
    gap: var(--space-2);
  }

  #search-input {
    width: 90%;
    max-width: 400px;
    padding: var(--space-2);
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
    border: none;
    margin-bottom: var(--space-2);
  }

  #search-button {
    width: auto;
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
  }

  .more {
    font-size: var(--font-size-xl);
  }

  .footer {
    padding: var(--space-2);
    font-size: var(--font-size-xs);
  }
}

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.tab-button {
  background-color: var(--gray-700);
  color: var(--white);
  border: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--font-size-base);
  transition: background-color 0.3s ease;
}

.tab-button:hover {
  background-color: var(--primary);
}

.tab-frame {
  display: block;
  width: 90%;
  height: 600px;
  margin: var(--space-4) auto;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .tab-frame {
    width: 100%;
    height: 400px;
  }
}

#tabswindows {
  text-align: center;
  color: #06b6d4;
  font-family: 'Solar6VF' , Dubai;
  font-size: 30px;
}

#downloadbutton {
  display: block;
  margin: 1rem auto;
  background-color: #89241d;
}
