/* Base Styles */
:root {
    --neon-green: #3DFF4D;
    --electric-teal: #00E8E8;
    --jungle-purple: #7F00FF;
    --dark-foliage: #001409;
    --deep-jungle: #050210;
    --light-text: #E6FFF2;
    --dark-text: #132718;
    --card-bg: rgba(8, 20, 15, 0.8);
    --shadow-glow: 0 0 15px rgba(61, 255, 77, 0.5);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-green) var(--deep-jungle);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--deep-jungle);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--electric-teal);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(61, 255, 77, 0.7);
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 20, 9, 0.9), transparent);
}

.logo-container .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-green);
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(61, 255, 77, 0.5);
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    font-size: 1.1rem;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-green);
    transition: width 0.3s ease;
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--neon-green);
    border-radius: 3px;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--deep-jungle), var(--dark-foliage));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/1287083/pexels-photo-1287083.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.vines {
    position: absolute;
    width: 300px;
    height: 100%;
    background-repeat: no-repeat;
    z-index: 2;
}

.vines.left {
    left: 0;
    background-image: url('https://images.pexels.com/photos/1379636/pexels-photo-1379636.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-position: left;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
    mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
}

.vines.right {
    right: 0;
    background-image: url('https://images.pexels.com/photos/2649467/pexels-photo-2649467.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-position: right;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 3;
    position: relative;
}

.logo-hero {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(61, 255, 77, 0.7);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    text-shadow: 0 0 10px rgba(0, 232, 232, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--light-text);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--jungle-purple), var(--electric-teal));
    border: 2px solid var(--neon-green);
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--electric-teal), var(--neon-green));
    transition: width 0.5s ease;
    z-index: -1;
}

.cta-button:hover:before {
    width: 100%;
}

.cta-button:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(61, 255, 77, 0.5);
    color: var(--dark-text);
}

/* Section Styles */
section {
    padding: 5rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(61, 255, 77, 0.3);
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.tribal-divider {
    height: 3px;
    width: 150px;
    margin: 1rem auto;
    background: linear-gradient(to right, transparent, var(--electric-teal), var(--neon-green), var(--electric-teal), transparent);
    position: relative;
}

.tribal-divider:before, .tribal-divider:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--neon-green);
    border-radius: 50%;
    top: -3.5px;
}

.tribal-divider:before {
    left: 60px;
}

.tribal-divider:after {
    right: 60px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 232, 232, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(61, 255, 77, 0.3);
}

.game-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-img img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 20, 9, 0.9), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-now {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--jungle-purple), var(--electric-teal));
    color: var(--light-text);
    font-weight: 600;
    border-radius: 50px;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover .play-now {
    transform: translateY(0);
    box-shadow: 0 0 15px rgba(61, 255, 77, 0.5);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.3rem;
    color: var(--electric-teal);
    margin-bottom: 0.5rem;
}

.game-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.provider {
    font-size: 0.8rem;
    color: var(--neon-green);
    display: block;
    text-align: right;
}

/* Why Play Section */
.why-play {
    background: linear-gradient(rgba(0, 20, 9, 0.9), rgba(0, 20, 9, 0.9)), 
                url('https://images.pexels.com/photos/1547813/pexels-photo-1547813.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.benefit {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: rgba(5, 2, 16, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 232, 232, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(61, 255, 77, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.benefit-icon.lag-free {
    background-image: url('https://images.pexels.com/photos/1526/dark-blur-blurred-gradient.jpg?auto=compress&cs=tinysrgb&w=1600');
    border-radius: 50%;
    border: 2px solid var(--electric-teal);
    box-shadow: 0 0 15px rgba(0, 232, 232, 0.5);
}

.benefit-icon.no-signup {
    background-image: url('https://images.pexels.com/photos/911738/pexels-photo-911738.jpeg?auto=compress&cs=tinysrgb&w=1600');
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(61, 255, 77, 0.5);
}

.benefit-icon.instant {
    background-image: url('https://images.pexels.com/photos/268564/pexels-photo-268564.jpeg?auto=compress&cs=tinysrgb&w=1600');
    border-radius: 50%;
    border: 2px solid var(--jungle-purple);
    box-shadow: 0 0 15px rgba(127, 0, 255, 0.5);
}

.benefit h3 {
    font-size: 1.5rem;
    color: var(--electric-teal);
    margin-bottom: 1rem;
}

/* New Games Section */
.new-games {
    background-color: var(--deep-jungle);
}

.featured-game {
    display: flex;
    gap: 2rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 232, 232, 0.2);
}

.featured-img {
    flex: 1;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-info {
    flex: 1;
    padding: 2rem;
}

.featured-info h3 {
    font-size: 2rem;
    color: var(--electric-teal);
    margin-bottom: 1rem;
}

.featured-info p {
    margin-bottom: 1.5rem;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 3rem 5%;
    background: linear-gradient(rgba(0, 20, 9, 0.8), rgba(0, 20, 9, 0.8)), 
                url('https://images.pexels.com/photos/956981/milky-way-starry-sky-night-sky-star-956981.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: rgba(5, 2, 16, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(127, 0, 255, 0.3);
}

.disclaimer-content h2 {
    color: var(--jungle-purple);
    margin-bottom: 1rem;
}

.more-info {
    display: inline-block;
    margin-top: 1rem;
    color: var(--neon-green);
    border-bottom: 1px dashed var(--neon-green);
    padding-bottom: 2px;
}

/* Footer */
footer {
    background-color: var(--dark-foliage);
    border-top: 1px solid var(--neon-green);
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--jungle-purple), var(--electric-teal), var(--neon-green));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 4rem 5% 2rem;
}

.footer-logo .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--light-text);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h3 {
    color: var(--electric-teal);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: var(--light-text);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.link-group a:hover {
    color: var(--neon-green);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(61, 255, 77, 0.2);
    font-size: 0.9rem;
}

/* Game Page Styles */
.game-container {
    padding: 8rem 5% 4rem;
    min-height: 100vh;
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-header h1 {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.game-header p {
    max-width: 800px;
    margin: 0 auto;
}

.game-iframe-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 232, 232, 0.3);
    border: 1px solid var(--electric-teal);
}

.back-home {
    display: block;
    width: fit-content;
    margin: 2rem auto;
    padding: 0.8rem 2rem;
    background-color: var(--jungle-purple);
    color: var(--light-text);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home:hover {
    background-color: var(--neon-green);
    color: var(--dark-foliage);
    box-shadow: 0 0 15px rgba(61, 255, 77, 0.5);
}

/* Contact Page */
.contact-section {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
}

.contact-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 2;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 232, 232, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--electric-teal);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(5, 2, 16, 0.7);
    border: 1px solid var(--electric-teal);
    border-radius: 5px;
    color: var(--light-text);
    transition: box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 232, 232, 0.5);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--jungle-purple), var(--electric-teal));
    border: none;
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    box-shadow: 0 0 15px rgba(61, 255, 77, 0.5);
    transform: translateY(-5px);
}

/* Legal Pages */
.legal-container {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 232, 232, 0.2);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--electric-teal);
    margin: 2.5rem 0 1rem;
}

.legal-content p, .legal-content li {
    margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}