* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #090909;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

body.hamburger-opened {
    overflow: hidden;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.navbar-wrapper {
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.navbar {
    margin: 25px 0;
    border-radius: 35px;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: min(1250px, 95%);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 995;
    transition: all 0.3s ease;
    height: 69px;
}

#navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ham-menu {
    display: none;
    cursor: pointer;
    color: #03befd;
    font-size: 35px;
}

.ham-menu.hidden {
    display: none !important;
}


.logo {
    font-size: 28px;
    font-weight: bold;
    color: #03befd;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 30px;
    flex-shrink: 0;
}

.logo:hover {
    text-shadow: 0 0 20px #03befd;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
}

.nav-links a:hover {
    color: #03befd;
    text-shadow: 0 0 20px #03befd;
}

.glass-effect {
    backdrop-filter: blur(25px);
    border: 1px solid #181d1d;
    transition: all 0.3s ease;
}




.footer {
    color: #fff;
    padding: 3rem 2rem;
    border-top: 2px solid #181d1d;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.footer-left {
    flex: 1;
}

.footer-left img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer p {
    font-size: 1rem;
    margin: 10px 0;
    opacity: 0.8;
}

.created-by {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #03befd;
}

.created-by:hover {
    transform: scale(1.03);
}

.powered-by {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #48b864;
}

.powered-by:hover {
    transform: scale(1.03);
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #03befd;
    transform: scale(1.2);
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h3 {
    color: #03befd;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-right ul {
    list-style: none;
}

.footer-right li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-right a:hover {
    color: #03befd;
    opacity: 1;
}

@media (max-width: 768px) {
    .footer {
        margin-top: 40px;
    }

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

    .footer-left img {
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-links {
        display: flex;
        justify-content: center;
        text-align: center;
    }
    
}

main {
	position: relative;
	z-index: 2;
	padding-top: 140px;
	min-height: 100vh;
}

.header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 0 20px;
}

h1 {
	font-size: 3.5rem;
	color: #00a6f4;
	font-weight: 700;
	margin-bottom: 1rem;
}

p {
	font-size: 1.25rem;
	color: white;
	opacity: 0.8;
}

.content {
	width: 100%;
	max-width: 800px;
	margin: auto;
	border-radius: 20px;
	backdrop-filter: blur(12px);
	height: auto;
	padding: 15px 20px;
	font-size: 17px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.content h1 {
    font-size: 2em;
    font-weight: bold;
    margin: 1em 0 0.5em;
}

.content h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin: 1em 0 0.5em;
}

.content h3 {
    font-size: 1.2em;
    font-weight: bold;
    margin: 1em 0 0.5em;
}

.content p {
    font-size: 1em;
    line-height: 1.6;
    margin: 0.5em 0;
}



.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 18px 32px;
    font-size: 18px;
    z-index: 996;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.cookie-banner a {
    color: #00a6f4;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cookie-accept {
    color: #03befd;
    border: 1px solid #03befd;
    border-radius: 999px;
    background: transparent;
    font-weight: 500;
    font-size: 1.1rem;
    width: 220px;
    margin-right: 10px;
    transition: transform 0.3s;
    padding: 10px;
    cursor: pointer;
}

#cookie-accept:hover {
    transform: scale(1.03);
}

#cookie-decline {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 999px;
    background: transparent;
    font-weight: 500;
    font-size: 1.1rem;
    width: 160px;
    margin-right: 10px;
    transition: transform 0.3s;
    padding: 10px;
    cursor: pointer;
}

#cookie-decline:hover {
    transform: scale(1.03);
}


@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        font-size: 16px;
    }

    .cookie-banner span {
        margin: 10px 70px;
        display: block;
        font-size: 23px;
    }

    .cookie-buttons {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    #cookie-accept,
    #cookie-decline {
        border-radius: 999px;
        text-align: center;
        width: 70%;
        font-size: 1rem;
        padding: 12px;
        margin: 0;
    }
}



@media (max-width: 900px) {
    .nav-links { display: none; }
    .toggle-hamburger { display: flex !important; }
}

.toggle-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    height: 30px;
    cursor: pointer;
    z-index: 998;
}

.toggle-hamburger .line {
    height: 3px;
    background-color: #00a6f4;
    border-radius: 2px;
    width: 30px;
    transition: background-color 0.25s;
}

.toggle-hamburger:hover .line {
    background-color: #00a6f4aa;
}

.toggle-hamburger.open .line:nth-child(1) { animation: hamburger-icon-firstline 1s forwards; }
.toggle-hamburger.open .line:nth-child(2) { animation: hamburger-icon-midline 1s forwards; }
.toggle-hamburger.open .line:nth-child(3) { animation: hamburger-icon-lastline 1s forwards; }

.toggle-hamburger.close .line:nth-child(1) { animation: hamburger-icon-firstline 1s forwards reverse; }
.toggle-hamburger.close .line:nth-child(2) { animation: hamburger-icon-midline 1s forwards reverse; }
.toggle-hamburger.close .line:nth-child(3) { animation: hamburger-icon-lastline 1s forwards reverse; }

@keyframes hamburger-icon-firstline {
    0% { transform: none; }
    100% { transform: rotate(45deg) translateY(7px) translateX(7px); }
}
@keyframes hamburger-icon-midline {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes hamburger-icon-lastline {
    0% { transform: none; }
    100% { transform: rotate(-45deg) translateY(-7px) translateX(7px); }
}


.hamburger {
    display: flex;
    margin: 25px 0;
    border-radius: 35px;
    position: fixed;
    top: 80px;
    width: 100%;
    max-width: min(1250px, 95%);
    padding: 0 40px;
    justify-content: space-between;
    align-items: center;
    z-index: 995;
    transition: all 0.3s ease;
    height: calc(100vh - 80px - 40px);
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 20px;
}

.hamburger-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 994;
    background: rgba(0, 0, 0, 0.6); 
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hamburger-wrapper.opened {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.hamburger-wrapper.closed {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

@media (min-width: 901px) {
    .hamburger-wrapper {
        display: none !important;
    }
}


.hamburger a {
    font-size: 35px;
    font-weight: 500;
}

