/*// valid static file*/

body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-container {
    min-height: 100vh;
    position: relative;
    padding: 60px 0;
    width: 100%;
    max-width: 100vw;
}

.radial {
    background: #fff;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #0000 60%);
    width: 1800px;
    height: 1800px;
    z-index: 0;
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
}
.radial.left {
    top: -900px;
    left: -900px;
}
.radial.right {
    bottom: -900px;
    right: -900px;
}

.hero-section {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 1;
    text-align: center;
  font-size: 4rem;
  color: #ff9700;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    background: #ff9700;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.hero-cta:hover {
    background: #e68722;
    transform: scale(1.05);
}

.shops-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.sort-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
}

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

.sort-btn {
    padding: 10px 20px;
    background: #2b2b2b;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #444;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.sort-btn:hover {
    border-color: #ff9700;
    background: #1a1a1a;
}

.sort-btn.active {
    background: #ff9700;
    border-color: #ff9700;
    color: #000;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px 0;
}

.page-btn {
    padding: 10px 20px;
    background: #2b2b2b;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    border: 1px solid #444;
    transition: all 0.3s;
}

.page-btn:hover {
    border-color: #ff9700;
    background: #1a1a1a;
    transform: translateY(-2px);
}

.page-info {
    color: #999;
    font-size: 0.9rem;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
    max-width: 100%;
    box-sizing: border-box;
}

.shop-bubble {
    padding: 25px;
    background: #151515;
    border-radius: 22px;
    border: 1px solid #2b2b2b;
    position: relative;
    transition: all 0.3s;
    display: block;
}
.shop-bubble:hover {
    border-color: #ff9700;
    transform: translateY(-5px);
}

a .shop-bubble {
    text-decoration: none;
}

.shop-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.shop-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
    object-fit: cover;
}

.shop-info {
    flex: 1;
}

.shop-name {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
}

.shop-title {
    font-size: 14px;
    color: #bbb;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-rating {
    color: #ff9700;
    font-weight: bold;
    margin-bottom: 10px;
}

.shop-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.verified-badge {
    background: #28a745;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    margin-left: 5px;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
    font-size: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    margin-top: 60px;
}

.footer > p {
    margin-bottom: 10px !important;
}

