/* Quick Navigation */
.quick-nav {
    position: fixed;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    width: 150px;
    border-radius: 0 10px 10px 0;
    z-index: 1000;
}

.quick-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-nav a:last-child {
    border-bottom: none;
}

.quick-nav a:hover {
    background: #FFD700;
    color: black;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #644c2c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: none; 
    z-index: 1000;
}

#backToTop:hover {
    background: #005f79;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #fafbfc;
    position: relative;
    z-index: 0;
    
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://img.freepik.com/free-photo/scrunched-up-paper-background_53876-88875.jpg?ga=GA1.1.1193671329.1748158142&semt=ais_hybrid&w=740');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}


header {
    background: #1a1a1a;
    color: white;
    padding: 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 40px;
    background-color: #0f0f0f; /* deep black/gray */
    box-shadow: none;
    font-family: 'Cinzel', serif; /* League-style elegant serif */
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content a {
    color: #d4af37; /* gold color */
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.header-content a {
    display: inline-block;
    width: 130px; /* uniform width */
    text-align: center;
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.header-content a:hover {
    color: #ffffff;
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.header-content a:hover::after {
    width: 100%;
}

.play-btn {
    background-color: #d4af37;
    color: #0a0a0a;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    padding: 10px 25px;
    border: 2px solid #d4af37;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.play-btn:hover {
    background-color: transparent;
    color: #d4af37;
}


.game-logo {
    width: 150px;
    height: auto;
    border-radius: 22px;
}

h1, h2 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

/* Sections */
main {
    
}

section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(15, 15, 15, 0.8);
    width: 100vw
        
}

.game-showcase {
  position: relative; /* Needed to absolutely position the logo inside */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: #0a0a0a; /* optional: dark background */
  height: 600px;
  width: 100vw;
  overflow: hidden;
}

.preview-video {
  width: 100vw;
  height: 600px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4); /* optional shadow */
  object-fit: cover;
  display: block;
  opacity: 30%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.center-logo {
  position: relative;
  z-index: 1;
  max-width: 40%;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.7));
}



.game-showcase p {
    font-size: 32px;
}

.game-features {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #0b1522;
    padding: 40px 0 100px;
    display: flex;
    justify-content: center;
    overflow: hidden; /* make sure background doesn't leak outside */
    z-index: 1;
}

.game-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background-image: url('../IMG/FEATUREBGGG.jpg');
    background-position: center;
    opacity: 0.04; /* adjust this for transparency */
}

.game-features > .content {
    max-width: 900px;          /* limit content width */
    width: 100%;               /* full width inside the max-width */
    padding: 0 20px;           /* optional horizontal padding */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    color: #222;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}
/* Image + Text Layout */
.image-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    margin: 50px 0;
}

.image-text img {
    width: 550px;
    height: auto;
    border-radius: 20px;
}

.image-text p {
    font-size: 32px;
}

/* About Team */
.about-team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    margin: 50px auto;
    max-width: 80%;
}

.about-team p {
    max-width: 500px;
    font-size: 18px;
}

.team-image {
    width: 700px;
    height: auto;
    border-radius: 20px;
}

/* Video Section - Adjusted to prevent full screen */
.game-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: url('../IMG/gamecover.png') no-repeat center center;
  background-size: cover;
  height: 600px; /* Full screen height */
  width: 100vw;
  overflow: hidden;

    

}

.game-preview::before {
   content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 0;
  pointer-events: none; /* ensures it doesn't block clicks */
}

.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.video-wrapper video {
  width: 70%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Game Links */
.game-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #008CBA;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #0f0f0f;
    color: white;
    padding: 10px;
    bottom: 0;
    width: 100%;
}

/* Character Section - Adjusted for black background */
.characters {
    position: relative;
    text-align: center;
    padding: 0px 0;
    color: white;
    margin: auto;
    border-radius: 15px;
    overflow: hidden; /* Clip background corners if needed */
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.51);
}

.characters::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../IMG/Charactersbg.jpg) no-repeat center center;
    background-size: cover;
    opacity: 0.05; /* Adjust as needed */
    z-index: -1;
}


.container {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
            box-sizing: border-box;
            overflow:hidden;
            
        }
        .left {
            flex: 1;
            padding-left: 8vw;
            max-width: 400px;
        }
        .right {
            flex: 1;
              max-width: 700px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .title {
            text-align: left;
            margin-bottom: 20px;
        }
        .title span {
            display: block;
            font-size: 1.2rem;
            letter-spacing: 2px;
            color: #222;
        }
        .title h1 {
            font-size: 3rem;
            font-weight: 700;
            font-style: italic;
            margin: 0;
            color: #19213a;
            letter-spacing: 2px;
        }
        .subtitle {
            margin: 20px 0 30px 0;
            color: #222;
            font-size: 1.1rem;
            max-width: 500px;
        }
        .buttons {
            margin-bottom: 40px;
        }
        .buttons button {
            font-size: 1rem;
            padding: 15px 30px;
            margin-right: 15px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            font-family: inherit;
            font-weight: 600;
            transition: background 0.2s;
        }
        .discover {
            background: #bfa25a;
            color: #222;
        }
        .play {
            background: #3bb3d6;
            color: #fff;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .hero-buttons button {
            background: #bfa25a;
            border: none;
            border-radius: 5px;
            color: #222;
            font-weight: 700;
            padding: 10px 20px;
            cursor: pointer;
            transition: background 0.3s;
            flex: 1 1 120px;
            text-align: center;
            
        }
        .hero-buttons button:hover, .hero-buttons button.active {
            background: #393939;
            color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
        }
        .champion-img-container {
            position: relative;
            width: 400px;
            height: 400px;
            margin-bottom: 30px;
        }
        .champion-img-container .circle {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 4px solid #bfa25a;
            border-radius: 50%;
            border-right-color: transparent;
            border-bottom-color: transparent;
            left: 0;
            top: 0;
            z-index: 1;
        }
        .champion-img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
            right: 0;
            border-radius: 50%;
            background: rgb(255, 255, 255);
            box-shadow: 0 0 10px rgba(0,0,0,0.15);
        }
        .champion-name {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #19213a;
            text-align: center;
            margin-bottom: 5px;
        }
        .champion-desc {
            font-size: 1rem;
            color: #888;
            text-align: center;
            max-width: 350px;
        }
        @media (max-width: 900px) {
            .container {
                flex-direction: column;
                padding: 30px 0;
            }
            .left, .right {
                padding: 0;
                width: 100%;
                max-width: none;
            }
            .champion-img-container {
                width: 250px;
                height: 250px;
                margin: 0 auto 30px auto;
            }
            .hero-buttons button {
                flex: 1 1 40%;
            }
        }
.h22 {
  font-size: 2.5rem;
  font-weight: 800;
  font-style: italic;
    color: white;
    
}

p.intro {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 0;
    
}

.carousel-container {
  position: relative;
  background: #12223e;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 0 15px #000a20;
}

.carousel-image {
  width: 800px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.carousel-image:hover {
  transform: scale(1.05);
}

.caption {
  margin-top: 12px;
  font-weight: bold;
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
}

.desc {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #bbbbbb;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.nav-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

button {
  background-color: #162c55;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2b4a96;
}



