/* Basic reset */
body {
    margin: 0;
    font-family: var(--fontFamily);
    font-size: var(--fontSize);
}

#site-header {
    display: flex;
    align-items: center;
    background: #fff;
    /*padding: 10px;*/
    position: sticky;
    top: 0;
    z-index: 20;
}

#burger {
    cursor: pointer;
    font-size: 30px;
    padding: 8px;
    color: var(--defaultHiliteColor);
}

#header-logo img {
    height: 36px;
    margin-left: 10px;
}

#header-search {
    margin-left: auto;
    display: flex;
    gap: 5px;
}

#header-search input {
    padding: 6px 10px;
    background-color: color-mix(in srgb, black 25%, var(--headerBgColor));
    border-radius: 19px;
    border: none;
    line-height: 1.15;
}

#header-search button {
    /*
    position: absolute;
    right: 0;
    top: 0;
    */
    width: 39px;
    height: 39px;
    background-color: rgba(0,0,0,0);
    border: none;
    z-index: 1;
    cursor: pointer;
    opacity: 40%;
}

#header-search button svg {
    fill: black;
    width: 20px;
    height: 20px;
}

/* Top Menu */
#top-menu {
    display: flex;
    gap: 15px;
    padding: 10px;
    flex-wrap: wrap;
}

#top-menu .dropdown {
    position: relative;
    cursor: pointer;
    color: var(--defaultHiliteColor);
}

#top-menu .dropdown-items {
    display: none;
    /*border: 1px solid #ccc;*/
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 140px;
    z-index: 40;
}

#top-menu .dropdown-items a {
    display: block;
    padding: 8px;
    text-decoration: none;
}

/* Sidebar */
#sidebar {
    position: fixed;
    left: -260px;
    top: 0;
    width: 250px;
    height: 100%;
    background: #fafafa;
    padding-top: 40px;
    transition: left 0.25s ease;
    overflow-y: auto;
    z-index: 30;
}

#sidebar.open {
    left: 0;
}

.sidebar-item,
.sidebar-label {
    padding: 12px 15px;
    display: block;
}

.sidebar-label {
    font-weight: bold;
    background: #f3f3f3;
}

/* Sidebar adverts */
.sidebar-advert img {
    width: 100%;
    height: auto;
    display: block;
}

/* Submenu */
.submenu-items {
    display: none;
    background: white;
    border-left: 3px solid #ccc;
}

.submenu-link {
    padding: 10px 20px;
    display: block;
    text-decoration: none;
}

/* Content */
#content-wrapper {
    padding: 15px;
    margin-left: 0;
    transition: margin-left 0.25s;
}

#content-wrapper.withSidebar {
    margin-left: 250px;
}

/* Responsive */
@media (max-width: 900px) {
    #content-wrapper.withSidebar {
        margin-left: 0;
    }

    #header-search {
        max-width: 50%;
    }
}

@media (max-width: 600px) {
    #header-search {
        flex-grow: 1;
        max-width: none;
    }

    #header-logo img {
        height: 28px;
    }
}

/* ========================================= */
/* COLORS */
/* ========================================= */

#site-header {
    background-color: var(--headerBgColor);
}
#sidebar, #sidebar .sidebar-label{
    background-color: var(--sidebarBgColor);
    color: var(--defaultHiliteColor);
}
#top-menu {
    background: var(--headerMenuBgColor);
}
#content-wrapper {
    background-color: var(--defaultBgColor);
    color: var(--defaultHiliteColor);
}
.submenu-items, .dropdown-items {
    background-color: color-mix(in srgb, white 3%, var(--sidebarBgColor));
    backdrop-filter: blur(2px);
    border-radius: 4px;
}
a {
    color: var(--defaultHiliteColor);
}

/* ========================================= */
/* DARK THEME */
/* ========================================= */


body.dark {
    --header-bg-color: #222; --sidebar-bg-color: #181818; --tab-bg-color: #333; --tab-active-bg-color: #888;
    --tab-text-color: #eee; --tab-active-text-color: #fff; --content-bg-color: #111;
}
body.dark #site-header,
body.dark #top-menu,
body.dark #sidebar {
    background-color: #222;
}
body.dark #content-wrapper {
    color: #eee;
}
body.dark a {
    color: #eee;
}
.svg-button svg {
    stroke: currentColor;
    fill: none;
}

body.dark {
    background: #111;
    color: #eee;
}

body.dark #site-header {
    background: #222;
    border-bottom-color: #444;
}

