@font-face {
    font-family: 'Mlady';
    src: url('/assets/webfonts/Trattatello.ttf');
}

@font-face {
    font-family: 'Gentleman';
    src: url('/assets/webfonts/SortsMillGoudy-Regular.ttf');
}

@font-face {
    font-family: 'Gentle';
    src: url('/assets/webfonts/SortsMillGoudy-Italic.ttf');
}

@font-face {
    font-family: 'WorkSans';
    src: url('/assets/webfonts/WorkSans.ttf');
}

@font-face {
    font-family: 'WorkSansi';
    src: url('/assets/webfonts/WorkSans-Italic.ttf');
}

@font-face {
    font-family: 'Pixel11';
    src: url('/assets/webfonts/joystix_monospace.otf');
}

@font-face {
    font-family: 'Pixel';
    src: url('/assets/webfonts/alagard.ttf');
}

@font-face {
    font-family: 'Comic';
    src: url('/assets/webfonts/pixel-font7.regular.ttf');
}

@font-face {
    font-family: 'SpaceMono';
    src: url('/assets/webfonts/SpaceMono-Regular.ttf');
}

body { cursor: url('/assets/cursor/cursor.cur'), auto; 
a {cursor: url('/assets/cursor/cursor.cur'), auto;}}


.responsive-video-wrapper {
    width: 100%; /* The wrapper will take up the full width of its container */
    clear: both; /* Ensure it clears any floats or previous elements */
}

.responsive-video-wrapper iframe {
    width: 600px; /* Define the desired width for the iframe */
    height: 350px; /* Define the desired height for the iframe */
    display: block;
    //margin: 0 auto; /* Center the iframe within the wrapper */
    border: 0;
}


/* Responsive adjustments for mobile */
@media screen and (max-width: 768px) {
    .responsive-video-wrapper iframe {
        width: 100%; /* Full width on mobile */
        height: 200px; /* Maintain aspect ratio automatically */
    }
}


.nav__menu > li > a,
.eversor-nav-menu__list > li > a {
    display: flex;
    align-items: center;
    padding: 0.875rem 0;
    font-family: "CalSans SemiBold", sans-serif;
    font-size: 0.9rem;
    color: #fff;
}

.nav__menu > li > a:hover,
.eversor-nav-menu__list > li > a:hover,
.nav__menu > li > a:focus,
.eversor-nav-menu__list > li > a:focus,
.dark .nav__menu > li > a,
.dark .eversor-nav-menu__list > li > a,
.dark .nav__menu > li > a:hover,
.dark .eversor-nav-menu__list > li > a:hover,
.dark .nav__menu > li > a:focus,
.dark .eversor-nav-menu__list > li > a:focus {
    color: #fff;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.custom-button,
.custom-link,
.custom-icon {
    margin-left: 15px;
    padding: 2px 5px;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
    font-size: 0.9rem;
	//font-size: 50%;
    font-weight: bold;
}

.custom-button {
    white-space: nowrap; /* Prevent text from wrapping */
    margin-left: 5px;
    //margin-top: -4px;
    padding: 2px 10px;
    background: linear-gradient(45deg, #333, rgba(209, 34, 227, 0.95), rgba(30, 235, 184, 1));
    //background: linear-gradient(to right, #b543da, #cf23cf, rgba(30, 235, 184, 1));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: none;
border: none;
}

.custom-button2 {
    white-space: nowrap; /* Prevent text from wrapping */
    margin-left: 5px;
    //margin-top: -4px;
    padding: 2px 10px;
    //background: rgba(209, 34, 227, 0.95);
    //background: linear-gradient(to right, #b543da, #cf23cf, rgba(30, 235, 184, 1));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: none;
border: none;
}

.custom-link:hover {
    background-color: #005177;
    color: #000;
}


.custom-link:hover {
    background-color: #005177;
    color: #000;
}

.custom-link2:hover {
    background-color: #fff;
    color: #fff;
}


.custom-link2:hover {
    background-color: #fff;
    color: #fff;
}

.custom-icon {
    margin: 0 9px;
    font-size: 1.1rem;
}

.price-marketcap {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.price,
.marketcap {
    color: white;
    margin-right: 20px;
    white-space: nowrap; /* Prevent text from wrapping */
}


.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
	font-weight: bold;
}

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

.marquee-content a {
    background: linear-gradient(to right, #eee, #b543da, #cf23cf, rgba(30, 235, 184, 1));
	-webkit-text-fill-color:transparent;
	-webkit-background-clip:text;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.user-info img.avatar {
    border-radius: 50%;
    width: 90px; /* Set a consistent width */
    //height: 24px; /* Set a consistent height */
    //font-size: 1.5rem;
    margin: 1px 5px 0 0; /* Add some spacing if needed */
}

.user-info img.avatar {
    border-radius: 50%;
}




/* Basic styles for the mobile menu */
#mobileMenu {
    display: none;
    background-color: #fff;
    position: absolute;
    top: 107%;
    right: 0;
    left: 0;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobileMenu.slide-down {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#mobileMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center; /* Center-align text links */
}

#mobileMenu ul li {
    margin: 10px 0;
}

#mobileMenu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center; /* Center-align text links */
}

.search-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
}

.search-container form {
    width: 100%;
}

.search-container input[type="search"] {
    width: 100%;
    max-width: none;
    border-radius: 6px;
}

/* Mobile view */
@media (max-width: 1023px) {
    .search-container input[type="search"] {
        height: 37px;
		margin-top: 10px;
    }
}

/* Desktop view */
@media (min-width: 1024px) {
    .navbar .search-container input[type="search"] {
        width: 270px; /* Original desktop width */
        max-width: 270px; /* Ensure it doesn't stretch beyond this width */
        height: 37px; /* Adjust height to match original size */
    }
}

.icon-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 10px 0;
}

