/* Bloob Coin Info Section */
.bloob-info-section {
  margin-top: -50px;
  text-align: center;
}

.bloob-info-container {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.bloob-title {
  font-family: 'Lalezar', cursive;
  font-size: 72px;
  color: rgb(231, 231, 231);
  margin: 0 0 20px 0;
  text-transform: uppercase;
  text-shadow: 
    3px 3px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    4px 4px 10px rgba(0, 0, 0, 0.8);
  line-height: 1;
}

@media (max-width: 1024px) {
  .bloob-info-section {
    margin-top: -30px;
  }
  
  .bloob-info-container {
    max-width: 100%;
    padding: 0 30px;
  }
  
  .bloob-title {
    font-size: 56px;
    color: rgb(231, 231, 231);
  }
}

@media (max-width: 768px) {
  .bloob-info-section {
    margin-top: -20px;
  }
  
  .bloob-info-container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .bloob-title {
    font-size: 42px;
    margin: 0 0 15px 0;
    text-shadow: 
      2px 2px 0 #000,
      -1px -1px 0 #000,
      1px -1px 0 #000,
      -1px 1px 0 #000,
      3px 3px 8px rgba(0, 0, 0, 0.8);
  }
}

@media (max-width: 480px) {
  .bloob-info-section {
    margin-top: -65px;
  }
  
  .bloob-info-container {
    padding: 0 15px;
  }
  
  .bloob-title {
    font-size: 32px;
    text-shadow: 
      2px 2px 0 #000,
      -1px -1px 0 #000,
      1px -1px 0 #000,
      -1px 1px 0 #000,
      2px 2px 6px rgba(0, 0, 0, 0.8);
  }
}

.bloob-tagline {
  font-family: 'Lalezar', cursive;
  font-size: 28px;
  color: rgb(231, 231, 231);
  margin: -20px 0 30px 0;
  text-shadow: 
    2px 2px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000;
  line-height: 1.3;
}

.bloob-contract {
  margin-top: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contract-label {
  font-family: 'Lalezar', cursive;
  font-size: 22px;
  color: #ffd700;
  margin: 0 0 15px 0;
  text-shadow: 
    1px 1px 0 #000,
    -1px -1px 0 #000;
}

.contract-address {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: #fff;
  margin: 0;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.main-button-wrapper {
  margin-top: 40px;
  text-align: center;
}

.main-cta-button {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.main-cta-button:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.main-cta-button:active {
  transform: scale(0.98);
}

.main-button-image {
  max-width: 1200px;
  width: 100%;
  height: auto;
  display: block;
}

/* Trading Section */
.trading-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.3) 0%, rgba(75, 0, 130, 0.3) 100%);
  text-align: center;
}

.trading-container {
  max-width: 900px;
  margin: 0 auto;
}

.trading-title {
  font-family: 'Lalezar', cursive;
  font-size: 56px;
  color: #fff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  text-shadow: 
    3px 3px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    4px 4px 10px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

.trading-description {
  font-family: 'Lalezar', cursive;
  font-size: 24px;
  color: #fff;
  margin: 0 0 40px 0;
  text-shadow: 
    2px 2px 0 #000,
    -1px -1px 0 #000;
}

.trade-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffd700 100%);
  color: #000;
  font-family: 'Lalezar', cursive;
  font-size: 28px;
  text-decoration: none;
  border-radius: 50px;
  border: 4px solid #000;
  box-shadow: 
    0 6px 0 #000,
    0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.trade-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -50%; }
  100% { left: 150%; }
}

.trade-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 9px 0 #000,
    0 15px 40px rgba(0, 0, 0, 0.6);
}

.trade-button:active {
  transform: translateY(3px);
  box-shadow: 
    0 3px 0 #000,
    0 5px 20px rgba(0, 0, 0, 0.5);
}

.button-arrow {
  font-size: 32px;
  transition: transform 0.3s ease;
}

.trade-button:hover .button-arrow {
  transform: translateX(5px);
}

.trading-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  font-size: 48px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.feature-item p {
  font-family: 'Lalezar', cursive;
  font-size: 20px;
  color: #fff;
  margin: 0;
  text-shadow: 
    1px 1px 0 #000,
    -1px -1px 0 #000;
}