body.dark #top-menu {
    background: #1b1b1b;
    border-bottom-color: #444;
}

body.dark #top-menu .dropdown-items {
    background: #222;
    border-color: #555;
}

body.dark #sidebar {
    background: #181818;
    border-right-color: #444;
}

body.dark .sidebar-item,
body.dark .sidebar-label,
body.dark .submenu-link {
    border-bottom-color: #333;
    color: #ddd;
}

body.dark .sidebar-label {
    background: #202020;
}

body.dark #content-wrapper {
    background: #111;
    color: #eee;
}
body.dark #burger {
    color: #ddd;
}

body.dark #header-search input {
    background: #444;
}

/* ========================================= */
/* MOBILE MODE (Manual override) */
/* ========================================= */

body.mobile-mode #content-wrapper {
    margin-left: 0 !important;
}

body.mobile-mode #sidebar {
    left: -260px !important; /* always hidden until tapped */
}

body.mobile-mode #sidebar.open {
    left: 0 !important;
}

body.mobile-mode #site-header {
    flex-wrap: wrap;
}

body.mobile-mode #header-search {
    width: 100%;
    margin-top: 8px;
}

body.mobile-mode #top-menu {
    flex-direction: column;
    gap: 8px;
}

.svg-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 10px;
    color: #333;
    transition: color 0.25s;
}

.svg-button:hover {
    color: var(--headerBgColor);
}

body.dark .svg-button {
    color: #eee;
}

/* Remove underline from links in menus */
#top-menu a,
#sidebar a {
    text-decoration: none;
    /*color: inherit; darkmode?*/
}

#top-menu a:hover,
#sidebar a:hover {
    text-decoration: none; /* ensures hover doesn't add underline */
    color: var(--headerBgColor);
}

#sidebar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 50;
}

body.dark #sidebar-close {
    color: #eee; /* optional if you want it slightly brighter in dark mode */
}

#sidebar-close svg {
    width: 24px;
    height: 24px;
}

#sidebar {
    transition: left 0.25s ease;
}

#sidebar.open {
    left: 0;
}

.thumb {
    width: 40px;
}

/* reduce sidebar items spacing */

.sidebar-item,
.sidebar-label {
    border-bottom: none; /* removes line */
    padding: 8px 12px; /* smaller spacing */
}


.submenu-items {
    border-left: none;
    margin: 0;
    padding: 0;
}
.submenu-link {
    padding: 6px 12px; /* tighter spacing */
    border-bottom: none;
}

/* webcamsIndex */

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    padding: 15px;
}

.model-card {
    background-color: var(--sidebarBgColor); /* or another card bg color */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.model-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.model-card a {
    color: inherit;
    text-decoration: none;
}

.model-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* square aspect ratio */
    overflow: hidden;
}

.model-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-status {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8em;
    text-transform: uppercase;
}

.model-info {
    padding: 8px 10px;
}

.model-nickname {
    margin: 0;
    font-size: 1em;
    font-weight: bold;
}

.model-info {
    margin: 0;
    font-size: 0.85em;
    color: #ccc;
}

/* Grid with variable cell sizes */
.models-grid {
    display: grid;
    gap: 15px;
    padding: 15px;
}



.model-card .model-img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.25s ease;
}

.model-card .model-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

/*
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    */
}

.model-card:hover .model-img {
    transform: scale(1.05);
}

/* **** TOP-LEFT BADGE (STAR / FLAG / ICON) **** */
.model-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 5;
}

.model-badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* **** BOTTOM OVERLAY AREA **** */
.model-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
    padding: 8px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: end;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0)
    );
}

.model-info {
    display: flex;
    flex-direction: column;
}

.model-name {
    font-size: 1.1em;
    font-weight: 600;
}

.model-age {
    font-size: 0.95em;
    opacity: 0.9;
}

/* "Similar" link inside overlay */
.model-similar {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
    text-decoration: none;
    color: white;
    font-size: 0.85em;
    backdrop-filter: blur(2px);
    transition: background 0.2s;
}

.model-similar:hover {
    background: rgba(255,255,255,0.35);
}


