* {
    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(1210px, 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: #ff6900;
    font-size: 35px;
}

.ham-menu.hidden {
    display: none !important;
}


.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff6900;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 30px;
    flex-shrink: 0;
}

.logo:hover {
    text-shadow: 0 0 20px #ff6900;
    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: #ff6900;
    text-shadow: 0 0 20px #ff6900;
}

.glass-effect {
    backdrop-filter: blur(25px);
    border: 1px solid #181d1d;
    transition: all 0.3s ease;
}

.hero {
    margin-top: 130px;
    display: flex;
    min-height: 80vh;
    flex-wrap: wrap;
    justify-content: space-between;
}

.heroLeft {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
}

.heroLeft, .heroRight {
    flex: 1 1 450px;
}

.heroLeft h3 {
    font-size: 70px;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-align: left;
}

.heroLeft p {
    font-size: 20px;
    text-align: left;
}

.heroLeft .buttonsGrid {
    margin-top: 30px;
    display: flex;
    align-items: start;
    justify-content: start;
}

.cta-button {
    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;
}

.cta-button:hover {
    transform: scale(1.03);
}

.cta-button-blue{
    color: #ff6900;
    border: 1px solid #ff6900;
    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;
}

.cta-button-blue:hover {
    transform: scale(1.03);
}

.heroRight {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

@media (max-width: 940px) {
    .hero { gap: 70px; }
    .heroLeft h3 { text-align: center; }
    .heroLeft p { text-align: center; }
    .heroLeft, .heroRight {
        align-items: center;
        width: 100%;
    }
    .heroRight { padding: auto; }
}

.hero-feature {
    display: flex;
    background: transparent;
    width: min(400px, 100%);
    height: 100px;
    font-size: 72px;
    padding: 20px;
    border-radius: 15px;
    align-items: center;
    gap: 15px;
}

.hero-feature i {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6900;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, rgba(255, 106, 0, 0.05) 100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-feature-content {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.hero-feature-content h4 {
    font-size: 22.5px;
    line-height: 1;
}

.hero-feature-content p {
    font-size: 17.5px;
    line-height: 1;
    color: #ffffffa8;
}

.hero-feature:hover i {
    box-shadow: #ff690021 0 5px 15px;
    font-size: 28px;
}

.hero-feature:hover {
    transform: translateX(10px) scale(1.02);
}

.about-us {
    display: flex;
    min-height: 80vh;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.aboutLeft, .aboutRight {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex: 1 1 150px;
}

.aboutRight {
    align-items: center;
}

.aboutLeft h3 {
    font-size: 2.5rem;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-align: left;
}

.aboutLeft p {
    font-size: 20px;
    text-align: left;
    margin-bottom: 20px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
    border: 1px solid #181d1d;
    border-radius: 15px;
    transition-duration: 0.5s;
    width: 400px;
}

.feature-card:hover {
    transform: scale(1.03) translateY(-5px);
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.feature-card i {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6900;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1) 0%, rgba(255, 106, 0, 0.05) 100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.feature-card:hover i {
   box-shadow: #ff690021 0 5px 15px;
    font-size: 28px;
}

@media (max-width: 940px) {
    .about-us {
        margin-top: 60px;
        flex-direction: column;
        gap: 50px;
    }

    .aboutLeft,
    .aboutRight {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .aboutLeft h3,
    .aboutLeft p {
        text-align: center;
    }

    .aboutLeft .buttonsGrid {
        justify-content: center;
    }

    .aboutRight {
        height: auto;
        text-align: left;
    }

    .feature-card {
        position: relative;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .feature-card {
        width: 100%;
    }

    .mobile-hide {
        display: none;
    }
}


.games {
  padding: 60px 20px;
}

.games-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.game {
  width: 370px;
  height: 370px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-sizing: border-box;
  cursor: pointer;
}

.game img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.game:hover img {
  filter: blur(5px) brightness(0.5);
  transform: scale(1.05);
}

.game .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  z-index: 2;
}

.game:hover .overlay {
  opacity: 1;
}

.overlay h4 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1rem;
  opacity: 0.85;
}



.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;
}

.createdBy {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #ff6900;
}

.createdBy:hover {
    transform: scale(1.03);
}

.poweredBy {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #48b864;
}

.poweredBy: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: #ff6900;
    transform: scale(1.2);
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h3 {
    color: #ff6900;
    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: #ff6900;
    opacity: 1;
}

@media (max-width: 768px) {
    .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;
    }
    
}

.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: #ff6900;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cookie-accept {
    color: #ff6900;
    border: 1px solid #ff6900;
    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: #ff6900;
    border-radius: 2px;
    width: 30px;
    transition: background-color 0.25s;
}

.toggle-hamburger:hover .line {
    background-color: #ff6900aa;
}

.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;
}