@media (max-width: 768px) {
  .bloob-title {
    font-size: 48px;
  }

  .bloob-tagline {
    font-size: 20px;
  }

  .contract-label {
    font-size: 18px;
  }

  .contract-address {
    font-size: 13px;
    padding: 12px;
  }

  .trading-title {
    font-size: 40px;
  }

  .trading-description {
    font-size: 20px;
  }

  .trade-button {
    padding: 16px 40px;
    font-size: 24px;
  }

  .button-arrow {
    font-size: 28px;
  }

  .trading-features {
    gap: 30px;
  }

  .feature-icon {
    font-size: 40px;
  }

  .feature-item p {
    font-size: 18px;
  }

  .bloob-info-section {
    padding: 30px 15px;
  }

  .trading-section {
    padding: 40px 15px;
  }
}

@media (max-width: 480px) {
  .bloob-title {
    font-size: 55px;
  }

  .bloob-tagline {
    font-size: 20px;
  }

  .contract-label {
    font-size: 20px;
  }

  .contract-address {
    font-size: 12px;
    padding: 10px;
  }

  .trading-title {
    font-size: 32px;
  }

  .trading-description {
    font-size: 18px;
  }

  .trade-button {
    padding: 14px 30px;
    font-size: 20px;
  }

  .button-arrow {
    font-size: 24px;
  }

  .trading-features {
    gap: 25px;
  }

  .feature-icon {
    font-size: 36px;
  }

  .feature-item p {
    font-size: 16px;
  }
}

