/* Reset and Base Styles */
:root {
    --scrollbar-color-thumb: rgba(1, 0, 29, 0.5);
    --scrollbar-color-thumb-hover: rgba(255, 255, 255, 0.5);
    --scrollbar-color-track: rgba(1, 0, 29, 0.1);
    --scrollbar-width: thin;
    --scrollbar-width-legacy: 0.5rem;
}

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

@supports (scrollbar-width: auto) {
    * {
        scrollbar-color:
            var(--scrollbar-color-thumb)
            var(--scrollbar-color-track)
        ;
        scrollbar-width: var(--scrollbar-width);
    }
    *:hover {
        scrollbar-color:
            var(--scrollbar-color-thumb-hover)
            var(--scrollbar-color-track)
        ;
    }
}
@supports selector(::-webkit-scrollbar) {
    *:hover {
        --safari-fix: ; /* This custom property forces Safari to re-render the scrollbars on hover */
    }
    *::-webkit-scrollbar-thumb {
        background: var(--scrollbar-color-thumb);
    }
    *::-webkit-scrollbar-track {
        background: var(--scrollbar-color-track);
    }
    *:hover::-webkit-scrollbar-thumb {
        background: var(--scrollbar-color-thumb);
    }
    /**:hover::-webkit-scrollbar-track {*/
    /*    background: var(--scrollbar-color-track);*/
    /*}*/
    *::-webkit-scrollbar {
        max-width: var(--scrollbar-width-legacy);
        max-height: var(--scrollbar-width-legacy);
    }
}


body {
  font-family: "Open Sans", sans-serif;
  background-color: #01001d;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px;
}

a {
    color: #1557d9;
    text-decoration: none;
}
a:hover {
    color: #ffc201;
}

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
}

.volta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.volta-header {
  background-color: #010a37;
  border-bottom: 1px solid #0b1569;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.volta-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.volta-header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.volta-logo img {
  height: 40px;
  width: auto;
}

.volta-nav {
  display: flex;
  gap: 30px;
}

.volta-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.volta-nav a:hover {
  color: #1557d9;
}

.volta-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.volta-online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ffffff;
}

.volta-online-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.volta-header-buttons {
  display: flex;
  gap: 10px;
}

.volta-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.volta-btn-login {
  background-color: #1557d9;
  color: #ffffff;
}

.volta-btn-login:hover {
  background-color: #0d47c4;
  transform: translateY(-2px);
}

.volta-btn-signup {
  background-color: #ffc201;
  color: #000000;
}

.volta-btn-signup:hover {
  background-color: #e6ae01;
  transform: translateY(-2px);
}

.volta-burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.volta-burger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

.volta-mobile-menu {
  display: none;
  background-color: #010a37;
  border-top: 1px solid #0b1569;
  padding: 20px 0;
}

.volta-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.volta-mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #0b1569;
}

/* Hero Section */
.volta-hero {
  background: linear-gradient(rgba(1, 0, 29, 0.7), rgba(1, 0, 29, 0.7)), url("/hero-banner.jpg");
  background-size: contain;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  padding: 120px 0;
}

.volta-hero-content {
    max-width: 800px;
    text-align: center;
    margin: 24px auto;
}

.volta-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #1557d9, #ffc201);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.volta-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.volta-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.volta-btn-primary {
  background-color: #ffc201;
  color: #000000;
  padding: 15px 30px;
  font-size: 16px;
}

.volta-btn-secondary {
  background-color: #1557d9;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 16px;
}

/* Breadcrumbs */
.volta-breadcrumbs {
  background-color: rgba(11, 21, 105, 0.3);
  padding: 15px 0;
  margin-bottom: 30px;
}

.volta-breadcrumbs span {
  color: #ffffff;
}

/* Content Sections */
.volta-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.volta-content-wrapper > section {
  margin-bottom: 60px;
  padding: 40px;
  background-color: rgba(11, 21, 105, 0.1);
  border: 1px solid #0b1569;
  border-radius: 12px;
}

.volta-content-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffc201;
  text-align: center;
}

/* Table of Contents */
.volta-toc {
  background-color: rgba(21, 87, 217, 0.1);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #1557d9;
}

.volta-toc h2 {
  color: #1557d9;
  margin-bottom: 20px;
}

.volta-toc ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.volta-toc li {
  padding: 8px 0;
}

.volta-toc a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.volta-toc a:hover {
  color: #1557d9;
}

/* Info Table */
.volta-info-table-wrapper {
  overflow-x: auto;
}

.volta-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.volta-info-table td {
  padding: 15px 20px;
  border: 1px solid #0b1569;
  text-align: left;
}

.volta-info-table td:first-child {
  font-weight: 600;
  background-color: rgba(21, 87, 217, 0.1);
  color: #ffc201;
  width: 40%;
}

