/* Rows auto adjust height - removed */

/* Box base - removed */

/* Top & bottom rows - removed */

.box_6,
.box_7 {
  position: absolute;
  z-index: 10;
   /* background-color: #f00; */
}

.box_7 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
   /* background-color: #f00; */
}

/* Merged box_1 and box_2 - now at top right */
.box_1_2 {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100;
  /* background-color: #f00; */
}

.logo {
  position: absolute;
  top: 19px;
  left: 10px;
  font-size: 24px;
  font-weight: bold;
  color: rgb(6, 222, 222);;
  text-shadow: 0 0 10px rgb(6, 222, 222);;
  z-index: 100;
  font-family: 'Orbitron', monospace;
  font-style: italic;
  letter-spacing: 2px;
}

.logo.hidden {
  display: none !important;
}


.box_4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: rgb(229, 95, 95); */


   overflow: hidden;
   scrollbar-width: none;
    -ms-overflow-style: none;
  
  
}

.svg-wrapper {
  position: relative;
   /* width: 550px;
  height: 550px; */
   /* width: 400px;
    height: 400px; */
}

.rotating-svg {
   max-width: 550px;
    max-height: 550px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  will-change: transform;

}

/* BOX 6 - Sliders */
.box_6 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: rgb(6, 222, 222);;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  z-index: 10;
  transition: background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
user-select: none;
  
}

.box_6.transparent {
  background: transparent;
}

.slider-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-left: 20px;
}

.slider-wrapper.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  display: none;
}

.slider-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.slider-group input[type="range"] {
  writing-mode: bt-lr;
  appearance: slider-vertical;
  -webkit-appearance: slider-vertical;
  width: 8px;
  height: 120px;
  background: linear-gradient(to top, rgb(6, 222, 222); 0%, rgb(6, 222, 222); 50%, #f00 50%, #f00 100%);
  outline: none;
  border-radius: 5px;
  cursor: pointer;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: rgb(6, 222, 222);;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgb(6, 222, 222);, 0 0 20px rgb(6, 222, 222);;
}

.slider-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: rgb(6, 222, 222);;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgb(6, 222, 222);, 0 0 20px rgb(6, 222, 222);;
}

.slider-group span {
  width: 40px;
  height: 40px;
  text-align: center;
 
  font-family: 'Arial', Courier, monospace;
  border-radius: 50%;
  /* padding-top: 7px; */
  font-size: 18px;

   background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgb(6, 222, 222);;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
 
}

.slider-group span:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Master Toggle Button */
.master-toggle-btn {
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgb(6, 222, 222);;
  color: rgb(6, 222, 222);;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 25;
}

.master-toggle-btn:hover {
  background: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: scale(1.1);
}

