/**
* Template Name: CryptoXtip
* Template URL: https://www.cryptoxtip.com/
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Playfair Display", sans-serif;
  --nav-font: "Merriweather", sans-serif;
  --mono-font: "Source Code Pro", monospace;
  --mono-alt-font: "JetBrains Mono", monospace;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-gradient: radial-gradient(ellipse at center center, #00bfff 0%, #00bfff 10%, #0a0a0a 50%, #060606 100%); /* Background color for the body */
  --background-color: rgba(6, 6, 6, 1); /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2a2a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #00bfff; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #d1d1d1;  /* The default color of the main navmenu links */
  --nav-hover-color: #00bfff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #03060D; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #03060D; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #d1d1d1; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00bfff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgba(3, 6, 13, 1); /* #03060D pozadí stránky */
  --default-color: #ffffff;
  --heading-color: #00bfff; /* puvodní barva webu #00bfff - neonově modrý je #1F51FF - #035096 (elektrická modrá) - #007FFF (azurová) */
  --surface-color: #000000; /* puvodní barva #252525 */
  --contrast-color: #ffffff;
}

.dark2-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
/*  background: url("../img/pozadi.png");
  background-repeat: repeat;
  background-size: auto;
  background-position: top left; */
  background-color: var(--background-color);
  color: var(--default-color);
  font-family: var(--mono-font);
}

/*  body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  pointer-events: none;
ÿ */

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: transparent;
  padding: 5px 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
  z-index: 997;
}

body.scrolled .header {
  background-color: rgba(0, 0, 0, 0.92);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}

.logo-img-wrapper {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-img-wrapper:hover {
  transform: scale(1.1);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  margin: 0;
  font-size: 26px;
  font-family: var(--mono-font);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.header .btn-getstarted {
  color: var(--contrast-color);
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 700;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted.active,
.header .btn-getstarted.active:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1199px) {
  .header .logo {
    order: 1;
  }

  .header .logo img {
    max-height: 28px;
    margin-right: 5px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 992px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;    
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 0 2px;
    font-size: 15px;
    font-family: var(--mono-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

/* 800 Navigation */
@media (max-width: 800px) {  
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 0 2px;
    font-size: 14px;
    font-family: var(--mono-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
 }   

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 100px; /* Navigation šířka pod menu */
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    font-family: var(--mono-font);
    font-weight: 700;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  
  .navmenu .dropdown ul a i {
    font-size: 12px;
    font-family: var(--mono-font);
    font-weight: 400;    
  }  

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

.navmenu .dropdown ul a.active {
  color: var(--nav-dropdown-hover-color);
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 32px;
    font-family: var(--mono-font);
    font-weight: 700;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-size: 18px;
    font-family: var(--mono-font);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 18px;
    font-family: var(--mono-font);
    font-weight: 700;    
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }  

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }  

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    font-family: var(--mono-font);
    font-weight: 700;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
/* border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 50%); */
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 25px;
  font-family: var(--mono-font);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
  color: color-mix(in srgb,  var(--accent-color), transparent 0%);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-family: var(--mono-font);
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a.active {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 17px;
  font-family: var(--mono-font);
  font-weight: 700;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: color-mix(in srgb,  var(--accent-color), transparent 0%);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb,  var(--accent-color), transparent 0%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 32px;
  font-family: var(--mono-font);
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 82px;
  overflow: clip;   /* ⬅️ místo clip visible doporučeno*/
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 67px;
  }
}

section-under,
.section-under {
  color: var(--default-color);
  background-color: var(--background-color), transparent 100%;
  padding: 0 0;
  scroll-margin-top: 82px;
  overflow: clip;   /* ⬅️ místo clip visible doporučeno*/
}

@media (max-width: 1199px) {

  section-under,
  .section-under {
    scroll-margin-top: 67px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h1 {
  font-size: 22px;
  font-family: var(--mono-font);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
}

.section-title h1::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 65%;
    height: 1.2em;
    background: radial-gradient(ellipse at center, rgba(0,191,255,0.7), transparent 50%);
    transform: translate(-50%);
    filter: blur(5px);
}

.section-title h2 {
  font-size: 22px;
  font-family: var(--mono-font);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 15px;
}

.section-title h2::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 65%;
    height: 1.2em;
    background: radial-gradient(ellipse at center, rgba(0,191,255,0.7), transparent 50%);
    transform: translate(-50%);
    filter: blur(5px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 16px;
  font-family: var(--mono-font);
  font-weight: 400;
}

.section-title a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.section-title a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* Proměnné pro snadné ladění */
:root {
  --hero-header-offset-desktop: 90px; /* výška / bezpečný prostor pod headerem na desktopu */
  --hero-header-offset-mobile: 70px;  /* výška / bezpečný prostor pod headerem na mobilu */
}

.hero {
  padding: 0;
}

/* Hlavní plocha carouselu */
.hero .carousel {
  width: 100%;
  aspect-ratio: 1200 / 266; /* široký banner na desktopu */
  min-height: 220px;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--background-color);
}

/* Jeden slide */
.hero .carousel-item {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Obrázek přes celou plochu slide */
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* desktop: vyplní prostor */
  object-position: center;
  z-index: 1;
}

/* Tmavý overlay přes obrázek */
.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 6, 13, 0.6);
  z-index: 2;
}

/* Textová vrstva */
.hero .carousel-container {
  position: absolute;
  z-index: 3;

  /* důležité:
     nahoře necháme místo pro průhledný header,
     aby se text netloukl s menu */
  top: var(--hero-header-offset-desktop);
  right: 64px;
  bottom: 32px;
  left: 64px;

  display: flex;
  flex-direction: column;
  justify-content: center; /* text bude uprostřed zbylého prostoru */
  align-items: center;
  text-align: center;
}

/* Nadpis */
.hero h2 {
  margin: 0 0 20px 0;
  font-size: 22px;
  line-height: 1.3;
  font-family: var(--mono-font);
  font-weight: 400;
  animation: fadeInDown 1s both;
}

/* Text */
.hero p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--mono-font);
  font-weight: 400;
  animation: fadeInDown 1s both 0.2s;
}

/* Na desktopu omezíme šířku textu */
@media (min-width: 1024px) {
  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

/* Tlačítko */
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  margin: 16px 0 0 0;
  border-radius: 4px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Šipky */
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  opacity: 0.5;
  transition: 0.3s;
  z-index: 4;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover,
.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  background: none;
  font-size: 20px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Tablet + mobil
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .hero .carousel {
    aspect-ratio: auto;   /* na mobilu zruší placatý poměr */
    min-height: 200px;    /* menší než předtím, aby nebyly velké prázdné plochy */
  }

  .hero img {
    object-fit: contain;  /* na mobilu ukáže celý obrázek */
    object-position: center top;
  }

  .hero .carousel-container {
    top: var(--hero-header-offset-mobile); /* prostor pod průhledným menu */
    right: 20px;
    bottom: 16px;
    left: 20px;
  }

  .hero h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 12%;
  }
}

/*--------------------------------------------------------------
# Velmi malé mobily
--------------------------------------------------------------*/
@media (max-width: 480px) {
  .hero .carousel {
    min-height: 190px;
  }

  .hero .carousel-container {
    top: calc(var(--hero-header-offset-mobile) + 4px);
    right: 16px;
    bottom: 12px;
    left: 16px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .hero p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Animace
--------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.about .about-img img {
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }

  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

.about h3 {
  font-size: 24px;
  font-family: var(--mono-font);
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about h3 {
  font-size: 18px;
  font-family: var(--mono-font);
  font-weight: 400;
  }
}

.about .nav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .nav-pills li+li {
  margin-left: 40px;
}

.about .nav-link {
  background: none;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.about .nav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .about .nav-link {
  font-size: 12px;
  font-family: var(--mono-font);
  font-weight: 400;
  }
}

.about .tab-content h4 {
  font-size: 18px;
  font-family: var(--mono-font);
  font-weight: 400;
  margin: 0;
  color: var(--default-color);
}

.about .tab-content i {
  font-size: 16px;
  font-family: var(--mono-font);
  font-weight: 400;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/* SECTION DIVIDER */
.about {
    padding: 100px 0;
    position: relative;
}

/* SECTION DIVIDER */
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  margin-left: 60px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: var(--heading-font);
  font-size: 14px;
}

/* SECTION DIVIDER */
.stats {
    padding: 100px 0;
    position: relative;
}

/* SECTION DIVIDER */
.stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# Clients Section - Sponsored Placements
--------------------------------------------------------------*/
.clients {
  position: relative;
  padding: 50px 0;
  background: #03060D;
  overflow: hidden;

  /* nastavení log */
  --logo-width: 210px;
  --logo-height: 140px;

  /* mezera mezi logy */
  --gap: 35px;

  /* počet log v jedné sadě */
  --items: 12;

  /* šířka celé sady */
  --group-width: calc(var(--items) * (var(--logo-width) + var(--gap)));
}

/* viewport */

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;  

  /* jemný fade okrajů */
mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 8%, black 18%, black 82%, rgba(0,0,0,0.2) 92%, transparent 100%);
-webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.2) 8%, black 18%, black 82%, rgba(0,0,0,0.2) 92%, transparent 100%);
}

