@font-face {
    font-family: 'font';
    src: url("./fonts/font.woff") format("woff");
    src: url("./fonts/font.tff") format("ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    color: #E0E0E0;
    overflow: auto;
    margin: 0 auto;
    height: 100vh;
    background: linear-gradient(-90deg, #000000, #1a120b, #442e08, #1a120b, #000000);
    background-size: 200% 200%;
    animation: gradientShift 5s linear infinite;
    font-family: 'font', sans-serif;
}

@keyframes gradientShift {
    0% {
        background-position: 200% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.glow-effect {
    max-height: 100%;
    color: rgb(255, 255, 255);
    text-shadow: 
        0 0 2px rgba(177, 147, 45, 0.4),
        0 0 5px rgba(159, 130, 38, 0.3), 
        0 0 8px rgba(212, 175, 55, 0.2);
    position: relative;
    display: inline-block;
}

.glow-effect.animated {
    
    animation: glow-pulse 5s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from {
        text-shadow: 
            0 0 2px rgba(212, 175, 55, 0.3),
            0 0 5px rgba(212, 175, 55, 0.2);
    }
    to {
        text-shadow: 
            0 0 5px rgba(212, 175, 55, 0.4),
            0 0 20px rgba(212, 175, 55, 0.3);
    }
}

.content {
    position: relative;
    z-index: 1;
    color: #d4af37d3;
    text-align: center;
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    max-width: 80%;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    width: 85%;
    max-width: 85%;
}

@media screen and (max-device-width: 480px) {
    h1 {
        max-width: 80%;
        max-height: 40%;
        font-size: 1.2rem;
    }
}


.logo {
    margin-top: 2.5%;
    margin-bottom: 10px;
    display: block;
    margin-top: 5%;
    width: 65vw;
    height: auto;
    max-width: 350px;
    max-height: 350px;
}

@media (max-width: 768px) {
    .logo {
        width: 50vw;
        max-width: 200px;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo-container {
    isolation: isolate;
}

.logo-img {
    position: relative;
}

.logo-img::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: #d4af37;
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
}

.logo-img2 {
    position: relative;
    margin-bottom: 10px;
}

.logo-img2::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: #d4af37;
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
}

.logo-container {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 2.5%;
    display: inline-block;
    padding: 20px;
}

.logo-img {
    height: auto;
    filter: drop-shadow(0 0 20px #d4af37) 
            drop-shadow(0 0 40px #d4af37);
    animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
    from { filter: drop-shadow(0 0 10px #d4af37); }
    to { filter: drop-shadow(0 0 40px #d4af37); }
}

a {
  color: inherit;
  text-decoration: none;
}

.strelochka {
    height: 1.2rem;
    width: 1.2rem;
}

.tablica {
  margin: 0 auto;
  padding: 0;
  width: 80%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.5rem;
}

@media screen and (max-device-width: 480px) {
    .tablica {
        max-width: 80%;
        max-height: 40%;
        font-size: 1.0rem;
    }
}

.h21 {
    max-width: 100%;
    max-height: 100%;
    font-size: 2.5rem;
}

@media screen and (max-device-width: 480px) {
    .h21 {
        max-width: 80%;
        max-height: 40%;
        font-size: 1.0rem;
    }
}

.tx {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-device-width: 480px) {
    .tx {
        max-width: 80%;
        max-height: 40%;
        font-size: 1.0rem;
    }
}

b {
    font-size: 2.5rem;
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-device-width: 480px) {
    b {
        max-width: 80%;
        max-height: 40%;
        font-size: 1.2rem;
    }
}

p {
    font-size: 2.5rem;
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-device-width: 480px) {
    p {
        max-width: 80%;
        max-height: 40%;
        font-size: 1.2rem;
    }
}

.margin {
    margin-bottom: 50px;
}

.margin2 {
    margin-bottom: 2%px;
}

.last {
    margin-bottom: 30px;
}

.fixed-icon {
    font-style: normal;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    overflow: visible !important;
    box-sizing: border-box;
    padding: none;
    background: initial;
}

.fixed-icon:hover {
    background: #333;
}



.sidebar {
    background: #0f0f0f;
    overflow: hidden;
    max-width: 70%;
    align-items: center;
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    font-family: 'font', sans-serif;
    z-index: 999;
    transition: all 0.5s ease;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.sidebar-content {
    background-color: #000000;
    clip-path: polygon(
        7px 0%,
        calc(100% - 7px) 0%,
        100% 5px,
        100% calc(100% - 5px),
        calc(100% - 7px) 100%,
        7px 100%,
        0% calc(100% - 7px),
        0% 7px
    );
    border: 8px solid #454545;
    margin: 20px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    font-size: 0.7vw;
    padding: 0;
    width: calc(100% - 16px);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .sidebar-content {
        width: 90%;
        font-size: 1.2vw;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .sidebar-content {
        width: 95%;
        font-size: 1.5vw;
    }
}

.sidebar-data11, .sidebar-data22, .sidebar-data33 {
    color: white;
    display: block;
    -webkit-tap-highlight-color: transparent;
    overflow: visible ;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 20px 0;
    margin: 0;
    text-align: center;
    position: relative;
    background: initial;
}

.sidebar-data11:hover, .sidebar-data22:hover, .sidebar-data33:hover {
    width: 100%;
    max-width: 100%;
    display: block;
    background-color: #454545;
}

.unstyled-button {
    -webkit-tap-highlight-color: transparent;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: center;
}

.unstyled-button:active {
    width: 100%;
    max-width: 100%;
    display: block;
    -webkit-tap-highlight-color: transparent;
    background-color: #454545;
    overflow: visible;
    transform: none;
    box-sizing: border-box;
    padding: auto;
    background-image: none;
}

.sidebar-data11:active, .sidebar-data22:active, .sidebar-data33:active {
    width: 100%;
    max-width: 100%;
    display: block;
    -webkit-tap-highlight-color: transparent;
    background-color: #454545;
    overflow: visible ;
    transform: none;
    box-sizing: border-box;
    padding: auto;
    background-image: none;
}

.report {
    max-width: 80%;
}