/* App Section */
.volta-app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.volta-app-table-wrapper {
  overflow-x: auto;
}

.volta-app-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.volta-app-table td {
  padding: 12px 15px;
  border: 1px solid #0b1569;
}

.volta-app-table td:first-child {
  font-weight: 600;
  background-color: rgba(21, 87, 217, 0.1);
  color: #ffc201;
}

.volta-app-downloads {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.volta-app-btn {
  transition: transform 0.3s ease;
}

.volta-app-btn:hover {
  transform: translateY(-3px);
}

/* Pros and Cons */
.volta-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.volta-pros,
.volta-cons {
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #0b1569;
}

.volta-pros {
  background-color: rgba(0, 255, 0, 0.05);
  border-color: #00aa00;
}

.volta-cons {
  background-color: rgba(255, 0, 0, 0.05);
  border-color: #aa0000;
}

.volta-pros h3 {
  color: #00ff00;
  margin-bottom: 20px;
}

.volta-cons h3 {
  color: #ff6666;
  margin-bottom: 20px;
}

.volta-pros ul,
.volta-cons ul {
  list-style: none;
}

.volta-pros li::before {
  content: "✓ ";
  color: #00ff00;
  font-weight: bold;
}

.volta-cons li::before {
  content: "✗ ";
  color: #ff6666;
  font-weight: bold;
}

.volta-pros li,
.volta-cons li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Screenshots Slider */
.volta-screenshots-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 323px));
  gap: 20px;
}

.volta-screenshot-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #0b1569;
}

.volta-screenshot-item img {
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.volta-screenshot-item:hover img {
  transform: scale(1.05);
}

/* Tournaments */
.volta-tournaments-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.volta-tournament-card {
  background-color: rgba(21, 87, 217, 0.1);
  border: 1px solid #1557d9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.volta-tournament-card:hover {
  transform: translateY(-5px);
}

.volta-tournament-card h3 {
  color: #ffc201;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.volta-tournament-card p {
  margin-bottom: 20px;
  color: #cccccc;
}

.volta-tournament-timer {
  background-color: rgba(255, 194, 1, 0.1);
  border: 1px solid #ffc201;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffc201;
}

.volta-tournament-prize {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ff00;
}

/* Bonuses */
.volta-bonuses-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.volta-bonus-card {
  background: linear-gradient(135deg, rgba(21, 87, 217, 0.2), rgba(255, 194, 1, 0.1));
  border: 1px solid #ffc201;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.volta-bonus-card:hover {
  transform: translateY(-5px);
}

.volta-bonus-card h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.volta-bonus-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #ffc201;
  margin-bottom: 15px;
}

.volta-bonus-card p {
  margin-bottom: 20px;
  color: #cccccc;
}

.volta-bonus-btn {
  background-color: #1557d9;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.volta-bonus-btn:hover {
  background-color: #0d47c4;
  transform: translateY(-2px);
}

/* Games */
.volta-games-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(214px, 1fr));
  gap: 20px;
}

.volta-game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #0b1569;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.volta-game-card:hover {
  transform: translateY(-5px);
}

.volta-game-card img {
  display: block;
  margin: 0 auto 15px;
  height: 112px;
  border-radius: 6px;
}

.volta-game-card h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.volta-game-btn {
  background-color: #ffc201;
  color: #000000;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.volta-game-btn:hover {
  background-color: #e6ae01;
  transform: translateY(-2px);
}

/* Wheel Game */
.volta-wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.volta-wheel-game {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#voltaWheel {
  border: 3px solid #ffc201;
  border-radius: 50%;
}