/* jemný překryv krajů (lepší vizuál) */

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #03060D, rgba(3,6,13,0));
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #03060D, rgba(3,6,13,0));
}

/* nekonečný pás */

.marquee-track {
  display: flex;
  width: max-content;

  animation: marquee-scroll 28s linear infinite;
  animation-composition: accumulate;  

  will-change: transform;
  transform: translate3d(0,0,0);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* pauza při hoveru */

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

/* jedna sada log */

.marquee-group {
  display: flex;
  flex: 0 0 var(--group-width);   
}

/* položky */

.marquee-group a {
  flex: 0 0 auto;

  width: var(--logo-width);
  height: var(--logo-height);

  margin-right: var(--gap);

  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;  
  box-shadow: 0 0 3px rgba(0,191,255,0.4);  
}

.marquee-group a:hover {
  box-shadow: 0 0 6px rgba(0,191,255,0.8);
}

.marquee-group img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;

  opacity: 0.8;
  filter: grayscale(30%);

  transition: opacity 0.25s ease, filter 0.25s ease;

  display: block;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden; 
}

/* hover efekt */

.marquee-group a:hover img {
  opacity: 1;
  filter: grayscale(0%);     
}

/* animace */

@keyframes marquee-scroll {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    transform: translate3d(calc(-1 * var(--group-width)),0,0);
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .clients {
    --logo-width: 150px;
    --logo-height: 100px;
    --gap: 25px;
  }

}

/* ===============================
   SPODNÍ GLOW LINKA
================================ */

.clients::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,191,255,0.8),
    transparent
  );
  filter: blur(2px);
  pointer-events: none;
}

/* ===============================
   TEXT PŘES LINKU
================================ */

.clients::before {
display: none; /* none je vypnuto prvek se neukáže se na webu */
  content: 'Ad'; /* 👈 text */
  position: absolute;
  bottom: 0;
  right: 10%;              /* cca 10 % od pravé strany */
  transform: translateY(20%); /* přesně přes linku */
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  color: var(--accent-color);
  white-space: nowrap;
  z-index: 1;             /* NAD linkou */
  opacity: 0.3;
  pointer-events: none;
}

/*--------------------------------------------------------------
# Services Section - Latest Crypto News
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 100%);
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  border-radius: 5px;
/* box-shadow: 0px 0 8px rgba(0,191,255,0.5); */
}

.services .service-item .icon {
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 100%);
  color: var(--accent-color);
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  overflow: visible; /* důležité kvůli přesahu bylo hidden */  
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 0 3px rgba(0,191,255,0.4);
}

.services .service-item .icon img {
  width: 100%;
  height: 100%;
  border-radius: 5px;  
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.services .service-item .icon .category-badge {
  position: absolute;
  right: 8px;
  top: 0;
  transform: translateY(-80%);

  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  color: #fff;

  z-index: 10;
  opacity: 1;
  pointer-events: none;
}

.services .service-item .icon .category-badgetop {
  position: absolute;
  left: 8px;
  top: 0;
  transform: translateY(-80%);

  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  color: #fff;

  z-index: 10;
  opacity: 1;
  pointer-events: none;
}

.services .service-item h2 {
  text-align: left;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 18px;
  font-family: var(--mono-font);
  font-weight: 400;
  font-style: italic;
  transition: 0.3s;
  position: relative;
}

.services .service-item p {
  opacity: 0.8; /* Text: neviditelne 0 viditelne 1 */
  text-align: left;
  line-height: 18px;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  margin-bottom: 0;
}

.services .service-item:hover p {
  opacity: 1; /* Text: neviditelne 0 viditelne 1 */
}

.services .service-item a {
  color: #fff;
}

.services .service-item:hover .icon {
  box-shadow: 0px 0 20px rgba(0,191,255,0.6);
}

.services .service-item:hover h2 {
  color: var(--accent-color);
}

/* PAGINATION WRAPPER */
.services .pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* ČÍSLA A ŠIPKY */
.services .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--mono-font);
  font-size: 14px;
  background: rgba(3, 6, 13, 1);
  color: rgba(0,191,255,1);
  border: 1px solid rgba(0,191,255,0.2);
  transition: all 0.25s ease;
}

/* HOVER */
.services .page-link:hover {
  color: rgba(0,191,255,1);
  box-shadow: 0 0 8px rgba(0,191,255,0.5);
}

/* AKTIVNÍ STRÁNKA */
.services .page-link.active {
  color: #fff;
  background: rgba(3, 6, 13, 1);
  border-color: rgba(3, 6, 13, 1);
  box-shadow: 0 0 12px rgba(3, 6, 13, 1);
}

/* TEČKY … */
.services .page-dots {
  padding: 0 6px;
  color: rgba(0,191,255,1);
  font-size: 14px;
}

/* SECTION DIVIDER */
.services {
    padding:  50px 0 100px;
    position: relative;
}

/* SECTION DIVIDER */
.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# X-Tip Grafy Listing Section
--------------------------------------------------------------*/
/* ITEM WRAP */
.xtipgrafy .service-item {
  background: color-mix(in srgb, var(--default-color), transparent 100%);
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  max-width: 360px; 
  margin-left: auto;
  margin-right: auto;   
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Flags / badges
--------------------------------------------------------------*/
.xtipgrafy .xtip-flags-row {
  min-height: 20px;
  margin-bottom: -8px;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.xtipgrafy .xtip-flags-left {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.xtipgrafy .xtip-flags-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 3px;
  min-width: 44px;
  flex-wrap: wrap;
}

.xtipgrafy .xtip-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  font-family: var(--mono-font);
  font-weight: 400;
  line-height: 1.1;
}

.xtipgrafy .xtip-badge-featured {
  background: #00bfff;
  box-shadow: 0 0 08px rgba(255,255,255,0.8);
}

.xtipgrafy .xtip-badge-sponsored {
  background: rgba(255,255,255,0.0);
  color: rgba(255,255,255,0.5);  
}

.xtipgrafy .xtip-badge-trending {
  background: #ea580c;
  box-shadow: 0 0 12px rgba(255,255,255,0.8);
  white-space: nowrap;
}

.xtipgrafy .xtip-badge-new {
  background: #1F51FF;
  box-shadow: 0 0 14px rgba(255,255,255,0.8);
  white-space: nowrap;
}

/*--------------------------------------------------------------
# Flags dole
--------------------------------------------------------------*/
.xtipgrafy .xtip-flags-bottom {
  min-height: 20px;
  margin-top: -18px; /* opačný směr */
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* důležité pro spodní zarovnání */
  gap: 10px;
}

.xtipgrafy .xtip-flags-left-dole {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.xtipgrafy .xtip-flags-right-dole {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 3px;
  min-width: 44px;
  flex-wrap: wrap;
}

.xtipgrafy .xtip-badge-dole {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  font-family: var(--mono-font);
  font-weight: 400;
  line-height: 1.1;
}

.xtipgrafy .xtip-badge-sponsored-dole {
  color: var(--accent-color);
  opacity: 0.6;
  background: rgba(255,255,255,0.0);  
}

/*--------------------------------------------------------------
# Card wrap
--------------------------------------------------------------*/
.xtipgrafy .xtip-card-wrap {
  position: relative;
  z-index: 2;
  min-height: 170px;
  border-radius: 12px;
  box-shadow: 0px 0px 5px rgba(0,191,255,0.6);    
}

.xtipgrafy .service-item:hover .xtip-card-wrap {
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgba(0,191,255,0.6);
}

.xtipgrafy .service-item:hover .crypto-card {
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 20px color-mix(in srgb, var(--accent) 80%, transparent),
    0 0 0 1px rgba(0,0,0,.25) inset;
}

/*--------------------------------------------------------------
# Shared crypto card
--------------------------------------------------------------*/
.xtipgrafy .crypto-card {
  --accent: #00bfff;

  width: 100%;
  min-height: 185px; /* bylo 210px */
  padding: 10px 10px 8px; /* bylo 14px 14px 12px */
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  color: var(--default-color);

background:
  radial-gradient(
    600px 180px at 20% 0%,
    color-mix(in srgb, var(--accent) 22%, transparent),
    transparent 60%
  ),
  linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.25) inset;
}

.xtipgrafy .crypto-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .10;
  pointer-events: none;
}