.master-toggle-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Toggle Button */
.toggle-btn {
  -webkit-tap-highlight-color: transparent;

  position: absolute;
  right: 20px;
  bottom: 105px;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgb(6, 222, 222);;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.toggle-btn:hover {
  background: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transform: scale(1.1);
}

.toggle-btn svg {
  width: 20px;
  height: 20px;
  stroke: rgb(6, 222, 222);;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.toggle-btn.rotated svg {
  transform: rotate(180deg);
}

/* Info Button */
.info-btn {
  -webkit-tap-highlight-color: transparent;

  position: absolute;
  bottom: 343px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgb(6, 222, 222);
  color: rgb(6, 222, 222);;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 20;
}

.info-btn:hover {
  background: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.info-btn svg {
  width: 24px;
  height: 24px;
  stroke: rgb(6, 222, 222);;
  stroke-width: 2;
  fill: none;
}

/* Auth Icon Button */
.auth-icon-btn {
  -webkit-tap-highlight-color: transparent;

  position: absolute;
  bottom: 293px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgb(6, 222, 222);;
  color: rgb(6, 222, 222);;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 20;
}

.auth-icon-btn:hover {
  background: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.auth-icon-btn svg {
  width: 24px;
  height: 24px;
  stroke: rgb(6, 222, 222);;
  stroke-width: 2;
  fill: none;
}

/* Navigation Text Button */
.nav-text-btn {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: bold;
  color: rgb(6, 222, 222);
  text-shadow: 0 0 10px rgb(6, 222, 222);
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid rgb(6, 222, 222);
  border-radius: 25px;
  background: rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.nav-text-btn:hover {
  background: rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

.info-btn:hover {
  background: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: scale(1.1);
}

.info-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ListAll Button */
.listall-btn {
  -webkit-tap-highlight-color: transparent;

  position: absolute;
  bottom: 244px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgb(6, 222, 222);;
  color: rgb(6, 222, 222);;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 20;
}

.listall-btn:hover {
  background: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transform: scale(1.1);
}

.listall-btn.active {
  background: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.listall-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* All Folders View - Big & Beautiful */
.all-folders-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 40px;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}

.list-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.list-section-title {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  color: rgb(6, 222, 222);;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 35px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  border-bottom: 2px solid rgba(0, 255, 255, 0.5);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.list-section-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.folder-preview {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
  background: rgba(0, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
}

.folder-preview:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  border-color: rgb(6, 222, 222);;
  background: rgba(0, 255, 255, 0.15);
}

.folder-preview-stacked {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.preview-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 180px;
  max-height: 180px;
  object-fit: contain;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.folder-preview:hover .preview-image {
  border-radius: 8px;
}

.folder-preview:hover .preview-image:hover {
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 100 !important;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.9);
}

/* Old styles - keeping for reference */
/* All Folders View */
.all-folders-view-old {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  overflow-y: auto;
  height: 100%;
}

.folder-card {
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.folder-card:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: rgb(6, 222, 222);;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  transform: translateY(-5px);
}

.folder-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.folder-card .folder-name {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: rgb(6, 222, 222);;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.folder-card .image-count {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  color: rgba(0, 255, 255, 0.7);
  background: rgba(0, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 10px;
}

.folder-images-stacked {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.stacked-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.folder-card:hover .stacked-image {
  border-color: rgb(6, 222, 222);;
}

.folder-card:hover .stacked-image:hover {
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 100 !important;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* All Images Stacked View */
.all-images-stacked {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.all-stacked-image {
  max-width: 500px;
  max-height: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
}

.all-stacked-image:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.9);
  z-index: 1000 !important;
  border-color: rgb(6, 222, 222);;
}

/* All Images Grid */
.all-images-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
  overflow-y: auto;
}

.image-index-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
}

.index-label {
  width: 100%;
  text-align: center;
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  color: rgb(6, 222, 222);;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.all-image-item {
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 4px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.3);
}

.all-image-item:hover {
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
  z-index: 100 !important;
  border-color: rgb(6, 222, 222);;
}

/* Sound Toggle Button */
.sound-toggle-btn {
  -webkit-tap-highlight-color: transparent;

  position: absolute;
  bottom: 150px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgb(6, 222, 222);;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.sound-toggle-btn:hover {
  background: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transform: scale(1.1);
}

.sound-toggle-btn svg {
  width: 20px;
  height: 20px;
  stroke: rgb(6, 222, 222);;
  stroke-width: 2;
  fill: none;
}

/* Fullscreen Button */
.fullscreen-btn {
  -webkit-tap-highlight-color: transparent;

  position: absolute;
  right: 20px;
  bottom: 199px;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgb(6, 222, 222);;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.fullscreen-btn:hover {
  background: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transform: scale(1.1);
}

.fullscreen-btn svg {
  width: 20px;
  height: 20px;
  stroke: rgb(6, 222, 222);;
  fill: none;
  stroke-width: 2;
}

/* Previous & Next Buttons */
.prev-btn,
.next-btn {
  -webkit-tap-highlight-color: transparent;

  position: absolute;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid rgb(6, 222, 222);;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transform: scale(1.1);
}

.prev-btn svg,
.next-btn svg {
  width: 20px;
  height: 20px;
  stroke: rgb(6, 222, 222);;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prev-btn {
  bottom: 60px;
}

.next-btn {
  bottom: 15px;
}

/* Sound Wrapper */
.sound-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 2px;
  margin-left:1px;
  position: relative;
  width: 200px;
}

.sound-wrapper.hidden {
  display: none;
}

.sound-nav-arrow {
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.3);
  color: rgb(6, 222, 222);;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sound-nav-arrow:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: rgb(6, 222, 222);;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.sound-nav-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgb(6, 222, 222);;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-group {
  display: none;
}

.sound-group.active {
  display: block;
}

.sound-heading {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 600;
  color: rgb(6, 222, 222);;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.sound-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.sound-heading-row .sound-heading {
  margin-bottom: 0;
}

.sound-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sound-btn {
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.3);
  color: rgb(6, 222, 222);;
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: bold;
  transition: all 0.2s ease;
}

.sound-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  border-color: rgb(6, 222, 222);;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.sound-btn.active {
  background: rgba(0, 255, 255, 0.4);
  border-color: rgb(6, 222, 222);;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), inset 0 0 10px rgba(0, 255, 255, 0.2);
  text-shadow: 0 0 10px rgb(6, 222, 222);;
}

.sound-number {
  letter-spacing: 1px;
}

/* Info Dialog */
.info-dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.info-dialog.active {
  display: flex;
}

.info-dialog-content {
  background: rgba(0, 20, 40, 0.95);
  border: 2px solid rgb(6, 222, 222);;
  border-radius: 8px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  position: relative;
}

.info-dialog-content h2 {
  color: rgb(6, 222, 222);;
  margin-bottom: 20px;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgb(6, 222, 222);;
  font-style: italic;
}

.info-dialog-content h3 {
  color: rgb(6, 222, 222);;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-content p {
  color: rgba(0, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 13px;
}

.info-content ul {
  list-style: none;
  padding: 0;
}

.info-content li {
  color: rgba(0, 255, 255, 0.7);
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 0, 100, 0.2);
  border: 2px solid #ff0064;
  color: #ff0064;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: rgba(255, 0, 100, 0.4);
  box-shadow: 0 0 15px rgba(255, 0, 100, 0.5);
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
  }
}

/* Button styles - no animations */
.toggle-btn {
}

.info-btn {
}

.sound-toggle-btn {
}

.fullscreen-btn {
}

.prev-btn {
}

.next-btn {
}

/* Hidden states */
.toggle-btn.hidden,
.info-btn.hidden,
.sound-toggle-btn.hidden,
.fullscreen-btn.hidden,
.prev-btn.hidden,
.next-btn.hidden,
.auth-icon-btn.hidden {
  display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
 
  .box_1_2 {
    top: 10px;
    right: 10px;
  }
  
  .box_4 {
    width: 100%;
    height: 100%;
  }
  
  .box_6 {
    bottom: 10px;
    left: 10px;
    padding: 10px;
  }
  
  .box_7 {
    bottom: 10px;
    right: 10px;
  }




  
  .svg-wrapper {
    width: 400px;
    height: 400px;
  }

  .svg-wrapper .rotating-svg {
    max-width: 100%;
    max-height: 100%;
  }

 


}

.coming-soon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #0c1220;
  font-family: 'Arial', sans-serif;
}

.coming-soon-content {
  text-align: center;
  color: rgb(6, 222, 222);;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.coming-soon-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
}

.coming-soon-content p {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(0, 255, 255, 0.8);
}

.loader {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
  border: 4px solid rgba(0, 255, 255, 0.2);
  border-top: 4px solid rgb(6, 222, 222);;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.home-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid rgb(6, 222, 222);;
  color: rgb(6, 222, 222);;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.home-btn:hover {
  background: rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  transform: scale(1.05);
}

.home-btn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .coming-soon-content h1 {
    font-size: 32px;
  }

  .coming-soon-content p {
    font-size: 16px;
  }

  .home-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}