.volta-spin-btn {
  background: linear-gradient(45deg, #1557d9, #ffc201);
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volta-spin-btn:hover {
  transform: scale(1.05);
}

.volta-wheel-result {
  background-color: rgba(21, 87, 217, 0.2);
  border: 2px solid #ffc201;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

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

.volta-claim-btn {
  background-color: #00ff00;
  color: #000000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
}

/* Review Content */
.volta-review-content {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #0b1569;
}

.volta-review-content h3 {
  color: #ffc201;
  margin: 30px 0 15px 0;
}

.volta-review-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.volta-review-content ul,
.volta-review-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.volta-review-content li {
  margin-bottom: 10px;
}

.volta-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.volta-review-content table td,
.volta-review-content table th {
  padding: 12px;
  border: 1px solid #0b1569;
  text-align: left;
}

.volta-review-content table th {
  background-color: rgba(21, 87, 217, 0.1);
  color: #ffc201;
  font-weight: 600;
}

/* FAQ */
.volta-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.volta-faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #0b1569;
  border-radius: 8px;
  overflow: hidden;
}

.volta-faq-item h3 {
  background-color: rgba(21, 87, 217, 0.1);
  color: #ffc201;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.volta-faq-item h3:hover {
  background-color: rgba(21, 87, 217, 0.2);
}

.volta-faq-answer {
  padding: 20px;
  border-top: 1px solid #0b1569;
}

/* Reviews */
.volta-reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.volta-review-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #0b1569;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
}

.volta-review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.volta-review-card h4 {
  color: #ffc201;
  margin-bottom: 15px;
}

.volta-review-card p {
  line-height: 1.6;
  color: #cccccc;
}

.volta-review-form {
  background-color: rgba(21, 87, 217, 0.1);
  border: 1px solid #1557d9;
  border-radius: 8px;
  padding: 30px;
}

.volta-review-form h3 {
  color: #ffc201;
  margin-bottom: 20px;
  text-align: center;
}

.volta-review-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.volta-review-form input,
.volta-review-form textarea {
  padding: 12px;
  border: 1px solid #0b1569;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: inherit;
}

.volta-review-form input::placeholder,
.volta-review-form textarea::placeholder {
  color: #cccccc;
}

.volta-review-form button {
  background-color: #ffc201;
  color: #000000;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volta-review-form button:hover {
  background-color: #e6ae01;
  transform: translateY(-2px);
}

#voltaReviewSuccess {
  background-color: rgba(0, 255, 0, 0.1);
  border: 1px solid #00aa00;
  border-radius: 6px;
  padding: 15px;
  color: #00ff00;
  text-align: center;
  margin-top: 15px;
}

/* Author */
.volta-author-card {
  display: flex;
  gap: 30px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #0b1569;
  border-radius: 8px;
  padding: 30px;
}

.volta-author-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.volta-author-info h3 {
  color: #ffc201;
  margin-bottom: 15px;
}

.volta-author-info p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #cccccc;
}

.volta-author-links a {
  color: #1557d9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.volta-author-links a:hover {
  color: #ffc201;
}

/* Footer */
.volta-footer {
  background-color: #010a37;
  border-top: 1px solid #0b1569;
  margin-top: 60px;
  padding: 40px 0 20px;
}

.volta-footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.volta-footer-section h4 {
  color: #ffc201;
  margin-bottom: 20px;
}

.volta-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.volta-footer-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.volta-footer-nav a:hover {
  color: #1557d9;
}

.volta-payment-methods,
.volta-game-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.volta-payment-methods img,
.volta-game-providers img {
  height: 30px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.volta-payment-methods img:hover,
.volta-game-providers img:hover {
  opacity: 1;
}

.volta-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #0b1569;
}

.volta-copyright p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 5px;
}

.volta-legal {
  display: flex;
  gap: 20px;
}

.volta-legal a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.volta-legal a:hover {
  color: #1557d9;
}

/* Widget */
.volta-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(45deg, #1557d9, #ffc201);
  padding: 15px 0;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.volta-widget-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.volta-widget-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

.volta-widget-btn {
  background-color: #ffffff;
  color: #1557d9;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.volta-widget-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .volta-burger {
    display: flex;
  }

  .volta-nav {
    display: none;
  }

  .volta-header .volta-btn {
    padding: 4px 6px;
  }

  .volta-online-counter {
    display: none;
  }

  .volta-mobile-menu.active {
    display: block;
  }

  .volta-hero-content h1 {
    font-size: 2rem;
  }

  .volta-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .volta-app-content {
    grid-template-columns: 1fr;
  }

  .volta-pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .volta-screenshots-slider,
  .volta-tournaments-slider,
  .volta-bonuses-slider {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .volta-games-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .volta-review-content {
    background: none;
    padding: 0;
    border-radius: 0;
    border: none;
  }

  .volta-reviews-list {
    grid-template-columns: 1fr;
  }

  .volta-author-card {
    flex-direction: column;
    text-align: center;
  }

  .volta-footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .volta-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .volta-widget-content {
    flex-direction: column;
    gap: 10px;
  }

  .volta-widget-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .volta-container {
    padding: 0 15px;
  }

  .volta-content-wrapper > section {
    padding: 20px;
    margin-bottom: 30px;
  }

  .volta-hero {
    padding: 40px 0;
  }

  .volta-hero-content h1 {
    font-size: 1.5rem;
  }

  .volta-games-slider {
    grid-template-columns: 1fr;
  }

  .volta-footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .volta-legal {
    flex-direction: column;
    gap: 10px;
  }
}

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

.volta-content-wrapper > section {
  animation: slideInUp 0.6s ease forwards;
}

.volta-content-wrapper > section:nth-child(even) {
  animation-delay: 0.1s;
}

.volta-content-wrapper > section:nth-child(odd) {
  animation-delay: 0.2s;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.volta-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus states for accessibility */
.volta-btn:focus,
.volta-nav a:focus,
.volta-toc a:focus {
  outline: 2px solid #ffc201;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .volta-content-wrapper > section {
    border-width: 2px;
  }

  .volta-btn {
    border: 2px solid currentColor;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