/* Coin accents */
.xtipgrafy .crypto-card[data-coin="bitcoin"]     { --accent: #f7931a; }
.xtipgrafy .crypto-card[data-coin="ethereum"]    { --accent: #627eea; }
.xtipgrafy .crypto-card[data-coin="binancecoin"] { --accent: #f3ba2f; }
.xtipgrafy .crypto-card[data-coin="solana"]      { --accent: #8a5cff; }
.xtipgrafy .crypto-card[data-coin="monero"]      { --accent: #ff6600; }
.xtipgrafy .crypto-card[data-coin="litecoin"]    { --accent: #b5b5b5; }
.xtipgrafy .crypto-card[data-coin="cosmos"]      { --accent: #6f7cff; }

/*--------------------------------------------------------------
# Card top
--------------------------------------------------------------*/
.xtipgrafy .crypto-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px; /* původně 12px */
  position: relative;
  z-index: 1;
  min-height: 54px; /* původně 74px */
}

.xtipgrafy .crypto-left {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.xtipgrafy .crypto-right {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.xtipgrafy .crypto-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.xtipgrafy .crypto-logo {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15) inset;
}

.xtipgrafy .crypto-logo img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.xtipgrafy .crypto-name {
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .95;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}

.xtipgrafy .crypto-badge {
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Live card price / change / spark
--------------------------------------------------------------*/
.xtipgrafy .crypto-price {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.30);
  text-align: center;
  width: auto;
}

.xtipgrafy .crypto-price.flip {
  position: absolute;
  left: 50%;
  top: 20px; /* původně 34px */
  transform: translateX(-50%);
  display: inline-block;
  width: max-content;
  perspective: 600px;
  z-index: 1;
}

.xtipgrafy .crypto-price.flip .price-front,
.xtipgrafy .crypto-price.flip .price-back {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform .38s ease, opacity .38s ease;
  will-change: transform;
}

.xtipgrafy .crypto-price.flip .price-back {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: rotateX(-90deg);
}

.xtipgrafy .crypto-card.flipping .crypto-price.flip .price-front {
  transform: rotateX(90deg);
  opacity: 0;
}

.xtipgrafy .crypto-card.flipping .crypto-price.flip .price-back {
  transform: rotateX(0deg);
  opacity: 1;
}

.xtipgrafy .crypto-change {
  margin-top: 2px; /* původně 6px */
  padding-top: 2px; /* původně 6px */
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  text-align: right;
  position: relative;
  z-index: 1;
}

.xtipgrafy .crypto-change::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid currentColor;
  transform: translateY(-1px);
  opacity: .95;
}

.xtipgrafy .crypto-card.down .crypto-change::before {
  border-bottom: 0;
  border-top: 8px solid currentColor;
  transform: translateY(1px);
}

.xtipgrafy .crypto-spark {
  width: 100%;
  height: 78px;
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Promo card
--------------------------------------------------------------*/
.xtipgrafy .promo-card {
  --accent: #9b87ff;
  --accent2: rgba(155,135,255,.20);
}

.xtipgrafy .promo-logo {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 900;;
  line-height: 1;
}

.xtipgrafy .promo-value {
  position: absolute;
  left: 50%;
  top: 20px; /* původně 34px */
  transform: translateX(-50%);
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.30);
  text-align: center;
  white-space: nowrap;
  width: max-content;
  z-index: 1;
}

.xtipgrafy .promo-meta-line {
  margin-top: 2px; /* původně 6px */
  padding-top: 2px; /* původně 6px */
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 27px;
  box-sizing: border-box;
}

.xtipgrafy .promo-cta {
  margin: 0;
  padding: 0;
  font-weight: 900;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
  text-align: right;
  opacity: .88;
  display: block;
}

.xtipgrafy .promo-spark {
  width: 100%;
  height: 78px;
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  color: var(--accent);
  opacity: .95;
}

.xtipgrafy .promo-card.promo-up .promo-spark {
  color: #0a7a2f;
}

.xtipgrafy .promo-card.promo-down .promo-spark {
  color: #b00020;
}

/*--------------------------------------------------------------
# Hidden text blocks (currently commented in x-tip.php)
--------------------------------------------------------------*/
.xtipgrafy .service-item h2 {
  margin-top: 18px;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 18px;
  font-family: var(--mono-font);
  font-weight: 400;
  font-style: italic;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.xtipgrafy .service-item p {
  text-align: left;
  line-height: 24px;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.xtipgrafy .service-item:hover h2 {
  color: var(--accent-color);
}

.xtipgrafy .xtip-category-wrap,
.xtipgrafy .xtip-sponsored-wrap {
  position: relative;
  z-index: 2;
}

.xtipgrafy .xtip-sponsored-text {
  font-size: 14px;
  opacity: .9;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.xtipgrafy .pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.xtipgrafy .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--mono-font);
  font-size: 14px;
  background: rgba(3, 6, 13, 1);
  color: rgba(0,191,255,1);
  border: 1px solid rgba(0,191,255,0.2);
  transition: all 0.25s ease;
}

.xtipgrafy .page-link:hover {
  color: rgba(0,191,255,1);
  box-shadow: 0 0 8px rgba(0,191,255,0.5);
}

.xtipgrafy .page-link.active {
  color: #fff;
  background: rgba(3, 6, 13, 1);
  border-color: rgba(3, 6, 13, 1);
  box-shadow: 0 0 12px rgba(3, 6, 13, 1);
}

.xtipgrafy .page-dots {
  padding: 0 6px;
  color: rgba(0,191,255,1);
  font-size: 14px;
}

/* SECTION DIVIDER */
.xtipgrafy {
    padding:  50px 0 100px;
    position: relative;
}

/* SECTION DIVIDER */
.xtipgrafy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# Why Us Section - Partner Crypto News
--------------------------------------------------------------*/
.why-us .card-item {
  background: none;
  height: 270px;
  padding: 5px;
  padding-bottom: 5px; 
  transition: all ease-in-out 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 0 5px rgba(0,191,255,0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;  /* ⬅️ UKOTVENÍ DOLŮ */
}

.why-us .card-item:hover {
  box-shadow: 0px 0 5px rgba(0,191,255,0.8);
}

.why-us .card-item img {
  position: absolute;
  inset: 0;                        /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;               /* ⬅️ ořez bez deformace */
  object-position: center;
  transition: transform 0.3s ease; 
  z-index: 0;   
}

//.why-us .card-item:hover img {
//  transform: scale(1.1);
//}

.why-us .card-item::before {
  content: ""; 
  position: absolute; 
  pointer-events: none; /* ⬅️ důležité */ 
  inset: 0; 
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.2) 35%,
    rgba(0,0,0,0.05) 70%,
    rgba(0,0,0,0.0) 100%
  );
  transition: background 0.3s ease; 
  z-index: 1;
} 

.why-us .card-item:hover::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.6) 45%,
    rgba(0,0,0,0.2) 75%,
    rgba(0,0,0,0.05) 100%
  );
   /* ztmavení obrázku */
}

.why-us .card-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(-10%, 50%);
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  color: var(--accent-color);
  z-index: 10;
  opacity: 0.6;
}

.why-us .card-wrap {
  position: relative;
  overflow: visible;   /* ⬅️ nutné */
}

.why-us .card-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-size: 18px;
  font-family: var(--mono-font);
  font-weight: 700;
  padding: 0;
  margin: 20px 0;
  transition: transform 0.3s ease;
  transform-origin: left bottom;
}

.why-us .card-item:hover h4 {
  transform: scale(1.01);
 
}

.why-us .card-item p {
  line-height: 18px;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin: 0;
  padding: 0;
}

.why-us .card-item h4,
.why-us .card-item p {
  position: relative;
  z-index: 2;                      /* ⬅️ text nad obrázkem */
}

.why-us .card-item:hover h4 {
  color: color-mix(in srgb, var(--accent-color), transparent 0%);
}

.why-us .card-item:hover p {
  color: var(--contrast-color);
}

/* SECTION DIVIDER */
.why-us {
    padding: 100px 0;
    position: relative;
}

/* SECTION DIVIDER */
.why-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# Portfolio Section - Top Crypto News
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  position: relative;    
}

