/* Reset & Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font Awesome Icons */
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 550;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header - Modern Redesign */
.header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1.5px solid #eaeaea;
    box-shadow: 0 2px 16px rgba(44,62,80,0.06);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 76px;
    transition: background 0.2s, box-shadow 0.2s;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}
.header__logo img {
    height: 68px;
    width: auto;
    display: block;
    object-fit: contain;
    margin: 0;
}
.header__nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}
.header__nav a {
    text-decoration: none;
    color: #23272f;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
    padding: 6px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.header__nav a:hover, .header__nav a.active {
    color: #df5043;
    background: rgba(231,76,60,0.08);
}
.languages {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #f4f6fa;
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 14px;
}
.languages a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.languages a.active, .languages a:hover {
    color: #df5043;
    background: #fbeaea;
}
.button {
    margin-left: 1.5rem;
}
@media (max-width: 900px) {
    .header__inner {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
    }
    .header {
        height: auto;
        padding-bottom: 0.5rem;
    }
    .header__logo img {
        height: 54px;
    }
    .header__nav ul {
        gap: 1.2rem;
    }
    .button {
        margin-left: 0.5rem;
    }
}
@media (max-width: 600px) {
    .header__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        height: auto;
    }
    .header__logo img {
        height: 40px;
    }
    .header__nav ul {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    .button {
        width: 100%;
        margin: 0.5rem 0 0 0;
    }
}

/* Hero Section Layout */
.hero-screen {
    margin-top: 80px;
    padding: 120px 0 100px 0;
    background: linear-gradient(135deg, #df5043 0%, #3498db 100%);
    color: white;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}
.hero__text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-buy-btn {
    font-size: 1.25rem;
    padding: 18px 48px;
    border-radius: 32px;
    font-weight: 700;
    margin-top: 2rem;
    box-shadow: 0 6px 24px rgba(52,152,219,0.18);
    background: linear-gradient(135deg, #df5043, #3498db);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-block: auto;

}
.hero-buy-btn:hover {
    background: linear-gradient(135deg, #c0392b, #2980b9);
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(52,152,219,0.22);
}
@media (max-width: 900px) {
    .hero__inner {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-screen {
        padding: 80px 0 60px 0;
        min-height: 350px;
    }
}
.fade-init {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-in {
    opacity: 1 !important;
    transform: none !important;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(24px) brightness(0.7);
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s;
}
.hero-bg.active {
    opacity: 1;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%) scale(1);
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    z-index: 2;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.23, 1, 0.32, 1), transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: translate(-50%, -50%) scale(1.02);
    pointer-events: auto;
}
.hero-slider img {
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    object-fit: contain;
    width: 100%;
    height: 100%;
    background: #fff;
    display: block;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .hero-slider {
        min-height: 220px;
    }
    .hero-slide {
        max-width: 98vw;
        max-height: 60vw;
    }
}
/* Xoá style hero-img-single */
.hero-img-single { display: none !important; }

/* Common Components */
.button {
    background: linear-gradient(135deg, #1f23bf, #0be5b9);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s;
    margin-block: auto;
}

.button:hover {
    background: linear-gradient(135deg, #c0392b, #2980b9);
    transform: translateY(-2px);
}

.button_table {
    padding: 8px 16px;
    font-size: 14px;
}

.button_disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Typography */
.h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.blue {
    color: #3498db;
}

.red {
    color: #df5043;
}

/* Accounts Section */
.accounts {
    padding: 4rem 0;
    background: white;
}

/* Add horizontal scroll wrapper for accounts table */
.accounts-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-text {
    font-weight: 500;
}

.filter {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
}

.accounts-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: inherit;
    background: #fff;
    box-shadow: 0 2px 12px rgba(52,152,219,0.06);
    border-radius: 12px;
    overflow: hidden;
}
.accounts-table th,
.accounts-table td {
    text-align: center;
}
.accounts-table th {
    background: #3498db;
    color: #fff;
    font-weight: 700;
    padding: 16px 8px;
    border: none;
    font-size: 1.08rem;
}
.accounts-table td {
    background: #fff;
    padding: 16px 10px;
    border-top: 1px solid #f0f0f0;
    font-size: 1.05rem;
    vertical-align: middle;
}

/* Type badge styling */
.type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: #3498db;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.type-badge.coomeet {
    background: #3498db;
}

.type-badge.strangercam {
    background: #9b59b6;
}

.type-badge.instacams {
    background: #f39c12;
}

.type-badge.chaturbate {
    background: #1abc9c;
}
.accounts-table tr:first-child td {
    border-top: none;
}
.status-badge {
    display: inline-block;
    padding: 4px 18px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #2ecc71;
    letter-spacing: 0.01em;
    box-shadow: none;
}
.status-available {
    background: #2ecc71;
}
.status-sold {
    background: #df5043;
}
.buy-btn {
    background: #34db59;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(52,152,219,0.08);
    margin: 0 auto;
    display: block;
}
.buy-btn:hover:not([disabled]) {
    background: #217dbb;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(52,152,219,0.16);
}
.buy-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
@media (max-width: 700px) {
    .accounts-table th, .accounts-table td {
        padding: 10px 4px;
        font-size: 0.98rem;
    }
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.about__advantages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px; /* Adjust as needed */
}

.advantage__item {
    text-align: center;
    padding: 2rem;
    background: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.advantage__item:hover {
    transform: translateY(-5px);
}

.advantage__item img {
    max-height: 51px;
    margin-bottom: 1rem;
    user-select: none;
}

.advantage__icon {
    font-size: 45px; /* Match size of images */
    color: #0d0d0e; /* Match color of other icons */
    margin-bottom: 1rem;
    display: block;
}

.advantage__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.advantage__text {
    color: #666;
    line-height: 1.5;
}

/* About Section - Minimal Version */
.about__advantages.minimal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 0 auto;
  max-width: 700px;
}
.advantage__item {
  background: none;
  box-shadow: none;
  border-radius: 8px;
  padding: 1rem 0.5rem;
  min-width: 110px;
  flex: 1 1 120px;
  text-align: center;
}
.advantage__item img, .advantage__icon {
  max-height: 32px;
  margin-bottom: 0.3rem;
}
.advantage__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.advantage__text {
  font-size: 0.92rem;
  color: #666;
}

/* SEO Why Buy Box in About Section */
.about__whybuy.seo-whybuy-box {
  background: #f8fbff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(52,152,219,0.06);
  padding: 0.7rem 1rem 0.7rem 1rem;
  margin: 1.1rem 0 0.2rem 0;
  min-width: unset;
  max-width: 340px;
  font-size: 0.97rem;
}
.about__whybuy.seo-whybuy-box h3 {
  font-size: 1.01rem;
  color: #2980d9;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.about__whybuy.seo-whybuy-box ul {
  padding-left: 1.1em;
  margin: 0;
  font-size: 0.97rem;
  color: #222;
  line-height: 1.6;
}
.about__whybuy.seo-whybuy-box li {
  margin-bottom: 0.1em;
  list-style: none;
  padding-left: 0;
}
.about__whybuy.seo-whybuy-box li:before {
  content: '';
}
@media (max-width: 900px) {
  .about__whybuy.seo-whybuy-box {
    margin: 1.1rem 0 0.2rem 0;
    max-width: 100%;
  }
}

/* SEO How Buy Note under Accounts */
.seo-howbuy-note {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #f8fbff;
  border-radius: 7px;
  box-shadow: 0 1px 6px rgba(52,152,219,0.04);
  padding: 0.5em 0.9em;
  margin: 0.7em 0 0.3em 0;
  font-size: 1.07rem;
  font-weight: 500;
  color: #222;
}
.howbuy-title {
  color: #2980d9;
  font-weight: 700;
  margin-right: 0.4em;
  font-size: 1.08em;
}
.howbuy-desc a {
  color: #3498db;
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .seo-howbuy-note {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.99rem;
    padding: 0.5em 0.5em;
  }
  .howbuy-title {
    margin-bottom: 0.15em;
  }
}

/* SEO Text Section */
.seo-text {
    padding: 3rem 0;
    background: #f8f9fa;
}

.text__inner {
    max-width: 800px;
    margin: 0 auto;
}

.text__inner h2 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text__inner p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.text__inner ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.text__inner li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Reviews Section */
#reviews {
    padding: 4rem 0;
    background: white;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.wrapper__item {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #df5043;
    transition: transform 0.3s;
}

.wrapper__item:hover {
    transform: translateY(-5px);
}

.review__name {
    font-weight: 600;
    color: #df5043;
    margin-bottom: 0.5rem;
}

.review__date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.review__text {
    line-height: 1.6;
    color: #333;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq__wrapper {
    margin-top: 2rem;
}

.faq__item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #3498db;
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: white;
    transition: background 0.3s;
}

.faq__question:hover {
    background: #f8f9fa;
}

.faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: #f8f9fa;
}

.faq__answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: #df5043;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

/* Footer - Modern Redesign */
.footer {
    background: #23272f;
    color: #fff;
    border-radius: 24px 24px 0 0;
    margin: 4rem auto 0 auto;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
    padding: 3rem 2rem 1.5rem 2rem;
}

.footer__inner {
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
    justify-content: space-between;
    padding: 2.2rem 0 1.2rem 0;
}

.footer__section {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 180px;
}

.footer__section h3 {
    margin-bottom: 1rem;
    color: #ff5e3a;
    letter-spacing: 1px;
    font-size: 1.18rem;
    font-weight: 700;
}

.footer__section p {
    margin-bottom: 0.7rem;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    object-fit: contain;
}

.footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__nav li {
    margin-bottom: 0.5rem;
}

.footer__nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: #ffb347;
}

.button_telegram {
    background: linear-gradient(135deg, #3498db, #df5043);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(52,152,219,0.08);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.button_telegram:hover {
    background: linear-gradient(135deg, #2980b9, #c0392b);
    box-shadow: 0 4px 16px rgba(52,152,219,0.16);
}

.footer__bottom {
    margin-top: 1.5rem;
    border-top: 1px solid #333a;
    padding-top: 1rem;
    text-align: center;
    color: #bdbdbd;
    font-size: 0.98rem;
}

@media (max-width: 1024px) {
    .footer__inner {
        gap: 1.2rem;
    }
    .footer__section {
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.2rem 0 0.5rem 0;
    }
    .footer__section {
        min-width: 0;
        margin-bottom: 0.5rem;
    }
    .footer__social.compact {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 0.5rem;
        margin-top: 0.2rem;
    }
    .footer-logo {
        height: 50px;
        margin: 0 auto 1rem auto;
    }
}

@media (max-width: 500px) {
    .footer__social.compact {
        grid-template-columns: 1fr;
    }
    .footer-logo {
        height: 45px;
    }
}

/* Mobile menu */
.header__burger {
    display: none;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header__nav,
    .languages {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .hero__inner,
    .about__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .h1 {
        font-size: 2rem;
    }

    .h2 {
        font-size: 1.8rem;
    }

    .about__advantages {
        grid-template-columns: 1fr;
    }

    .table {
        font-size: 0.9rem;
    }

    .table th,
    .table td {
        padding: 0.5rem;
    }

    .promo__inner {
        flex-direction: column;
        text-align: center;
    }

    .promo__img {
        width: 100px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Decorative circles */
.circle {
    position: fixed;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.circle_red {
    width: 300px;
    height: 300px;
    background: #df5043;
    top: 20%;
    right: -150px;
}

.circle_blue {
    width: 200px;
    height: 200px;
    background: #3498db;
    bottom: 20%;
    left: -100px;
}

/* Footer Contact Buttons */
.footer__contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.footer__contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #23272f;
    color: #fff;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(44,62,80,0.08);
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
}
.footer__contact-btn span {
    font-size: 1.2em;
}
.footer__contact-btn.telegram {
    background: linear-gradient(135deg, #229ED9, #43e97b);
    color: #fff;
}
.footer__contact-btn.messenger {
    background: linear-gradient(135deg, #0084FF, #00C6FF);
    color: #fff;
}
.footer__contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}
.footer__contact-btn:hover {
    filter: brightness(1.08) saturate(1.2);
    box-shadow: 0 4px 16px rgba(44,62,80,0.16);
    border: 2px solid #fff;
    color: #23272f;
}
.footer__contact-btn.telegram:hover,
.footer__contact-btn.messenger:hover,
.footer__contact-btn.whatsapp:hover {
    color: #fff;
    border: 2px solid #fff;
}
@media (max-width: 600px) {
    .footer__contact-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer__contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Remove old promo styles */
.promo, .promo__inner, .promo__img, .promo__text, .promo__title, .promo__description, .promo__btn { display: none !important; }

/* Fun Fact Section */
.fun-fact-section {
    padding: 3rem 0 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 60%, #e3f0ff 100%);
}
.fun-fact-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(52,152,219,0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    position: relative;
}
.fun-fact-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #df5043 40%, #3498db 100%);
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(52,152,219,0.10);
    margin-bottom: 0.5rem;
}
.fun-fact-text {
    font-size: 1.25rem;
    color: #333;
    text-align: center;
    font-weight: 500;
    min-height: 48px;
    transition: opacity 0.35s;
    opacity: 1;
}
.fun-fact-text.fade-in {
    opacity: 1;
    transition: opacity 0.35s;
}
.fun-fact-text.fade-out {
    opacity: 0;
    transition: opacity 0.35s;
}
.fun-fact-refresh {
    background: linear-gradient(135deg, #3498db, #df5043);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(52,152,219,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.fun-fact-refresh:hover {
    background: linear-gradient(135deg, #2980b9, #c0392b);
    box-shadow: 0 4px 16px rgba(52,152,219,0.16);
}
@media (max-width: 600px) {
    .fun-fact-box {
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }
    .fun-fact-text {
        font-size: 1.05rem;
    }
}

/* Footer Social Buttons */
.footer__social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.footer__social-btn {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer__social-btn i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

.footer__social-btn span {
    font-size: 1rem;
}

.footer__social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.footer__social-btn.telegram {
    background: linear-gradient(45deg, #229ED9, #1E88C3);
}

.footer__social-btn.messenger {
    background: linear-gradient(45deg, #0084FF, #0073E6);
}

.footer__social-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

@media (max-width: 768px) {
    .footer__social {
        grid-template-columns: 1fr;
    }
    
    .footer__social-btn {
        padding: 0.8rem;
    }
    
    .footer__social-btn i {
        font-size: 1.3rem;
    }
    
    .footer__social-btn span {
        font-size: 0.9rem;
    }
}

/* Footer Social Buttons - Compact Version */
.footer__social.compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1rem;
    justify-items: stretch;
    align-items: center;
    margin-top: 0.5rem;
}
.footer__social.compact .footer__social-btn {
    min-width: 0;
    width: 100%;
    padding: 0.5rem 0.7rem;
    font-size: 0.97rem;
    border-radius: 10px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    gap: 0.5rem;
}
.footer__social.compact .footer__social-btn i {
    font-size: 1.15rem;
    margin-right: 0.3rem;
}
.footer__social.compact .footer__social-btn span {
    font-size: 0.97rem;
}
@media (max-width: 768px) {
    .footer__social.compact {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 0.5rem;
        margin-top: 0.2rem;
    }
    .footer__social.compact .footer__social-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }
}

.icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: middle;
}

/* Sort By Dropdown Styles */
#sortSelect {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #2c3e50;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    margin-left: 0.5rem;
}
#sortSelect:focus {
    border-color: #3498db;
    box-shadow: 0 4px 16px rgba(52,152,219,0.12);
}

@media (max-width: 600px) {
    #sortSelect {
        font-size: 0.98rem;
        padding: 7px 12px;
    }
    .hero__img img {
        max-width: 90vw;
    }
}

/* BUY MODAL PROFESSIONAL UPGRADE */
.buy-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 34, 40, 0.65);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  backdrop-filter: blur(4px);
}
.buy-modal.active {
  display: flex;
}
.buy-modal-content {
  background: #fff;
  border-radius: 28px;
  max-width: 98vw;
  width: 540px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 12px 48px 0 rgba(44,62,80,0.22);
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.buy-modal-content h3 {
  font-size: 2rem;
  color: #23272f;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.buy-modal-content p {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.13rem;
}
.contact-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.contact-btns a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #f4f6fa;
  color: #23272f;
  border-radius: 14px;
  padding: 20px 0;
  font-size: 1.18rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(44,62,80,0.10);
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
  justify-content: center;
}
.contact-btns a.telegram { background: linear-gradient(135deg, #229ED9, #43e97b); color: #fff; }
.contact-btns a.messenger { background: linear-gradient(135deg, #0084FF, #00C6FF); color: #fff; }
.contact-btns a.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; }
.contact-btns a i {
  font-size: 1.5em;
  margin-right: 0.7em;
}
.contact-btns a:hover {
  filter: brightness(1.08) saturate(1.2);
  box-shadow: 0 6px 24px rgba(44,62,80,0.18);
  border: 2px solid #df5043;
}
.modal-close-btn {
  margin-top: 0.7rem;
  background: linear-gradient(135deg, #df5043, #3498db);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 48px;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(52,152,219,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.modal-close-btn:hover {
  background: linear-gradient(135deg, #c0392b, #2980b9);
  box-shadow: 0 6px 24px rgba(52,152,219,0.18);
}
@media (max-width: 700px) {
  .buy-modal-content {
    width: 99vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .contact-btns {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .contact-btns a {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 13px 0;
  }
}

/* === About Page Styles === */
.about-nav {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 18px 0;
  text-align: center;
  margin-bottom: 32px;
}
.about-nav a {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  margin: 0 12px;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.about-nav a:hover, .about-nav a.active {
  color: #df5043;
}
.about-main {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(52,152,219,0.08);
  padding: 2.5rem 2rem 2rem 2rem;
}
.about-main h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #df5043;
  margin-bottom: 1.2rem;
  text-align: center;
}
.about-main h2 {
  color: #3498db;
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
.about-main ul {
  margin-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.about-main li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.about-main p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.about-footer {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  margin: 2.5rem 0 1rem 0;
}
@media (max-width: 600px) {
  .about-main {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    margin: 20px 0 0 0;
  }
  .about-main h1 {
    font-size: 1.5rem;
  }
}

/* SEO Quick Info Section */
.seo-quick-info, .seo-bottom-info {
  background: #f8fbff;
  border-radius: 12px;
  margin: 2.5rem 0 2rem 0;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 12px rgba(52,152,219,0.07);
}
.seo-quick-info h3, .seo-bottom-info h3 {
  color: #2980d9;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.seo-quick-info p, .seo-bottom-info p {
  color: #222;
  font-size: 1.07rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.seo-quick-info b, .seo-bottom-info b {
  color: #e67e22;
  font-weight: 600;
}
@media (max-width: 600px) {
  .seo-quick-info, .seo-bottom-info {
    padding: 1rem;
  }
  .seo-quick-info h3, .seo-bottom-info h3 {
    font-size: 1.2rem;
  }
}

/* Categories Section */
.categories {
    background: #fff;
    padding: 3rem 0;
}

.categories__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(52,152,219,0.06);
}

.category-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}

.category-card.active {
    border-color: #3498db;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.category-card__logo {
    width: 100px;
    height: 90px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    object-fit: fill;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.category-card.active .category-card__logo {
    border-color: #3498db;
}

.category-card__name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.category-card__description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.4;
    min-height: 40px; /* To align heights */
}

.category-card__count {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .categories__wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    .category-card {
        padding: 1.2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 700px) {
    .categories__wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
        padding: 0 0.5rem;
    }
    .category-card {
        padding: 0.8rem;
    }
}

/* Accounts Header */
.accounts__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 2px solid #e0e0e0;
}

.accounts__header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
}

.accounts__filters {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accounts__filters label {
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .accounts__header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .accounts__header h3 {
        font-size: 1.5rem;
    }
    
    .accounts__filters {
        width: 100%;
    }
    
    .accounts__filters select {
        flex: 1;
    }
}

/* Mini Category Menu */
.mini-category-menu {
    margin: 1.5rem 0;
    padding: 0.5rem 0;
}

.mini-category-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.mini-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.mini-category-btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    color: #212529;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mini-category-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(223, 80, 67, 0.2);
}

.mini-category-btn.active,
.mini-category-btn:active {
    background: #3498db !important;
    border-color: #3498db !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3) !important;
    transform: translateY(-1px);
}

.mini-category-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.mini-category-btn .category-name,
.mini-category-btn .category-count {
    position: relative;
    z-index: 1;
}

.mini-category-btn .category-name {
    font-weight: 600;
}

.mini-category-btn .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.mini-category-btn.active .category-count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.mini-category-btn.active .category-name {
    color: white;
}

.mini-category-btn.active img {
    filter: brightness(1.1);
}

/* Ripple effect for mini category buttons */
.mini-category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mini-category-btn:active::before {
    width: 300px;
    height: 300px;
}

.mini-category-btn--disabled,
.mini-category-btn:disabled {
    background: #f1f1f1 !important;
    border-color: #e0e0e0 !important;
    color: #bbb !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    box-shadow: none !important;
    pointer-events: none;
}

@media (max-width: 768px) {
    .mini-category-wrapper {
        gap: 0.4rem;
    }
    
    .mini-category-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .mini-category-btn img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 600px) {
    .mini-category-wrapper {
        justify-content: center;
    }
    
    .mini-category-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .mini-category-btn:active::before {
        width: 200px;
        height: 200px;
    }
} 

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    opacity: 1;
    visibility: visible;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

/* Sexy Loader Styles */
#sexy-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
  opacity: 1;
}
.boobs-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.boobs-container {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  transform: scale(0.9);
}
.boob {
  width: 80px !important;
  height: 90px !important;
  background: linear-gradient(135deg, #ffb6e6, #b39ddb, #ffd6e0) !important;
  border-radius: 50% 50% 55% 55% !important;
  position: relative;
  animation: bounce 1.2s infinite alternate cubic-bezier(.45,.05,.55,.95);
  box-shadow: 0 6px 18px rgba(179,157,219,0.18);
  transform-origin: bottom center;
}
.nipple {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 60% 60%, #ffc7de 60%, #bea5dc 100%);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 1px 4px rgb(185 159 220);
    border: 2px solid rgb(210 167 224);
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* Footer Social Buttons */
.footer__social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.footer__social-btn {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer__social-btn i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

.footer__social-btn span {
    font-size: 1rem;
}

.footer__social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.footer__social-btn.telegram {
    background: linear-gradient(45deg, #229ED9, #1E88C3);
}

.footer__social-btn.messenger {
    background: linear-gradient(45deg, #0084FF, #0073E6);
}

.footer__social-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

@media (max-width: 768px) {
    .footer__social {
        grid-template-columns: 1fr;
    }
    
    .footer__social-btn {
        padding: 0.8rem;
    }
    
    .footer__social-btn i {
        font-size: 1.3rem;
    }
    
    .footer__social-btn span {
        font-size: 0.9rem;
    }
}

/* Footer Social Buttons - Compact Version */
.footer__social.compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 1rem;
    justify-items: stretch;
    align-items: center;
    margin-top: 0.5rem;
}
.footer__social.compact .footer__social-btn {
    min-width: 0;
    width: 100%;
    padding: 0.5rem 0.7rem;
    font-size: 0.97rem;
    border-radius: 10px;
    margin: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    gap: 0.5rem;
}
.footer__social.compact .footer__social-btn i {
    font-size: 1.15rem;
    margin-right: 0.3rem;
}
.footer__social.compact .footer__social-btn span {
    font-size: 0.97rem;
}
@media (max-width: 768px) {
    .footer__social.compact {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 0.5rem;
        margin-top: 0.2rem;
    }
    .footer__social.compact .footer__social-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }
}

.icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    margin-right: 0.5em;
    vertical-align: middle;
}

/* Sort By Dropdown Styles */
#sortSelect {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #2c3e50;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    margin-left: 0.5rem;
}
#sortSelect:focus {
    border-color: #3498db;
    box-shadow: 0 4px 16px rgba(52,152,219,0.12);
}

@media (max-width: 600px) {
    #sortSelect {
        font-size: 0.98rem;
        padding: 7px 12px;
    }
    .hero__img img {
        max-width: 90vw;
    }
}