.icon-row a {
    display: flex;
    align-items: center;
}

.icon-row i {
    margin-right: 8px;
}

.buy-dora-button {
    background: linear-gradient(45deg, #333, rgba(209, 34, 227, 0.95), rgba(30, 235, 184, 1));
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    //margin-top: 10px;
	
}

.buy-dora-button:hover {
    background: linear-gradient(45deg, rgba(209, 34, 227, 0.95), rgba(30, 235, 184, 1), #333);
}

/* Ensure the dropdown is below the alert slider */
.alert-slider {
    position: relative;
    z-index: 200;
}

/* Overlay styles */
#menuOverlay {
    display: none;
    background: rgba(0, 0, 0, 0.5);
    top: 68px; /* Adjust this to the height of your navbar */
}

#menuOverlay.visible {
    display: block;
}

.header-container {
    width: 100%;
    //max-width: 100%;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .header-container {
        max-width: 1350px; /* Larger max-width for desktop */
    }
}

.user-links a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    //display: flex;
    align-items: center;
    justify-content: center;
	font-size: 1em;
}

.glow {
  //text-shadow:1px 2px 4px #fff, 1px 2px 4px #fff;
  color: #f45c3e;
}

@-webkit-keyframes glow {
  //text-shadow:1px 2px 4px #fff, 1px 2px 4px #fff;
  color: #f45c3e;

}

.modal3 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content3 {
    background-color: #fefefe;
    margin: 10% auto; /* 10% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.registration-error {
    color: #721c24;
    background-color: #f8d7da;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}
.registration-error ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}


.login-error {
    color: #721c24;
    background-color: #ffe6e6; /* Light red background */
    font-size: 16px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}