.portfolio .portfolio-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  box-shadow: 0px 0 5px rgba(0,191,255,0.3);    
}

.portfolio .portfolio-item:hover img {
  box-shadow: 0px 0 5px rgba(0,191,255,0.7);
}

.portfolio .portfolio-item .portfolio-info1 {
  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
  opacity: 1; /* Text: neviditelne 0 viditelne 1 */
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 10px 10px 0 10px;
  border-radius: 6px;  
}

.portfolio .portfolio-item .portfolio-info1 h4 {
  font-size: 18px;
  font-family: var(--mono-font);
  font-weight: 700;
  padding-right: 5px;
  margin: 0;    
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 30%);
  opacity: 0; /* Text: neviditelne 0 viditelne 1 */
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 10px 10px;
  border-radius: 6px; 
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-family: var(--mono-font);
  font-weight: 700;
  padding-right: 5px;  
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 18px;  
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  margin-bottom: 0;  
}

.portfolio .portfolio-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
}

.portfolio .portfolio-item:hover .portfolio-info1 {
  opacity: 0; /* Text: neviditelne 0 viditelne 1 */  
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1; /* Text: neviditelne 0 viditelne 1 */
//  bottom: 20px;
}

/* SECTION DIVIDER smazán */

/*--------------------------------------------------------------
# Koloflip – stavový carousel - Crypto X Tip - Projects
--------------------------------------------------------------*/
/* SECTION */
//.koloflip {
//  padding: 100px 0;
//  position: relative;
//}

.koloflip::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
  filter: blur(2px);
}

/* WRAPPERS */
.koloflip .koloflip-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  overflow: hidden;  
}

.koloflip .koloflip-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;  
}

.koloflip .koloflip-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ITEMS */
.koloflip .koloflip-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 270px;
  padding: 10px 10px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 10px 10px 10px 10px rgba(3, 6, 13, 0.5);
  opacity: 0;
  filter: blur(1px);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.6);  
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform;
}

.koloflip .koloflip-item.atatfar-left {
  transform: translate(-170%, -50%) scale(0.7);
  opacity: 0.65;
  z-index: 1;
}

.koloflip .koloflip-item.atfar-left {
  transform: translate(-140%, -50%) scale(0.8);
  opacity: 0.75;
  z-index: 2;
}

.koloflip .koloflip-item.far-left {
  transform: translate(-110%, -50%) scale(0.9);
  opacity: 0.85;
  z-index: 3;
}

.koloflip .koloflip-item.left {
  transform: translate(-80%, -50%) scale(1);
  opacity: 0.95;
  z-index: 4;
}

.koloflip .koloflip-item.center {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
  z-index: 6;
  filter: none;
  pointer-events: auto;
}

.koloflip .koloflip-item.right {
  transform: translate(-20%, -50%) scale(1);
  opacity: 0.95;
  z-index: 4;
}

.koloflip .koloflip-item.far-right {
  transform: translate(10%, -50%) scale(0.9);
  opacity: 0.85;
  z-index: 3;
}

.koloflip .koloflip-item.atfar-right {
  transform: translate(40%, -50%) scale(0.8);
  opacity: 0.75;
  z-index: 2;
}

.koloflip .koloflip-item.atatfar-right {
  transform: translate(70%, -50%) scale(0.7);
  opacity: 0.65;
  z-index: 1;
}

/* ARROWS */
.koloflip .koloflip-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--background-color);
  color: var(--default-color);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 5px 15px;
  opacity: 0.8;
  user-select: none;
}

.koloflip .koloflip-arrow.left {
  left: 10px;
}

.koloflip .koloflip-arrow.right {
  right: 10px;
}

.koloflip .koloflip-arrow:hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Shared crypto card scoped only to .koloflip
--------------------------------------------------------------*/
.koloflip .crypto-card {
  --accent: #00bfff;

  width: 100%;
  min-height: 210px;
  padding: 14px 14px 12px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  color: var(--default-color);

background:
  radial-gradient(
    600px 180px at 20% 0%,
    color-mix(in srgb, var(--accent) 22%, transparent),
    transparent 60%
  ),
  linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.25) inset;
}

.koloflip:hover .crypto-card {
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 20px color-mix(in srgb, var(--accent) 80%, transparent),
    0 0 0 1px rgba(0,0,0,.25) inset;
}

.koloflip .crypto-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .10;
  pointer-events: none;
}

.koloflip .koloflip-item.center .crypto-card {
  border-color: rgba(255,255,255,.16);
  box-shadow:
    0 18px 55px rgba(0,0,0,.55),
    0 0 0 1px rgba(0,0,0,.25) inset,
    0 0 60px var(--accent2);
}