.models-grid.small {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.models-grid.medium {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.models-grid.large {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-link {
    padding: 6px 12px;
    background: var(--sidebarBgColor);
    color: var(--defaultHiliteColor);
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.page-link:hover {
    background: rgba(255,255,255,0.2);
}

.page-link.active {
    background: #1e90ff;
    color: #fff;
}

/* webcamsProfile */

.offline-banner {
  background: #222;
  color: #ff4c4c;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 15px;
}

.offline-banner .last-online {
  color: #bbb;
  font-weight: 400;
  margin-left: 8px;
}

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

.profile-video {
    margin-left: 2%;
    margin-right: 2%;
}

.profile-video iframe {
    /*width: 100%;*/
    height: 651px;
    border: none;
    border-radius: 8px;
}

.tab-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.tab-wrapper .model-preview {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 15px;
}

/*
.model-wrapper .model-preview {
        height: 400px;
        min-width: 100%;
    }
    */

.profile-summary {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-name {
    margin: 0;
    font-size: 2em;
}

.profile-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.95em;
}

.main-site-link {
    display: inline-block;
    margin-top: 10px;
    background: #1e90ff;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.main-site-link:hover {
    background: var(--headerBgColor);
}

/* Tabs */
.profile-tabs {
    margin-top: 20px;
}

.tab-nav {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    /*padding-bottom: 5px;*/
    list-style: none;
}

.tab-nav li {
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px 4px 0 0;
}

.tab-nav li.active {
    color: #fff;
    font-weight: bold;
}

.tab-nav a {
    text-decoration: none;
}

.tab-content {
    padding: 12px;
    background: #fafafa;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Photos grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.photo-cell img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Stats list */
.stats-list {
    list-style: none;
    padding: 0;
}

.stats-list li {
    margin-bottom: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-video iframe {
        height: 250px;
    }

    .profile-info {
        flex-direction: column;
    }

    .tab-nav {
        flex-direction: column;
    }
}

/* Tabs */
.profile-tabs .tab-nav li, .profile-tabs .tab-nav li a {
    background-color: var(--tab-bg-color);
    color: var(--tab-text-color);
}

.profile-tabs .tab-nav li.active {
    background-color: var(--tab-active-bg-color);
    color: var(--tab-active-text-color);
}

.profile-tabs .tab-content {
    background-color: var(--content-bg-color);
}

.tab-paneXXX {
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: 14px;
}

img#bio-thumb {
    max-height: 200px;
}

.model-details {
    display:-webkit-box;
    display:-webkit-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap
}

.model-details .detail-item {
    padding-left: 20px;
    margin-bottom: 15px;
    width: 30%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;

  /*display: flex;*/
    /*
  align-items: center;
  color: white;
    min-height: 50px;
  */
  border-left: 3px solid var(--tab-bg-color);

}

.model-details .detail-item-wide {
    width: 100%;
}

.stats-wrapper {
    font-family: Outfit, sans-serif;
    color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 40px;
    margin: 40px auto;
    background: black;
    border-radius: 20px;
    padding: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.stat-card {
    position: relative;
    padding: 20px;
    overflow: hidden;
    transition: 0.3s;
}

 /* scroll tags*/

   .marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 8px 0;

    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 0.9em;

  }

  .marquee-content {
    display: inline-block;
    animation: marquee 650s linear infinite; /* Slow and smooth */
    padding-right: 100%;
  }

  .marquee:hover .marquee-content {
    animation-play-state: paused;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
  }

  /* --- List Styles --- */
  .scrolling-list {
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .scrolling-list li {
    display: inline;
    margin-right: 40px;
  }

  .scrolling-list strong a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-right: 4px;
  }

  .scrolling-list strong a:hover {
    text-decoration: underline;
  }

  .links-tags {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
  }

  .links-tags:hover {
    text-decoration: underline;
  }


    /* ============================================================
     🌫️  EFFECT 1 — Fade Edges
     ============================================================ */
  .marquee-effect-1::before,
  .marquee-effect-1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .marquee-effect-1::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
  }

  .marquee-effect-1::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
  }

  /* ============================================================
     ⚡ EFFECT 2 — Neon Glow Tags
     ============================================================ */
  .marquee-effect-2 .links-tags {
    color: #ffd700;
    text-shadow: 0 0 5px #ffd700, 0 0 10px #ffaa00;
    transition: 0.3s;
  }

  .marquee-effect-2 .links-tags:hover {
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px #ffd700;
  }

  /* ============================================================
     ✨ EFFECT 3 — Shimmer Text
     ============================================================ */
  .marquee-effect-3 .scrolling-list li {
    position: relative;
    overflow: hidden;
  }


   .marquee-effect-3 .scrolling-list li::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.3) 50%,
      rgba(255,255,255,0) 100%
    );
    animation: shimmer 8s infinite;
  }

  @keyframes shimmer {
    0% { left: -50%; }
    100% { left: 120%; }
  }

  /*logo  -overlay*/

  .logo-overlay {
    position: absolute;

    transform: translateY(-50%);
    width: 64px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    transition: transform 0.3s;
    margin-left: 8px;
  }

  .logo-overlay:hover {
    transform: translateY(-50%) scale(1.1) rotate(5deg);
  }


