/* Critical CSS for above-the-fold content */

body {
  font-family: Arial, sans-serif;
  color: var(--text-color);
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--secondary-color);
}

.header {
  padding: 20px 0;
  text-align: center;
  background: var(--background-gradient);
  position: relative;
  z-index: 10;
  min-height: 100px;
}

.logo {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
  max-width: 250px;
}

.container {
  position: relative;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 40px 20px;
  z-index: 1;
}

.main-title {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: var(--spacing-large);
  margin-top: 40px;
  text-shadow: var(--shadow);
  letter-spacing: 3px;
  line-height: 1.3;
  min-height: 140px;
  color: var(--primary-color);
  will-change: transform;
  contain: layout;
}

.table-wrapper {
  margin-bottom: var(--spacing-medium);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