.login-success {
    color: #721c24;
    background-color: #e6ffe6; /* Light green background */
    font-size: 16px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.registration-success {
    color: #155724;
    background-color: #d4edda; /* Light green background */
    border: 1px solid #c3e6cb;
}

.wpforms-submit {
  display: inline-block;
  padding: 10px 20px;
  background-color: #9333ff;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.wpforms-submit:hover {
  background-color: rgba(209, 34, 227, 0.95);
  color: #fff;
}

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

.register-button {
  /* Additional styling for the register button if needed */
}


/* Styles for tablets (portrait and landscape) */
@media (min-width: 600px) and (max-width: 1280px) {
    .static-text {
        margin-left: 20px; /* Adjust spacing for tablets */
    }
}


.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.divider::before {
    margin-right: 10px;
}

.divider::after {
    margin-left: 10px;
}

.divider span {
    font-size: 14px;
    color: #666;
}



.popular-post-thumbnails {
    display: flex;
    align-items: center;
    position: relative;
}

.popular-thumbnail-link {
    display: inline-block;
    margin-left: -8px; /* Controls overlap spacing */
    z-index: 1;
    position: relative; /* Keeps clickable areas stacked correctly */
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.popular-thumbnail-link:first-child {
    margin-left: 0; /* No overlap for the first thumbnail */
}

.popular-thumbnail {
    width: 60px; /* Set the size of the thumbnail */
    height: 60px; /* Ensure it's a perfect circle */
    background-size: cover;
    background-position: center;
    border-radius: 50%; /* Makes the thumbnail circular */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Adds shadow for a floating effect */
    transition: transform 0.3s ease;
}

.popular-thumbnail-link:hover .popular-thumbnail {
    transform: scale(1.1); /* Slightly enlarge the thumbnail on hover */
    z-index: 10; /* Brings the hovered thumbnail to the front */
}

.fireball-ico {
    position: absolute;
    bottom: -5px; /* Position at the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Offset by half its width for perfect centering */
    font-size: 20px; /* Adjust the size of the Font Awesome icon */
    color: red; /* Fireball color */
    z-index: 5; /* Ensure it appears above the thumbnail */
}

.popular-thumbnail {
    position: relative; /* To position the fireball icon relative to the thumbnail */
}

/* Popular Posts Styles */
.popular-posts {
    font-size: 1em;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.popular-posts span {
    background: linear-gradient(45deg, #333, rgba(209, 34, 227, 0.95));
	//background: linear-gradient(45deg, #333, #656565);
    color: #fff; /* White text */
    padding: 6px 15px 3px 15px; /* Adjust spacing inside the button */
    border-radius: 3px; /* Rounded corners */
}

.popular-posts::after {
    content: "";
    flex: 1; /* Fills the remaining space */
    margin-left: 10px; /* Space between the box and the line */
    border-bottom: 1px solid #ccc; /* Line style */
    align-self: center; /* Aligns the line to the center */
}

.view-more-thumbnail {
    background-color: #333; /* Dark gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; /* White text */
    font-size: 0.8rem; /* Adjust font size */
    font-weight: bold;
    text-transform: lowercase; /* Make text uppercase */
    position: relative;
    height: 60px; /* Match the thumbnail size */
    width: 60px; /* Match the thumbnail size */
    border-radius: 50%; /* Ensure it stays circular */
}

.view-more-thumbnail span {
    text-align: center;
    line-height: 1.2;
}








/* Post Thumbnail Anchor */
.post-thumbnail {
    background: none;
    display: block;
    margin: 0;
    padding: 0;
}

/* Thumbnail Wrapper */
.post-thumbnail .thumbnail-wrapper {
    position: relative;
    display: block;
    background: none;
    margin: 0;
    padding: 0;
}

/* Thumbnail Image */
.post-thumbnail .thumbnail-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

/* GIF Badge */
.gif-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #6ccb17;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    display: inline-block;
    width: auto;
    margin: 0;
}

/* Overlay Icons Base Class */
.avatar-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 15;
    overflow: hidden;
}

/* YouTube Icon */
.youtube-icon {
    max-width: 30px;
    max-height: 30px;
    top: 4px;
    left: 8px;
}

/* Instagram Icon */
.instagram-icon {
    max-width: 26px;
    max-height: 26px;
    top: 8px;
    left: 8px;
}

/* TikTok Icon */
.tiktok-icon {
    max-width: 26px;
    max-height: 26px;
    top: 6px;
    left: 8px;
}

/* Optional: Styling for the post item */
.post-item,
.popular-post {
    background: none;
    margin: 0;
    padding: 0;
}


/* Placeholder Content */
.post-thumbnail .thumbnail-wrapper .no-thumbnail-content {
    display: block;
    width: 100%;
    height: 150px; /* Adjust as needed */
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 150px; /* Match to height for vertical centering */
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
}

/* Fallback Thumbnail Styling */
.popular-thumbnail.no-thumbnail {
    background-color: #000; /* Black background */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 60px; /* Ensure it spans the full width */
    height: 60px; /* Adjust to match your thumbnail height */
    position: relative;
}

.no-thumbnail-text {
    color: #fff; /* White text */
    font-size: 12px; /* Adjust font size as needed */
    font-weight: bold;
    padding: 0 10px; /* Add some horizontal padding */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