.sidebar-item {
    display: flex;
    vertical-align: middle;
    height: auto;
}

.sidebar-item div.svg {
    display: flex;
    background-color: rgb(56, 56, 56) !important;
    color: rgb(229, 229, 247) !important;
    border-radius: 9999px;
    width: 2rem;
    height: 2rem;
    align-items: center;
}

.sidebar-item div.svg svg {
    display: block;
    width: 1.2rem;
    height: auto;
    fill: white;
    margin: auto;
}

.sidebar-item div.label {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 1rem;
}

/*language_select*/
.lang-dropdown_language_select {
    font-family: system-ui, -apple-system, Segoe UI, sans-serif;
    /*
    position: relative;
    right: 300px;
    top: 14px;
    position: absolute;
    */
    z-index: 11;
}

.lang-current_language_select {
    border: 1px solid rgba(0,0,0,.15);
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    cursor: pointer;
    transition: box-shadow .2s, border-color .2s;
}

.lang-current_language_select:hover {
    border-color: rgba(0,0,0,.3);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.lang-menu_language_select {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    display: none;
    z-index: 1000;
    background-color: var(--defaultBgColor);
}

.lang-dropdown_language_select.open .lang-menu_language_select {
    display: block;
}

.lang-item_language_select {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 8px;
    text-decoration: none;
    color: var(--defaultTextColor);
    transition: background .15s;
}

.lang-item_language_select:hover {
    background: rgba(0,0,0,.05);
}

.flag_language_select {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}

.flag_language_select svg {
    width: 150%;
    height: 150%;
    object-fit: cover;
}

.label_language_select {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/*
.label_language_select a {
    color: var(--defaultHiliteColor):
}
*/
/*language_select*/





/*new css*/
/*post list*/
#content_post {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px;
}

.postList {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e5e5;
}

.post-thumbnail img {
  width: 160px;
  height: 100px;
  object-fit: cover;
  display: block;
}

.entry-title {
  font-size: 20px;
  margin: 0 0 6px;
}

.entry-title a {
  text-decoration: none;
  color: #222;
}

.entry-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}

.entry-summary {
  font-size: 15px;
  line-height: 1.4;
  color: #444;
}