/* Coin accents */
.koloflip .crypto-card[data-coin="bitcoin"]     { --accent: #f7931a; }
.koloflip .crypto-card[data-coin="ethereum"]    { --accent: #627eea; }
.koloflip .crypto-card[data-coin="binancecoin"] { --accent: #f3ba2f; }
.koloflip .crypto-card[data-coin="solana"]      { --accent: #8a5cff; }
.koloflip .crypto-card[data-coin="monero"]      { --accent: #ff6600; }
.koloflip .crypto-card[data-coin="litecoin"]    { --accent: #b5b5b5; }
.koloflip .crypto-card[data-coin="cosmos"]      { --accent: #6f7cff; }

/* TOP */
.koloflip .crypto-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.koloflip .crypto-left {
  min-width: 0;
  flex: 1 1 auto;
}

.koloflip .crypto-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.koloflip .crypto-logo {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15) inset;
}

.koloflip .crypto-logo img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.koloflip .crypto-name {
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .95;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}

.koloflip .crypto-right {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.koloflip .crypto-badge {
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
}

/* PRICE */
.koloflip .crypto-price {
  margin-top: 6px;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.30);
}

.koloflip .crypto-price.flip {
  position: relative;
  display: inline-block;
  perspective: 600px;
}

.koloflip .crypto-price.flip .price-front,
.koloflip .crypto-price.flip .price-back {
  display: inline-block;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform .38s ease, opacity .38s ease;
  will-change: transform;
}

.koloflip .crypto-price.flip .price-back {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: rotateX(-90deg);
}

.koloflip .crypto-card.flipping .crypto-price.flip .price-front {
  transform: rotateX(90deg);
  opacity: 0;
}

.koloflip .crypto-card.flipping .crypto-price.flip .price-back {
  transform: rotateX(0deg);
  opacity: 1;
}

/* CHANGE */
.koloflip .crypto-change {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  text-align: right;
  position: relative;
  z-index: 1;
}

.koloflip .crypto-change::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid currentColor;
  transform: translateY(-1px);
  opacity: .95;
}

.koloflip .crypto-card.down .crypto-change::before {
  border-bottom: 0;
  border-top: 8px solid currentColor;
  transform: translateY(1px);
}

/* SPARK */
.koloflip .crypto-spark {
  width: 100%;
  height: 78px;
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Promo card
--------------------------------------------------------------*/
.koloflip .promo-card {
  --accent: #9b87ff;
  --accent2: rgba(155,135,255,.20);
}

.koloflip .promo-logo {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.koloflip .promo-title {
  margin-top: 6px;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  opacity: .95;
}

.koloflip .promo-cta {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  opacity: .88;
}

.koloflip .promo-spark {
  width: 100%;
  height: 78px;
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  opacity: .95;
}

.koloflip .promo-card.promo-up .promo-spark {
  color: #0a7a2f;
}

.koloflip .promo-card.promo-down .promo-spark {
  color: #b00020;
}

/* Tlačítko */
.koloflip .btn-gets {
  color: var(--contrast-color);
  background: #000000;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 700;
  padding: 8px 25px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 100px;
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.08);
}

.koloflip .btn-gets:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 0 16px rgba(0, 191, 255, 0.18);
}

/* SECTION DIVIDER */
.koloflip {
    padding: 100px 0;
    position: relative;
}

.koloflip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h2 {
  font-size: 20px;
  font-family: var(--mono-font);  
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info h3 {
  font-size: 18px;
  font-family: var(--mono-font);  
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  font-family: var(--mono-font);  
  font-weight: 400;  
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-info i {
  font-size: 15px;
  font-family: var(--mono-font);  
  font-weight: 400; 
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description ul {
  font-size: 14px;
  font-family: var(--mono-font);  
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 20%);    
}

.portfolio-details .portfolio-description ul li+li {
}

.portfolio-details .portfolio-description i {
  font-size: 14px;
  font-family: var(--mono-font);  
  font-weight: 400; 
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.portfolio-details .portfolio-description hr {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 20px;
  font-family: var(--mono-font);  
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description h3 {
  font-size: 18px;
  font-family: var(--mono-font);  
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;  
  color: color-mix(in srgb, var(--default-color), transparent 20%); 
}

.portfolio-details .portfolio-description strong {
  padding: 0;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 0%);      
}

.portfolio-details a {
  color: #fff;
  font-size: 15px;  
  font-family: var(--mono-font);
  font-weight: 400;
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
//  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: #fff;
  transition: 0.3s;
}

.portfolio-details a.active {
  color: #fff;
  font-size: 15px;  
  font-family: var(--mono-font);
  font-weight: 400;
  border-color: var(--accent-color);
}

.portfolio-details a:hover {
  border-color: var(--accent-color);
}

/* SECTION DIVIDER */
.portfolio-details {
    padding: 50px 0;
    position: relative;
}

/* SECTION DIVIDER */
.portfolio-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# Payment Instructions
--------------------------------------------------------------*/
.payment-card,
.payment-description,
.payment-method-box,
.payment-note-box,
.payment-warning-box {
  background-color: var(--surface-color);
}

.payment-description {
  padding-top: 0;
  padding: 20px;  
  min-width: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.payment-card {
  min-width: 0;
  max-width: 1100px;
  margin: 0 auto 30px auto;
  position: relative;
  overflow: hidden;
}

.payment-method-box,
.payment-note-box,
.payment-warning-box {
  max-width: 900px;
  margin: 0 auto 22px auto;
  padding: 24px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  position: relative;
  overflow: hidden;
}

.payment-method-box::after,
.payment-note-box::after,
.payment-warning-box::after,
.payment-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12%;
  width: 76%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(0,191,255,0.65), transparent);
  filter: blur(1.5px);
}

.payment-method-box {
  scroll-margin-top: 120px;
}

.payment-note-box p,
.payment-warning-box p,
.payment-method-box p {
  margin-bottom: 12px;
}

.payment-warning-box {
  border-left: 2px solid rgba(255, 80, 80, 0.7);
}

.payment-warning-box p strong {
  color: #fff;
}

/* top layout: text vlevo, QR vpravo */
.payment-method-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}

.payment-method-text {
  flex: 0 1 520px;
  min-width: 0;
}

.payment-method-text h2,
.payment-method-text p {
  margin-top: 0;
  margin-bottom: 10px;
}

/* QR block */
.payment-qr-box {
  flex: 0 0 170px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 84%);
  padding: 18px 14px;
  box-shadow: inset 0 0 18px rgba(0, 191, 255, 0.04);
}

.payment-qr-title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 12px;
  font-family: var(--mono-font);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-qr {
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 8px;
}

.payment-qr img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* address + copy */
.payment-address-wrap {
  max-width: 720px;
  margin: 14px auto 16px auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.payment-address {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--mono-font);
  color: #fff;
  word-break: break-all;
  overflow-wrap: anywhere;
  box-shadow:
    inset 0 0 12px rgba(0, 191, 255, 0.05),
    0 0 14px rgba(0, 191, 255, 0.03);
}

.portfolio-details .payment-copy-btn,
.portfolio-details .payment-copy-btn:focus {
  color: var(--contrast-color);
  background: #000000;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 700;
  padding: 8px 25px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 100px;
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.08);
}

.portfolio-details .payment-copy-btn:hover,
.portfolio-details .payment-copy-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 0 16px rgba(0, 191, 255, 0.18);
}

.portfolio-details .payment-copy-btn.copied {
  background: color-mix(in srgb, var(--accent-color), transparent 8%);
}

/* tablet */
@media (max-width: 991px) {
  .payment-method-box,
  .payment-note-box,
  .payment-warning-box {
    padding: 20px;
    max-width: 100%;
  }

  .payment-card,
  .payment-description {
    max-width: 100%;
  }

  .payment-method-top {
    gap: 20px;
  }

  .payment-method-text {
    flex: 1 1 auto;
  }

  .payment-address-wrap {
    max-width: 100%;
  }

  .portfolio-details .payment-copy-btn,
  .portfolio-details .payment-copy-btn:focus {
    padding: 10px 18px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .payment-method-top {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .payment-method-text {
    flex: 1 1 auto;
  }

  .payment-qr-box {
    width: 100%;
    min-width: 0;
    padding: 16px 12px;
  }

  .payment-qr-title {
    text-align: left;
  }

  .payment-qr {
    width: 120px;
    height: 120px;
  }

  .payment-address-wrap {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 100%;
  }

  .payment-address {
    width: 100%;
    font-size: 12px;
    padding: 12px 14px;
  }

  .portfolio-details .payment-copy-btn,
  .portfolio-details .payment-copy-btn:focus {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .payment-method-box,
  .payment-note-box,
  .payment-warning-box,
  .portfolio-details .portfolio-info {
    padding: 18px;
  }

  .portfolio-details .portfolio-info h3,
  .portfolio-details .portfolio-description h2,
  .payment-method-box h2,
  .payment-note-box h2 {
    line-height: 1.4;
  }
}

/* very small phones */
@media (max-width: 480px) {
  .payment-method-box,
  .payment-note-box,
  .payment-warning-box,
  .portfolio-details .portfolio-info {
    padding: 16px;
  }

  .payment-address {
    font-size: 11px;
    line-height: 1.45;
  }

  .payment-qr {
    width: 108px;
    height: 108px;
  }

  .portfolio-details .payment-copy-btn,
  .portfolio-details .payment-copy-btn:focus {
    font-size: 13px;
    padding: 11px 14px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
/* SECTION */
.service-details {
  padding: 50px 0;
  position: relative;
}

.service-details::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
  filter: blur(2px);
}

/* HEADINGS / TEXT */
.service-details h2 {
  font-size: 20px;
  font-family: var(--mono-font);
  font-weight: 400;
}

.service-details p {
  font-size: 15px;
  font-family: var(--mono-font);
  font-weight: 400;
}

.service-details ul {
  list-style: disc;
//  padding: 0;
  padding-left: 30px;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
//  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  font-family: var(--mono-font);
  font-weight: 400;
  margin-right: 8px;
  color: var(--accent-color);
}

/* IMAGE */
.service-details .services-img {
  margin-bottom: 20px;
}

/* Tlačítko */
.service-details .opy-btn {
  color: var(--contrast-color);
  background: #000000;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 700;
  padding: 8px 25px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 100px;
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.08);
}

.service-details .opy-btn:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 0 16px rgba(0, 191, 255, 0.18);
}

/* Tlačítko Twitter Docs*/
.service-details .xopy-btn {
  color: var(--contrast-color);
  background: #000000;
  text-align: center;  
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 700;
  padding: 8px 25px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid white;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 100px;
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.08);
}

.service-details .xopy-btn:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 0 16px rgba(0, 191, 255, 0.18);
}

/*--------------------------------------------------------------
# Detail card wrap
--------------------------------------------------------------*/
.service-details .xtip-detail-card-wrap {
  margin-bottom: 24px;
}

.service-details .xtip-detail-card-wrap .crypto-card {
  min-height: 460px;
}

.service-details .xtip-detail-live-card {
  min-height: auto;
}

.service-details .xtip-detail-chart {
  display: block;
  width: 100%;
  height: 220px;
}

.service-details .xtip-detail-live-card .crypto-spark,
.service-details .xtip-detail-promo-card .promo-spark {
  display: block;
  width: 100%;
  height: 220px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
  color: var(--accent);
  opacity: .95;
}

/*--------------------------------------------------------------
# Shared crypto card scoped to .service-details
--------------------------------------------------------------*/
.service-details .crypto-card {
  --accent: #00bfff;

  width: 100%;
  min-height: 210px;
  padding: 14px 14px 12px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  color: var(--default-color);

background:
  radial-gradient(
    600px 180px at 20% 0%,
    color-mix(in srgb, var(--accent) 22%, transparent),
    transparent 60%
  ),
  linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.25) inset;
}

.service-details .crypto-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .10;
  pointer-events: none;
}

/* Coin accents */
.service-details .crypto-card[data-coin="bitcoin"]     { --accent: #f7931a; }
.service-details .crypto-card[data-coin="ethereum"]    { --accent: #627eea; }
.service-details .crypto-card[data-coin="binancecoin"] { --accent: #f3ba2f; }
.service-details .crypto-card[data-coin="solana"]      { --accent: #8a5cff; }
.service-details .crypto-card[data-coin="monero"]      { --accent: #ff6600; }
.service-details .crypto-card[data-coin="litecoin"]    { --accent: #b5b5b5; }
.service-details .crypto-card[data-coin="cosmos"]      { --accent: #6f7cff; }

/*--------------------------------------------------------------
# Card top
--------------------------------------------------------------*/
.service-details .crypto-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.service-details .crypto-left {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.service-details .crypto-right {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.service-details .crypto-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-details .crypto-logo {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15) inset;
}

.service-details .crypto-logo img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.service-details .crypto-name {
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .95;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}

.service-details .crypto-badge {
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Price / change / graph
--------------------------------------------------------------*/
.service-details .crypto-price {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.30);
  text-align: center;
  width: auto;
}

.service-details .crypto-price.flip {
  position: relative;
  display: inline-block;
  width: max-content;
  perspective: 600px;
  z-index: 1;
}

.service-details .crypto-price.flip .price-front,
.service-details .crypto-price.flip .price-back {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform .38s ease, opacity .38s ease;
  will-change: transform;
}

.service-details .crypto-price.flip .price-back {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: rotateX(-90deg);
}

.service-details .crypto-card.flipping .crypto-price.flip .price-front {
  transform: rotateX(90deg);
  opacity: 0;
}

.service-details .crypto-card.flipping .crypto-price.flip .price-back {
  transform: rotateX(0deg);
  opacity: 1;
}

.service-details .crypto-change {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  text-align: right;
  position: relative;
  z-index: 1;
}

.service-details .crypto-change::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid currentColor;
  transform: translateY(-1px);
  opacity: .95;
}

.service-details .crypto-card.down .crypto-change::before {
  border-bottom: 0;
  border-top: 8px solid currentColor;
  transform: translateY(1px);
}

.service-details .crypto-spark {
  width: 100%;
  height: 78px;
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Detail stats + chart switch
--------------------------------------------------------------*/
.service-details .xtip-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 16px;
}

.service-details .xtip-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
}

.service-details .xtip-stat-label {
  display: block;
  font-size: 11px;
  opacity: 0.75;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.service-details .xtip-stat-value {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.service-details .xtip-detail-stats-placeholder .xtip-stat-value {
  opacity: 0.75;
}

.service-details .xtip-detail-chart-switch {
  display: flex;
  gap: 8px;
  margin: 6px 0 12px;
}

.service-details .xtip-chart-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

.service-details .xtip-chart-btn:hover,
.service-details .xtip-chart-btn.active {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.service-details .xtip-detail-chart-switch-placeholder .xtip-chart-btn {
  opacity: 0.65;
  cursor: default;
}

/*--------------------------------------------------------------
# Promo card
--------------------------------------------------------------*/
.service-details .promo-card {
  --accent: #9b87ff;
  --accent2: rgba(155,135,255,.20);
}

.service-details .promo-logo {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.service-details .promo-price {
  position: relative;
  display: inline-block;
  width: max-content;
  perspective: 600px;
  z-index: 1;
}

.service-details .promo-meta-line {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 27px;
  box-sizing: border-box;
}

.service-details .promo-spark {
  width: 100%;
  height: 78px;
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  color: var(--accent);
  opacity: .95;
}

.service-details .promo-card.promo-up .promo-spark {
  color: #0a7a2f;
}

.service-details .promo-card.promo-down .promo-spark {
  color: #b00020;
}

/*--------------------------------------------------------------
# CTA buttons
--------------------------------------------------------------*/
.service-details .xtip-detail-cta .btn {
  font-family: var(--mono-font);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Right sidebar boxes
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 30px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list h3 {
  font-size: 18px;
  font-family: var(--mono-font);
  font-weight: 400;
}

.service-details .services-list p {
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
}

.service-details .services-list p strong {
  color: #fff;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  margin: 20px 0;
  color: #fff;
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: #fff;
  font-family: var(--mono-font);
  font-weight: 400;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-list p strong {
  color: #fff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.service-details .breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.service-details .breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
}

.service-details .breadcrumbs li + li::before {
  content: "›";
  margin: 0 8px;
  color: rgba(255,255,255,0.5);
}

.service-details .breadcrumbs a {
  text-decoration: none;
  color: #00bfff;
}

.service-details .breadcrumbs .current {
  color: #ffffff;
  opacity: 0.8;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .service-details .xtip-detail-stats {
    grid-template-columns: 1fr;
  }
}

/* SECTION DIVIDER */
.service-details {
    padding: 50px 0;
    position: relative;
}

/* SECTION DIVIDER */
.service-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# News Service Details Section
--------------------------------------------------------------*/
.news-service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;  
}

.news-service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0;
//  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: #fff;
  transition: 0.3s;
  width: 100%;
  max-width: 360px;      /* můžeš změnit podle potřeby */
  margin-left: auto;
  margin-right: auto;  
}

.news-service-details .services-list .xtipg {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.news-service-details .services-list a.active {
  color: #fff;
  font-family: var(--mono-font);
  font-weight: 400;
  border-color: var(--accent-color);
}

.news-service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.news-service-details .services-img {
  margin-bottom: 20px;
}

.news-service-details h2 {
  font-size: 20px;
  font-family: var(--mono-font);  
  font-weight: 400;
}

.news-service-details .services-list p strong {
  color: #fff;
}

/*--------------------------------------------------------------
# Nabídka článku
--------------------------------------------------------------*/
.news-service-details .card-item {
  background: none;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;    
  height: 150px;
  padding: 8px;
  padding-bottom: 2px; 
  transition: all ease-in-out 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0px 0 5px rgba(0,191,255,0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;  /* ⬅️ UKOTVENÍ DOLŮ */
}

.news-service-details .card-item img {
  position: absolute;
  inset: 0;                        /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;               /* ⬅️ ořez bez deformace */
  object-position: center;
  transition: transform 0.3s ease;
}

.news-service-details .card-item:hover {
  box-shadow: 0px 0 5px rgba(0,191,255,0.8);
}

.news-service-details .card-item::before {
  content: "";
  position: absolute;
  pointer-events: none;   /* ⬅️ důležité */
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.2) 35%,
    rgba(0,0,0,0.05) 70%,
    rgba(0,0,0,0.0) 100%
  );
  z-index: 1;
  transition: background 0.3s ease;  
}

.news-service-details .card-item:hover::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.6) 45%,
    rgba(0,0,0,0.2) 75%,
    rgba(0,0,0,0.05) 100%
  );
   /* ztmavení obrázku */
}

.news-service-details .card-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(-10%, 50%);
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  color: var(--accent-color);
  z-index: 10;
  opacity: 0.6;
}

.news-service-details .card-wrap {
  position: relative;
  overflow: visible;   /* ⬅️ nutné */
}

.news-service-details .card-item h4 {
  color: color-mix(in srgb, var(--accent-color), transparent 1%);
  font-size: 12px;
  font-family: var(--mono-font);
  font-weight: 400;
  padding: 0;
  margin: 10px 0 2px 0;
  transition: transform 0.3s ease;
  transform-origin: left bottom;
}

.news-service-details .card-item:hover h4 {
  transform: scale(1.02);
 
}

.news-service-details .card-item p {
  font-size: 10px;
  font-family: var(--mono-font);
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.news-service-details .card-item h4,
.news-service-details .card-item p {
  position: relative;
  z-index: 1;                      /* ⬅️ text nad obrázkem */
}

.news-service-details .card-item:hover h4,
.news-service-details .card-item:hover p {
  color: var(--contrast-color);
}
/*--------------------------------------------------------------
# /Nabídka článku
--------------------------------------------------------------*/

.news-service-details .services-list h3 {
  font-size: 18px;
  font-family: var(--mono-font);  
  font-weight: 400;
}

.news-service-details p {
  font-size: 15px;
  font-family: var(--mono-font);
  font-weight: 400;  
}

.news-service-details p a {
  font-size: 16px;
  font-family: var(--mono-font);
  font-weight: 700;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);  
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;    
}

.news-service-details p a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 0%);  
  transform: scale(1.05);  
}

.news-service-details .services-list p {
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;  
}

.news-service-details ul {
  list-style: disc;
//  padding: 0;
  padding-left: 30px;  
  font-size: 15px;
}

.news-service-details ul li {
  padding: 5px 0;
//  display: flex;
  align-items: center;
}

.news-service-details ul i {
  font-size: 15px;
  font-family: var(--mono-font);
  font-weight: 400;  
  margin-right: 8px;
  color: var(--accent-color);
}

.news-service-details .breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.news-service-details .breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;  
}

.news-service-details .breadcrumbs li + li::before {
  content: "›";
  margin: 0 8px;
  color: rgba(255,255,255,0.5);
}

.news-service-details .breadcrumbs a {
  text-decoration: none;
  color: #00bfff;
}

.news-service-details .breadcrumbs .current {
  color: #ffffff;
  opacity: 0.8;
}

/* x-tip v článku na boku */
/* ITEM WRAP */
.news-service-details .xtipg .service-item {
  background: color-mix(in srgb, var(--default-color), transparent 100%);
  text-align: center;
  padding: 20px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Flags / badges
--------------------------------------------------------------*/
.news-service-details .xtipg .xtip-flags-row {
  min-height: 20px;
  margin-bottom: -8px;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.news-service-details .xtipg .xtip-flags-left {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.news-service-details .xtipg .xtip-flags-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 3px;
  min-width: 44px;
  flex-wrap: wrap;
}

.news-service-details .xtipg .xtip-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  font-family: var(--mono-font);
  font-weight: 400;
  line-height: 1.1;
}

.news-service-details .xtipg .xtip-badge-featured {
  background: #00bfff;
  box-shadow: 0 0 08px rgba(255,255,255,0.8);
}

.news-service-details .xtipg .xtip-badge-sponsored {
  background: rgba(255,255,255,0.0);
  color: rgba(255,255,255,0.5);  
}

.news-service-details .xtipg .xtip-badge-trending {
  background: #ea580c;
  box-shadow: 0 0 12px rgba(255,255,255,0.8);
  white-space: nowrap;
}

.news-service-details .xtipg .xtip-badge-new {
  background: #1F51FF;
  box-shadow: 0 0 14px rgba(255,255,255,0.8);
  white-space: nowrap;
}

/*--------------------------------------------------------------
# Flags dole
--------------------------------------------------------------*/
.news-service-details .xtipg .xtip-flags-bottom {
  min-height: 20px;
  margin-top: -18px; /* opačný směr */
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* důležité pro spodní zarovnání */
  gap: 10px;
}

.news-service-details .xtipg .xtip-flags-left-dole {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.news-service-details .xtipg .xtip-flags-right-dole {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 3px;
  min-width: 44px;
  flex-wrap: wrap;
}

.news-service-details .xtipg .xtip-badge-dole {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  font-family: var(--mono-font);
  font-weight: 400;
  line-height: 1.1;
}

.news-service-details .xtipg .xtip-badge-sponsored-dole {
  color: var(--accent-color);
  opacity: 0.6;
  background: rgba(255,255,255,0.0);  
}

/*--------------------------------------------------------------
# Card wrap
--------------------------------------------------------------*/
.news-service-details .xtipg .xtip-card-wrap {
  position: relative;
  z-index: 2;
  min-height: 170px; /* min výška karty? */
}

.news-service-details .xtipg .xtip-card-wrap:hover {
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgba(0,191,255,0.6);
}

.news-service-details .xtipg:hover .crypto-card {
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 20px color-mix(in srgb, var(--accent) 80%, transparent),
    0 0 0 1px rgba(0,0,0,.25) inset;
}

/*--------------------------------------------------------------
# Shared crypto card
--------------------------------------------------------------*/
.news-service-details .xtipg .crypto-card {
  --accent: #00bfff;

  width: 100%;
  min-height: 210px; /* výška karty */
  padding: 10px 10px 8px; /* bylo 14px 14px 12px */
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  color: var(--default-color);

background:
  radial-gradient(
    600px 180px at 20% 0%,
    color-mix(in srgb, var(--accent) 22%, transparent),
    transparent 60%
  ),
  linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.25) inset;
}

.news-service-details .xtipg .crypto-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .10;
  pointer-events: none;
}

/* Coin accents */
.news-service-details .xtipg .crypto-card[data-coin="bitcoin"]     { --accent: #f7931a; }
.news-service-details .xtipg .crypto-card[data-coin="ethereum"]    { --accent: #627eea; }
.news-service-details .xtipg .crypto-card[data-coin="binancecoin"] { --accent: #f3ba2f; }
.news-service-details .xtipg .crypto-card[data-coin="solana"]      { --accent: #8a5cff; }
.news-service-details .xtipg .crypto-card[data-coin="monero"]      { --accent: #ff6600; }
.news-service-details .xtipg .crypto-card[data-coin="litecoin"]    { --accent: #b5b5b5; }
.news-service-details .xtipg .crypto-card[data-coin="cosmos"]      { --accent: #6f7cff; }

/*--------------------------------------------------------------
# Card top
--------------------------------------------------------------*/
.news-service-details .xtipg .crypto-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px; /* původně 12px */
  position: relative;
  z-index: 1;
  min-height: 54px; /* původně 74px */
}

.news-service-details .xtipg .crypto-left {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.news-service-details .xtipg .crypto-right {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.news-service-details .xtipg .crypto-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-service-details .xtipg .crypto-logo {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15) inset;
}

.news-service-details .xtipg .crypto-logo img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.news-service-details .xtipg .crypto-name {
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 13px;
  opacity: .95;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 160px;
}

.news-service-details .xtipg .crypto-badge {
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Live card price / change / spark
--------------------------------------------------------------*/
.news-service-details .xtipg .crypto-price {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.30);
  text-align: center;
  width: auto;
}

.news-service-details .xtipg .crypto-price.flip {
  position: absolute;
  left: 50%;
  top: 20px; /* původně 34px */
  transform: translateX(-50%);
  display: inline-block;
  width: max-content;
  perspective: 600px;
  z-index: 1;
}

.news-service-details .xtipg .crypto-price.flip .price-front,
.news-service-details .xtipg .crypto-price.flip .price-back {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform .38s ease, opacity .38s ease;
  will-change: transform;
}

.news-service-details .xtipg .crypto-price.flip .price-back {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: rotateX(-90deg);
}

.news-service-details .xtipg .crypto-card.flipping .crypto-price.flip .price-front {
  transform: rotateX(90deg);
  opacity: 0;
}

.news-service-details .xtipg .crypto-card.flipping .crypto-price.flip .price-back {
  transform: rotateX(0deg);
  opacity: 1;
}

.news-service-details .xtipg .crypto-change {
  margin-top: 2px; /* původně 6px */
  padding-top: 2px; /* původně 6px */
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  text-align: right;
  position: relative;
  z-index: 1;
}

.news-service-details .xtipg .crypto-change::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid currentColor;
  transform: translateY(-1px);
  opacity: .95;
}

.news-service-details .xtipg .crypto-card.down .crypto-change::before {
  border-bottom: 0;
  border-top: 8px solid currentColor;
  transform: translateY(1px);
}

.news-service-details .xtipg .crypto-spark {
  width: 100%;
  height: 110px; /* výška grafu */
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Promo card
--------------------------------------------------------------*/
.news-service-details .xtipg .promo-card {
  --accent: #9b87ff;
  --accent2: rgba(155,135,255,.20);
}

.news-service-details .xtipg .promo-logo {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 900;  
  line-height: 1;
}

.news-service-details .xtipg .promo-value {
  position: absolute;
  left: 50%;
  top: 20px; /* původně 34px */
  transform: translateX(-50%);
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.30);
  text-align: center;
  white-space: nowrap;
  width: max-content;
  z-index: 1;
}

.news-service-details .xtipg .promo-meta-line {
  margin-top: 2px; /* původně 6px */
  padding-top: 2px; /* původně 6px */
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 27px;
  box-sizing: border-box;
}

.news-service-details .xtipg .promo-cta {
  margin: 0;
  padding: 0;
  font-weight: 900;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
  text-align: right;
  opacity: .88;
  display: block;
}

.news-service-details .xtipg .promo-spark {
  width: 100%;
  height: 110px; /* výška grafu */
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  color: var(--accent);
  opacity: .95;
}

.news-service-details .xtipg .promo-card.promo-up .promo-spark {
  color: #0a7a2f;
}

.news-service-details .xtipg .promo-card.promo-down .promo-spark {
  color: #b00020;
}

/*--------------------------------------------------------------
# Hidden text blocks (currently commented in x-tip.php)
--------------------------------------------------------------*/
.news-service-details .xtipg .service-item h2 {
  margin-top: 18px;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 18px;
  font-family: var(--mono-font);
  font-weight: 400;
  font-style: italic;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.news-service-details .xtipg .service-item p {
  text-align: left;
  line-height: 24px;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.news-service-details .xtipg .service-item:hover h2 {
  color: var(--accent-color);
}

.news-service-details .xtipg .xtip-category-wrap,
.news-service-details .xtipg .xtip-sponsored-wrap {
  position: relative;
  z-index: 2;
}

.news-service-details .xtipg .xtip-sponsored-text {
  font-size: 14px;
  opacity: .9;
  margin-bottom: 0;
}

/* SECTION DIVIDER */
.news-service-details {
    padding: 50px 0;
    position: relative;
}

/* SECTION DIVIDER */
.news-service-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# Glow Linka Section Section
--------------------------------------------------------------*/
/* SECTION DIVIDER */
.glowx {
    padding: 50px 0;
    position: relative;
}

/* SECTION DIVIDER */
.glowx::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
    filter: blur(2px);
}

/*--------------------------------------------------------------
# Under Coming Soon Section
--------------------------------------------------------------*/
.under {
  --bg: #040912;
  --neon: #00d4ff;
  --white: #ffffff;
  --soft: rgba(255,255,255,0.65);

  color: var(--white);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  overflow: hidden;
}

.under,
.under * {
  box-sizing: border-box;
}

.under .scene {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #081b30, var(--bg) 70%);
}

/* ================= BACKGROUND X ================= */
.under .x-bg,
.under .x-glow {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 140% 140%;
  pointer-events: none;
}

.under .x-bg {
  background:
    linear-gradient(
      45deg,
      transparent 44%,
      rgba(0, 212, 255, 0.10) 50%,
      transparent 56%
    ),
    linear-gradient(
      -45deg,
      transparent 44%,
      rgba(0, 212, 255, 0.10) 50%,
      transparent 56%
    );
  opacity: 0.65;
}

.under .x-glow {
  background:
    linear-gradient(
      45deg,
      transparent 40%,
      rgba(0, 212, 255, 0.18) 50%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 40%,
      rgba(0, 212, 255, 0.18) 50%,
      transparent 60%
    );
  opacity: 0.50;
  animation: pulseX 6s ease-in-out infinite;
}

@keyframes pulseX {
  0%, 100% {
    opacity: 0.30;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.015);
  }
}

/* ================= CODE FLOW BACKGROUND ================= */
.under .code-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.under .code-line {
  position: absolute;
  left: -65%;
  white-space: nowrap;
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1;
  color: rgba(0, 212, 255, 0.80);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
  opacity: 0;
  transform: translate3d(0, 0, 0);
  animation: flowCode linear infinite;
}

@keyframes flowCode {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  8% {
    opacity: 0.7;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    transform: translate3d(180vw, 0, 0);
    opacity: 0;
  }
}

/* ================= CONTENT ================= */
.under .container {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 760px;
  padding: 40px 24px;
}

.under .logo img {
  max-height: 42px;
  max-width: 100%;
  height: auto;
  animation: glowPulseLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.35));
}

@keyframes glowPulseLogo {
  0%, 100% {
    filter: drop-shadow(0 0 6px rgba(0,212,255,0.35));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(0,212,255,0.55));
  }
}

.under .subtitle {
  margin-top: 16px;
  font-size: 1.2rem;
  color: var(--soft);
  letter-spacing: 0.5px;
}

.under .divider {
  width: min(60%, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  margin: 28px auto;
  box-shadow: 0 0 10px rgba(0,212,255,0.35);
}

.under .message {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.under .highlight {
  color: var(--neon);
  text-shadow: 0 0 5px rgba(0,212,255,0.55);
}

.under .loader {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--neon);
  animation: spin 1.8s linear infinite;
  margin: 0 auto;
  box-shadow:
    0 0 12px rgba(0,212,255,0.28),
    inset 0 0 10px rgba(0,212,255,0.18);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.under .footer {
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  z-index: 5;
}

@media (max-width: 768px) {
  .under .scene {
    min-height: 85svh;
  }

  .under .container {
    padding: 28px 18px;
  }

  .under .subtitle {
    font-size: 1rem;
  }

  .under .message {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .under .divider {
    width: 85%;
  }

  .under .code-line {
    font-size: 12px;
    color: rgba(0, 212, 255, 0.6);
  }

  .under .x-glow {
    opacity: 0.30;
  }
}

@media (prefers-reduced-motion: reduce) {
  .under .x-glow {
    animation: none;
  }

  .under .code-line {
    animation-duration: 24s;
  }

  .under .loader {
    animation-duration: 2.6s;
  }
}

/*--------------------------------------------------------------
# Statistics Section
--------------------------------------------------------------*/
.statistics {
  padding: 50px 0;
  position: relative;
}

.statistics::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(0,191,255,0.8), transparent);
  filter: blur(2px);
}

.statistics .statistics-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

/* TOP CARDS */
.statistics .statistics-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.statistics .statistics-card {
  --accent: var(--accent-color);
  --accent2: rgba(0, 191, 255, .18);

  min-height: 135px;
  padding: 18px 18px 16px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(500px 160px at 20% 0%, var(--accent2), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));

  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.25) inset;
}

.statistics .statistics-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .10;
  pointer-events: none;
}

.statistics .statistics-label {
  position: relative;
  z-index: 1;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 13px;
  font-family: var(--mono-font);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 14px;
}

.statistics .statistics-number {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 34px;
  font-family: var(--mono-font);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .2px;
  text-shadow: 0 2px 10px rgba(0,0,0,.30);
}

/* TABLE */
.statistics .statistics-subtitle {
  font-size: 20px;
  font-family: var(--mono-font);
  font-weight: 400;
  margin: 0 0 16px;
}

.statistics .statistics-table-wrap {
  max-width: 1000px;
  overflow-x: auto;
  border-radius: 12px;
}

.statistics .statistics-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;

  background:
    radial-gradient(600px 180px at 20% 0%, rgba(0,191,255,.13), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));

  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.25) inset;

  color: var(--default-color);
}

.statistics .statistics-table th,
.statistics .statistics-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  text-align: left;
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
}

.statistics .statistics-table th {
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.statistics .statistics-table tr:last-child td {
  border-bottom: none;
}

.statistics .statistics-table th:last-child,
.statistics .statistics-table td:last-child {
  width: 120px;
  text-align: right;
  white-space: nowrap;
}

.statistics .statistics-table a {
  color: var(--accent-color);
  text-decoration: none;
  transition: .3s;
}

.statistics .statistics-table a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 35%);
}

/* NOTE */
.statistics .statistics-note {
  max-width: 1000px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 12px;

  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  font-family: var(--mono-font);
  font-weight: 400;
  line-height: 1.6;

  background:
    radial-gradient(500px 160px at 20% 0%, rgba(0,191,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));

  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 10px 30px rgba(0,0,0,.30),
    0 0 0 1px rgba(0,0,0,.20) inset;
}

.statistics .statistics-note strong {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .statistics .statistics-cards {
    grid-template-columns: 1fr;
  }

  .statistics .statistics-card {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .statistics .statistics-table th,
  .statistics .statistics-table td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .statistics .statistics-number {
    font-size: 28px;
  }
}