.footer-section {
    text-align: center;
    padding: 40px 20px;
    color: #aaa;
    font-size: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-links a {
    color: #ff9700;
    text-decoration: none;
}
.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .shops-grid { grid-template-columns: 1fr; }
    .hero-logo svg { width: 150px; }
    
    .sort-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sort-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sort-btn {
        flex: 1 1 calc(50% - 5px);
        min-width: 120px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 10px;
    }
    
    .page-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer {
        padding: 30px 15px;
        margin-top: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

body {
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  background-color: #000;
}

p {
  margin: 0;
}

.relative {
  position: relative;
}

.container {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1280px) {
  .container {
    width: 1200px;
  }
}

.rw {
  display: flex;
  flex-wrap: nowrap;
}

.flex {
  display: flex !important;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  flex-direction: row;
  flex-wrap: wrap;
}

.row_center {
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
}

.row_sb {
  justify-content: space-evenly;
}

.row_top {
  align-items: start;
}

.row_end {
  justify-content: flex-end;
}

.row_col {
  flex-direction: column;
}

.h100 {
  height: 100%;
}

@media screen and (min-width: 320px) {
  .row-1\@xs > * {
    width: 100%;
  }
  .row-1-2\@xs > * {
    width: 50%;
  }
  .row-1-3\@xs > * {
    width: 33.33%;
  }
  .row-1-4\@xs > * {
    width: 25%;
  }
  .row-1-5\@xs > * {
    width: 20%;
  }
  .row-1-6\@xs > * {
    width: 16.66%;
  }

  .col-1\@xs {
    width: 100%;
  }
  .col-0\@xs {
    display: none;
  }
  .col-1-2\@xs {
    width: 50%;
  }
  .col-1-3\@xs {
    width: 33.33%;
  }
  .col-2-3\@xs {
    width: 66.667%;
  }
}

@media screen and (min-width: 640px) {
  .row-1\@s > * {
    width: 100%;
  }
  .row-1-2\@s > * {
    width: 50%;
  }
  .row-1-3\@s > * {
    width: 33.33%;
  }
  .row-1-4\@s > * {
    width: 25%;
  }
  .row-1-5\@s > * {
    width: 20%;
  }
  .row-1-6\@s > * {
    width: 16.66%;
  }

  .col-1\@s {
    width: 100%;
  }
  .col-0\@s {
    display: none;
  }
  .col-1-2\@s {
    width: 50%;
  }
  .col-1-3\@s {
    width: 33.33%;
  }
  .col-2-3\@s {
    width: 66.667%;
  }
}

@media screen and (min-width: 960px) {
  .row-1\@m > * {
    width: 100%;
  }
  .row-1-2\@m > * {
    width: 50%;
  }
  .row-1-3\@m > * {
    width: 33.33%;
  }
  .row-1-4\@m > * {
    width: 25%;
  }
  .row-1-5\@m > * {
    width: 20%;
  }
  .row-1-6\@m > * {
    width: 16.66%;
  }

  .col-1\@m {
    width: 100%;
  }
  .col-0\@m {
    display: none;
  }
  .col-1-2\@m {
    width: 50%;
  }
  .col-1-3\@m {
    width: 33.33%;
  }
  .col-2-3\@m {
    width: 66.667%;
  }

  .pdd-sm-wrapper {
    margin-right: -10px;
    margin-left: -10px;
  }
  .pdd-sm {
    padding: 10px 10px;
  }

  .pdd-md-wrapper {
    margin-right: -15px;
    margin-left: -15px;
  }
  .pdd-md {
    padding: 15px 15px;
  }
}

@media screen and (min-width: 1280px) {
  .row-1\@l > * {
    width: 100%;
  }
  .row-1-2\@l > * {
    width: 50%;
  }
  .row-1-3\@l > * {
    width: 33.33%;
  }
  .row-1-4\@l > * {
    width: 25%;
  }
  .row-1-5\@l > * {
    width: 20%;
  }
  .row-1-6\@l > * {
    width: 16.66%;
  }

  .col-1\@l {
    width: 100%;
  }
  .col-0\@l {
    display: none;
  }
  .col-1-2\@l {
    width: 50%;
  }
  .col-1-3\@l {
    width: 33.33%;
  }
  .col-2-3\@l {
    width: 66.667%;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.orange {
  color: #e68722;
  letter-spacing: 0px;
}

.upp {
  text-transform: uppercase;
}

.m-1 {
  margin: 10px;
}
.mt-1 {
  margin-top: 10px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mr-1 {
  margin-right: 10px;
}
.ml-1 {
  margin-left: 10px;
}
.m-2 {
  margin: 20px;
}
.mt-2 {
  margin-top: 20px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mr-2 {
  margin-right: 20px;
}
.ml-2 {
  margin-left: 20px;
}
.m-3 {
  margin: 30px;
}
.mt-3 {
  margin-top: 30px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mr-3 {
  margin-right: 30px;
}
.ml-3 {
  margin-left: 30px;
}

.img-cover {
  overflow: hidden;
}

.img-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.steppe {
  font-family: "Steppe", Helvetica, sans-serif;
}

.loading-page-wr {
  overflow: hidden;
  position: relative;
}

.loading-page {
  box-sizing: border-box;
  padding: 60px 0px;
}

.loading-page .logo img {
  width: 200px;
}

.loading-page .announce {
  margin-top: 90px;
}

.loading-page .announce .announce-header img {
  border-radius: 50px;
  overflow: hidden;
  width: 58px;
  height: 58px;
}

.loading-page .announce .announce-header .name {
  color: #fff;
  font-size: 24px;
  margin-bottom: 0;
  font-weight: bold;
}

.loading-page .announce .announce-body {
  margin-top: 26px;
  font-size: 18px;
}

.bubble {
  padding: 30px;
  width: auto;
  position: relative;
  background: #151515;
  border-radius: 22px;
  border: 1px solid #2b2b2b;
}

@media (max-width: 640px) {
  .bubble {
    padding: 20px;
    margin-left: 20px;
  }

  .loading-page .logo img {
    width: 150px;
  }

  .loading-page .announce {
    margin-top: 70px;
  }

  .loading-page .announce .announce-header img {
    width: 40px;
    height: 40px;
  }

  .loading-page .announce .announce-header .name {
    margin-left: 16px;
    font-size: 15px;
    margin-top: 0px;
  }

  .loading-page .announce .announce-body {
    margin-top: 16px;
    font-size: 12px;
  }
}

.bubble:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 20px solid transparent;
  border-right: 20px solid #2b2b2b;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  top: 20%;
  left: -40px;
}

.bubble:after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 20px solid transparent;
  border-right: 20px solid #151515;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  top: 20%;
  left: -38px;
}

.radial {
  background: #fff;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #0000 60%);
  width: 1800px;
  height: 1800px;
  z-index: -1;
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}

.radial.left {
  top: -900px;
  left: -900px;
}

.radial.right {
  bottom: -900px;
  right: -900px;
}

.pow-loading-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.pow-progress {
  background-color: #282828;
  border-radius: 20px;
  margin-block: 20px;
}

.pow-bar {
  width: 60%;
  height: 8px;
  background-color: #ff9700;
  border-radius: 20px;
  transition: width 0.5s ease-in-out;
}
.logo {
  color: #efefef;
  font-size: 3rem;
  font-family: sans-serif;
  font-weight: bold;
}
.logo .orange {
  margin-right: .4rem;
  font-size: 2.85rem;
}


.shyfr {
    font-size: 2rem;
    text-align: center;

    width: 100%;
    white-space: nowrap;
    color: #bbb;
}

@media screen and (max-width:767px){
  .shyfr {
      font-size: 1.5rem;
  }
  
  .shops-grid {
      grid-template-columns: 1fr;
      padding: 20px 10px;
  }
  
  .shops-section {
      padding: 0 10px;
  }
}