@media (max-width: 600px) {
  .postList {
    flex-direction: column;
  }

  .post-thumbnail img {
    width: 100%;
    height: auto;
  }
}
/*ef post list*/
/*post grid*/
.grid-wrapper_post {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.grid-post {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.grid-post__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.grid-post__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.grid-post__views {
  display: block;
  font-size: 12px;
  color: #666;
  padding: 6px 8px 0;
}
.grid-post__title {
  font-size: 16px;
  margin: 4px 8px 8px;
}
.grid-post__content {
  padding: 0 8px 10px;
}
.grid-post__excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/*ef post grid*/
/*webcams Update*/
.story-bar {
	display: flex;
	overflow-x: auto;
	gap: 15px;
	padding: 10px 0;
	margin-bottom: 30px;
  }
  .story {
	flex: 0 0 auto;
	text-align: center;
	text-decoration: none;
	color: #333;
  }
  .story img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #ff5a5f;
	transition: transform 0.2s;
  }
  .story:hover img {
	transform: scale(1.05);
  }
  .story span {
	display: block;
	margin-top: 5px;
	font-size: 13px;
	font-weight: bold;
  }
  .feed {
	display: flex;
	flex-direction: column;
	gap: 20px;
  }
  .feed-item {
	display: flex;
	background: white;
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  .feed-item img {
	width: 120px;
	height: 120px;
	border-radius: 10px;
	object-fit: cover;
	margin-right: 15px;
  }
  .feed-content h3 {
	margin: 0;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 10px;
  }
  .feed-content p {
	margin: 8px 0;
	font-size: 14px;
  }
  .status {
	padding: 2px 8px;
	border-radius: 20px;
	font-size: 12px;
	text-transform: uppercase;
  }
  .status.freechat {
	background: #28a745;
	color: white;
  }
  .status.private {
	background: #6f42c1;
	color: white;
  }
  .status.group {
	background: #17a2b8;
	color: white;
  }
  .status.Away {
	background: #ffc107;
	color: #333;
  }
  @media (max-width: 600px) {
	.feed-item {
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	}
	.feed-item img {
	  margin-right: 0;
	  margin-bottom: 10px;
	}
	.feed-content h3 {
	  justify-content: center;
	}
  }
/*ef webcams Update*/
/*bday*/
.birthdays-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px;
}

.birthday-group-title {
  font-size: 20px;
  margin: 20px 0 10px;
}

.item-grid.small {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.no-birthday-message {
  font-size: 14px;
  color: #666;
  padding: 12px 0;
}

.birthday-label {
  font-size: 12px;
  margin-top: 4px;
  color: #555;
  text-align: center;
}

/*enf bday */

/*popular*/
.page-header-description {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 12px;
  text-align: center;
}

.best-models-title {
  font-size: 24px;
  margin-bottom: 6px;
}

.ranked-description {
  font-size: 14px;
  color: #666;
}

.model-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  padding: 12px;
}



.model-card-header {
  font-size: 12px;
  padding: 6px 8px;
  background: #f5f5f5;
  display: flex;
  justify-content: space-between;
  color: #333;
}

.model-card-header.first { background: #ffe082; }
.model-card-header.second { background: #e0e0e0; }
.model-card-header.third { background: #f5cba7; }

.model-thumbnail-wrapper {
  position: relative;
}

.model-thumbnail {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.status-label {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  background: #555;
}

.status-live { background: #e53935; }
.status-show { background: #fb8c00; }
.status-spy { background: #8e24aa; }
.status-away { background: #546e7a; }
.status-offline { background: #777; }

.model-link {
  text-decoration: none;
  color: inherit;
}

/*ef popular*/
/*videos*/
.content_video_index {

  margin: 0 auto;
  padding: 12px;
}


.item-grid_video_index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}


.item_video_index {
  display: flex;
  flex-direction: column;
}


.preview_video_index img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  display: block;
}


.video-info_video_index {
  padding: 6px 2px;
}

.title_video_index {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta_video_index {
  font-size: 12px;
  color: #666;
}

.model-box {
  width: 100%;
}

.model-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

#chatembed video {
  width: 100%;
  max-height: 70vh;
  background: #000;
  border-radius: 10px;
  display: block;
}

.model-tab {
  margin-top: 16px;
}

.model-tab h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.video-meta {
  color: #bbb;
}
/*
.tab-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0 10px;
}
*/
.tab-nav li a {
  text-decoration: none;
  color: #888;
  font-weight: 500;
}

.tab-nav li.active a {
  color: #fff;
  border-bottom: 2px solid #ff007f;
}

.tab-contents {
  background: #111;
  border-radius: 10px;
  padding: 16px;
}


.detail-item {
  width: 100%;
  line-height: 1.4;
}

.tag-linked {
  display: inline-block;
  margin: 4px 6px 0 0;
  font-size: 13px;
  color: #ff007f;
  text-decoration: none;
}

.tag-linked:hover {
  text-decoration: underline;
}

.item-grid.medium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.item-grid.medium img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.related-models {
  margin-top: 40px;
}

.related-models h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.text-center {
  text-align: center;
}

.bold {
  font-weight: 600;
}

/* ef videos*/

/*live tv*/
#channel-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

#channel-buttons button {
  background: #222;
  color: #fff;
  border: 1px solid #333;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}

#channel-buttons button:hover {
  background: #ff007f;
  border-color: #ff007f;
}

#channel-buttons button:focus {
  outline: none;
}




.share-rank {
  font-size: 18px;
  font-weight: 600;
  color: #ff4081;
  text-transform: uppercase;
}

.mini-event-container {
  font-size: 16px;
  background: rgba(255,255,255,0.05);
  padding: 10px 14px;
  border-left: 4px solid #ff4081;
  border-radius: 8px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list a {
  background: #ff4081;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
}

/*live tv*/
/*casino */
.boomSpin{
  background-color:red ;
  width: 40%;
  color: white;
  text-align: center;
  border-radius: 10px;
  border: 2px solid red;
  padding: 4px!important;
  margin: 50px auto 10px auto;
}

.tipmenu .tipmenu-option-container .tipmenu-option .background{
  opacity: 1!important;
  background-color: black;
}

.machine{
  height: 100%;
  min-height: 900px;
  width:100%;
  display: inline-block;
  position: relative;
  opacity: 0;
}
.container2{
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  height : 320px;
  background-clip: content-box;
  border-style: solid;
  border-image-width: auto;
  border-image-slice: 1;
  border-width : 15px;
  display : flex;
  background: transparent;
  box-shadow: inset 0 0 50px #000000;
  display : flex;
  position: relative;
  overflow: hidden;
  background-clip: content-box;
}
.container2:before{
  content: '';
  position: absolute;
  width: calc(100% - 0px);
  top : calc(50% - 20px);
  left: 0;
  border-style: solid;
  border-width: 20px 20px;
  border-color: transparent hsla(0,70%,50%,0.75) transparent hsla(0,70%,50%,0.75);
  height : 2px;
  background-color: rgba(250,250,250,0.5);
  overflow: hidden;
  z-index: 1;
  background-clip: content-box;
}
.container2:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background : linear-gradient(to bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 20%,rgba(0,0,0,0) 80%,rgba(0,0,0,0.8) 100%);
}
.col{
  width: 100%;
}
.row2{
  border-style: solid;
  border-width: 2px;
  border-image: linear-gradient(to top, #ff0000, #fff597);
  border-image-slice: 1;
}
.row2:after{
  content: '';
  display: block;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*-------------=== winner style ===-------------*/
.winner{
  background-color: transparent;
  -webkit-transition: transform 0.1s linear,background-color 0.1s ease;
  -moz-transition: transform 0.1s linear,background-color 0.1s ease;
  -o-transition: transform 0.1s linear,background-color 0.1s ease;
  transition: transform 0.1s linear,background-color 0.1s ease;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  pointer-events: none;
}
.winner.active{
  -webkit-transition: transform 0.1s linear,background-color 0.5s ease;
  -moz-transition: transform 0.1s linear,background-color 0.5s ease;
  -o-transition: transform 0.1s linear,background-color 0.5s ease;
  transition: transform 0.1s linear,background-color 0.5s ease;
  background-color: rgba(0,0,0,0.5);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.winner,.winner:before,.winner:after{
  position: absolute;
  top: 0;
  left :0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  z-index: 3;
}
.winner:before,.winner:after{
  width: 80vw;
  height: 90vw;
  top : -25vw;
}
.winner:before{
  background : url(//bannerflow.blob.core.windows.net/resources/winner2-d4e9ae90-43f8-4575-99b9-fc675462bc35.svg?v=636058905940602803) no-repeat center;
  background-size: cover;
  -webkit-animation: rotateBackground 12s linear infinite;
  -moz-animation:    rotateBackground 12s linear infinite;
  -o-animation:      rotateBackground 12s linear infinite;
  animation:         rotateBackground 12s linear infinite;
}
.winner:after{
  background : url(//i.ibb.co/z5YnfnJ/JACKPOT-1.png) no-repeat center;
  background-size: 50% 50%;
  -webkit-animation: scaleForeground 2s linear infinite;
  -moz-animation:    scaleForeground 2s linear infinite;
  -o-animation:      scaleForeground 2s linear infinite;
  animation:         scaleForeground 2s linear infinite;
}
@-webkit-keyframes rotateBackground {
  100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes rotateBackground {
  100% { -moz-transform: rotate(360deg); }
}
@-o-keyframes rotateBackground {
  100% { -o-transform: rotate(360deg); }
}
@keyframes rotateBackground {
  100% { transform: rotate(360deg); }
}
@-webkit-keyframes scaleForeground {
  50% { -webkit-transform: scale(0.5); }
}
@-moz-keyframes scaleForeground {
  50% { -moz-transform: scale(0.5); }
}
@-o-keyframes scaleForeground {
  50% { -o-transform: scale(0.5); }
}
@keyframes scaleForeground {
  50% { transform: scale(0.5); }
}


@media screen and (max-width: 768px) {
  .winner:before, .winner:after {
    width: 100%;
    height: 100vw;
    top: 120vw;
  }
}

.handle{
  position: relative;
  float: inline-end;
  vertical-align: top;
  height : 60px;
  margin-top : -187px;
  width : 15px;
  border-radius: 0 5px 5px 0/20px;
  border : 1px solid rgba(189, 160, 112, 0.5);
  background : linear-gradient(to bottom, #CD9819 0%,#f5f5f5 20%,#e2ba78 67%, #b6783d 90%, #CD9819 100%);
}
.handle,.handle:before,.handle:after{
  transition: all 0.2s linear;
  cursor: pointer;
}
.handle:before,.handle:after{
  content: '';
  display: block;
  position: absolute;
}
.handle:before{
  border-style: solid;
  border-width: 1px;
  border-color: rgba(163,126,67,0.1);
  background: linear-gradient(to right, #f5d6b1 0%, #cc9310 20%,#f1e767 60%,#f5f5f5 90%,#f1e767 100%);
  width: 8px;
  height: 80px;
  bottom: 30px;
  right: -10px;
  border-bottom-right-radius: 10px 8px;
}
.handle:after{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: -64px;
  right: -17px;
  border: 1px solid rgba(204,147,16,0.3);
  background: radial-gradient(ellipse at 75% 25%, #ffffff 0%,#f1e767 25%,#cc9310 60%,#feb645 91%);
}
.handle.active{
  background-position:0 47px;
}
.handle.active:before{
  height: 0px;
  border-bottom-right-radius: 2px;
  transform: translateY(5px);
}
.handle.active:after{
  transform: translateY(85px);
}
#hidethewin{
  display: none;
}
#hidethewinimages{
  display: none;
}
label {
  text-align:center;
  display: block;
  margin-bottom: 8px;
  color: white;
}


#cover-image {
  width: 100%;
  height: auto;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#cover-button {
  z-index: 2;
}
.slot-machine-column {
  width: 90%;
  margin: 0 auto;
}
.container2 {
  border-width: 15px;
}
#galleryContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#galleryContainer img {
  width: 100px;
  height: auto;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}
#galleryContainer img:hover {
  transform: scale(1.1);
}
/*ef casino */



/*tranding */
.grid-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.model-cell {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.preview {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
}

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

/* Generic label */
.preview .label {
  position: absolute;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 6px;
  color: #fff;
  background: rgba(0,0,0,0.65);
  white-space: nowrap;
}

/* Specific labels */
.label-featured { top: 6px; left: 6px; background: #ff4747; }
.label-rank     { top: 6px; right: 6px; background: #ff5722cc; }
.label-viewers  { bottom: 6px; left: 6px; }
.label-age      { top: 6px; left: 6px; background: #4caf50cc; }
.label-subject  {
  bottom: 6px;
  right: 6px;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-wrapper {
  padding: 8px 10px;
}

.name {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Mobile */
@media (max-width: 768px) {
  .model-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .preview .label {
    font-size: 11px;
    padding: 2px 5px;
  }
}
/*tranding */
/* Zodiac  */
#zodiac-menu_zodiac {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 16px 10px;
  overflow-x: auto;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.zodiac-icon_zodiac {
  height: 50px;
  width: auto;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.zodiac-icon_zodiac:hover {
  opacity: 0.8;
  transform: scale(1.04);
}

.zodiac-icon_zodiac.active {
  opacity: 1;
  background: #e0f0ff;
  border: 1px solid #007bff33;
  padding: 3px;
  border-radius: 6px;
}


#model-list_zodiac {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  padding: 24px 16px;
  margin: 0 auto;
  justify-content: center;
}


.model-card_zodiac {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.model-card_zodiac:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.model-card_zodiac img.model-image_zodiac {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}


.model-labels_zodiac {
  position: absolute;
  top: 8px;
  width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.model-label-name_zodiac,
.model-label-site_zodiac {
  font-size: 13px;

  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 48%;
  pointer-events: auto;
}

.model-label-name_zodiac {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 500;
}

.model-label-site_zodiac {
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  font-weight: 400;
  text-align: right;
}


.model-zodiac_zodiac {
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  background: #f2f4f6;
  color: #666;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}
/* Zodiac  */
/*viewedNow*/

.viewed_title{
  text-align:center;
  font-size:2rem;
  color:white;
  animation: fadeDown 1s ease;
}
.viewed_desc {
  text-align:center;
  font-size:1rem;
  font-weight:400;
  color:#aaa;
  margin:0 0 20px;
}
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ===== Action Button ===== */
.actions {
  display:flex;
  justify-content:center;
  margin-bottom:25px;
}
.followBtn {
  background:#ff3d71;
  color:#fff;
  font-weight:600;
  padding:12px 20px;
  border-radius:10px;
  border:0;
  cursor:pointer;
  font-size:1rem;
  transition: all .2s ease;
  box-shadow:0 6px 15px rgba(255,61,113,.4);
}
.followBtn:hover { background:#ff285d; transform:scale(1.05); }

/* ===== Hero Big Screen ===== */
.hero {
  margin: 0 auto 40px;
  padding: 0 20px;
}

.hero-full {
  max-width: 100%;
}

.hero-small {
  max-width: 80%;
}
.hero-card {
  position:relative;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.8);
  background:#111;
  animation: fadeIn 1.2s ease;
}
.hero-card .media { aspect-ratio:16/9; background:#000; }
.hero-card .media iframe { width:100%; height:100%; border:0; }
.hero-info {
  position:absolute; bottom:0; left:0; right:0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.8));
  padding:20px;
  display:flex; justify-content:space-between; align-items:end;
}
.hero-name { font-size:1.5rem; font-weight:700; }
.hero-meta { font-size:.9rem; color:#ccc; }
.ticket {
  background:#ffd700; color:#000; font-weight:700;
  padding:6px 12px; border-radius:20px;
  font-size:.9rem;
  box-shadow:0 0 15px rgba(255,215,0,.4);
}
@keyframes fadeIn {
  from { opacity:0; transform:scale(.95); }
  to   { opacity:1; transform:scale(1); }
}

/* ===== Gallery Side Screens ===== */
.gallery {
  margin: 0 auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-full {
  max-width: 100%;
}

.gallery-small {
  max-width: 80%;
}


.card {
  background:#141421;
  border-radius:12px;
  overflow:hidden;
  position:relative;
  box-shadow:0 4px 14px rgba(0,0,0,.5);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: fadeUp .9s ease;
}
.card:hover {
  transform:translateY(-4px);
  box-shadow:0 10px 20px rgba(0,0,0,.7);
}
.card .media {
  aspect-ratio:16/9;
  background:#000;
  display:flex; align-items:center; justify-content:center;
}
.card .media img { width:100%; height:100%; object-fit:cover; }
.card.loaded .media { padding:0; }
.card .info { padding:10px; }
.card .name { font-weight:600; font-size:.95rem; }
.card .meta { font-size:.75rem; color:#aaa; margin-top:2px; }
.card .views {
  margin-top:6px;
  color:#ffd700;
  font-weight:700;
  font-size:.8rem;
}
.viewed_btn {
  display:inline-block;
  background:#ff3d71;
  color:#fff; font-weight:600;
  padding:5px 8px;
  margin-top:8px;
  border-radius:8px;
  text-decoration:none;
  font-size:.8rem;
}
.loadBtn {
  background:#232337; margin-left:6px;
  cursor:pointer; border:0; border-radius:8px;
  padding:5px 8px; font-weight:600; color:#fff; font-size:.8rem;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
/*ef viewedNow*/



/*webcamsCell advert*/
.model-card.advert-home .model-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding-top: 63px;
  overflow: hidden;
}

.model-card.advert-home .model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/*webcamsCell advert*/

/*floatingChat embed */
#floatingChat {
  position: fixed;
  bottom: 0;
  right: 10px;
  width: 300px;
  height: 200px;
  overflow: hidden;
  z-index: 100;
}

#floatingChatImage,
#floatingChatEmbed {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 200px;
}

#floatingChatImage {
  z-index: 50;
}

#floatingChatImage img {
  width: 100%;
  height: auto;
}

#floatingChatEmbed {
  z-index: 51;
  background: transparent;
}
#floatingChatClose {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 9999;
  cursor: pointer;
}

#floatingChatClose img {
  width: 24px;
  height: 24px;
  opacity: 0.85;
}

#floatingChatClose img:hover {
  opacity: 1;
}

/*floatingChat embed */



/*footer*/

.site-footer {
  background: #0a0f14;
  border-top: 1px solid #141c25;
  padding: 50px 20px 40px;
  text-align: center;
  color: #9fb3c8;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.footer-logo {
  width: 70px;
  opacity: 0.9;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  margin-bottom: 35px;
}

.footer-nav a {
  color: #9fb3c8;
  text-decoration: none;
  transition: 0.2s;
}

.footer-nav a:hover {
  color: #00d4ff;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.copyright {
  font-size: 13px;
  color: #6e859c;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  max-width: 900px;
  margin: 0 auto;
}

.legal p {
  width: 100%;
  margin-bottom: 8px;
  color: #7f96ad;
}

.legal a {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.legal a:hover {
  color: #00ff9c;
}

.footer-certifications {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0.8;
}

.footer-certifications img {
  transition: 0.2s;
}

.footer-certifications img:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .footer-nav {
      gap: 10px;
  }
}
/*footer*/