.button-section {
  width: 100%;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.cd-wrapper {
  flex-shrink: 0;
}

.cd-image {
  width: 700px;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.cd-image:hover {
  transform: scale(1.15) rotate(180deg);
}

.action-button {
  display: block;
  max-width: 600px;
  width: 100%;
  transition: transform 0.3s ease;
  transform: scale(1);
}

.action-button:hover {
  transform: scale(1.05);
}

.button-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .button-section {
    padding: 50px 30px;
  }
  
  .button-container {
    gap: 40px;
  }
  
  .cd-image {
    width: 150px;
  }
  
  .action-button {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .button-section {
    padding: 40px 20px;
  }
  
  .button-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .cd-image {
    width: 120px;
  }
  
  .action-button {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .button-section {
    padding: 30px 15px;
  }
  
  .button-container {
    gap: 20px;
  }
  
  .cd-image {
    width: 100px;
  }
}

/* AV-Text Section */
.av-text-section {
  width: 100%;
  padding: 90px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.av-text-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.av-text-row {
  display: flex;
  gap: 140px;
  width: 100%;
  justify-content: center;
}

.av-text {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.av-text:hover {
  transform: scale(1.12);
  filter: brightness(1.2);
}

.row-1 .av-text {
  flex: 0 0 auto;
  max-width: 88%;
  margin: 0 auto;
  margin-top: 45px;
  margin-bottom: 15px;
}

.row-2 .av-text {
  flex: 1;
  max-width: calc(40% - 10px);
  margin: 0 -70px;
  margin-top: -120px;
}

.row-3 .av-text {
  flex: 0 0 auto;
  max-width: 60%;
  margin-top: -100px;
}

@media (max-width: 1024px) {
  .av-text-section {
    padding: 100px 60px;
    margin-bottom: -50px;
  }
  
  .av-text-container {
    gap: 70px;
  }
  
  .av-text-row {
    gap: 80px;
  }
  
  .row-1 .av-text {
    max-width: 90%;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  
  .row-2 .av-text {
    max-width: calc(45% - 10px);
    margin: 0 -40px;
    margin-top: -80px;
  }
  
  .row-3 .av-text {
    max-width: 70%;
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  .av-text-section {
    padding: 40px 20px;
  }
  
  .av-text-container {
    gap: 40px;
  }
  
  .av-text-row {
    gap: 20px;
  }
  
  .row-1 {
    flex-direction: column;
    align-items: center;
  }
  
  .row-1 .av-text {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .row-2 {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
  }
  
  .row-2 .av-text {
    width: 57%;
    max-width: 48%;
    min-width: 0;
    margin: 0;
    flex: none;
  }
  
  .row-3 {
    flex-direction: column;
    align-items: center;
  }
  
  .row-3 .av-text {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .av-text:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 480px) {
  .av-text-section {
    padding: 70px 20px;
  }
  
  .av-text-container {
    gap: 5px;
  
  }
  
  .row-2 {
    gap: 0px;
  }
  
  .row-2 .av-text {
    max-width: 8%;
  }
  
  .row-3 .av-text {
    max-width: 30%;
  }
}

/* Newspaper Section */
.newspaper-section {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: -30px;
}

.newspaper-single-container {
  max-width: 1200px;
  width: 100%;
}

.newspaper-single:hover .newspaper-single-image {
  transform: scale(1.07) rotate(6deg);
}

@media (min-width: 769px) and (max-width: 1199px) and (orientation: portrait) {
  .newspaper-single-image {
    margin-bottom: -50px;
  }
}

@media (min-width: 769px) and (max-width: 1199px) and (orientation: landscape) {
  .newspaper-single-image {
    margin-top: 20px;
    width: 90%;
    margin-left: 65px;
  }
}

@media (max-width: 768px) {
  .newspaper-section {
    padding: 30px 15px;
    margin-bottom: 45px;;
  }
}

@media (max-width: 480px) {
  .newspaper-section {
    padding: 20px 0px;
    margin-top: -70px;
    
  }
}

/* Dashboard Section */
.dashboard-section {
  width: 100%;
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  margin-bottom: 50px;
  margin-top: -80px;
}

.dashboard-container {
  position: relative;
  max-width: 1300px;
  width: 100%;
}

.dashboard-bg {
  width: 100%;
  height: auto;
  display: block;
}

.dashboard-bg-portrait {
  display: none;
}

.dashboard-element {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 150px;
  transition: transform 0.3s ease;
}

.dashboard-element:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .dashboard-bg {
    display: none;
  }
  
  .dashboard-bg-portrait {
    display: block;
    width: 140%;
    height: auto;
    margin-top: -5px;
    margin-bottom: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.cta-button-section {
  width: 100%;
  padding: 40px 20px 60px 20px;
  margin-top: -150px;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .cta-button-section {
    padding: 30px 20px 50px 20px;
  }
}

@media (max-width: 480px) {
  .cta-button-section {
    padding: 20px 15px 40px 15px;
  }
}

/* VHS Section */
.vhs-stack a {
  display: block;
  text-decoration: none;
  margin: -1px;
  padding: 0;
  line-height: 0;
}

.vhs-stack a img {
  display: block; 
  margin: 0;
  padding: 0;
}

.vhs-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 55px;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: -50px;
  margin-bottom: -70px;
}

.vhs-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: 1 1 500px;
  padding: 10px;
}

.vhs-box {
  width: 100%;
  max-width: 900px;
  transition: all 0.3s ease;
  margin-left: 50px;
  filter: brightness(1);
  cursor: pointer;
}

.vhs-stack:hover .vhs-box:not(:hover) {
  filter: brightness(0.4);
  transform: scale(1);
}

.vhs-stack .vhs-box:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.vhs-static-wrap {
  flex: 1 1 250px;
  max-width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vhs-static {
  width: 100%;
  height: auto;
  max-width: 450px;
}

@media (min-width: 769px) and (max-width: 1199px) and (orientation: portrait) {
  .vhs-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 0;
    margin: 0 auto;
  }
  
  .vhs-stack {
    width: 90%;
    max-width: 90%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .vhs-box {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  
  .vhs-static-wrap {
    display: none !important; 
  }
  
  .vhs-static {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 1199px) and (orientation: landscape) {
  .vhs-section {
    flex-direction: row;
    align-items: flex-start;
    padding: 40px 55px;
    gap: 50px; 
    margin: 0 auto;
    margin-top: -60px;
    margin-bottom: -60px;
  }
  
  .vhs-stack {
    flex: 1 1 500px;
    max-width: none;
    padding: 10px;
  }

  .vhs-static {
    width: 96%;
    margin-right: 30px;
    display: block !important;
    max-width: none;
  }

  .vhs-box {
    width: 100%;
    margin-left: 100px;
    margin-right: 70px;
    max-width: 900px;
  }

  .vhs-static-wrap {
    flex: 1 1 250px;
    max-width: 460px; 
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .vhs-section {
    flex-direction: column;
    align-items: center;
    padding: 2px 0px;
    margin-bottom: -120px;
  }

  .vhs-stack,
  .vhs-static-wrap {
    max-width: 100%;
    flex: none;
  }

  .vhs-static {
    display: none !important;
  }
  
  .vhs-box {
    max-width: 100%;
    margin: auto;
  }
}