/* 🎮 Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Lato:wght@300;400;700&family=Luckiest+Guy&display=swap');

/* 🌿 Global Styling */
body {
    background: linear-gradient(45deg, #2E7D32, #FFC107, #D32F2F);
    animation: jungleWave 5s infinite alternate ease-in-out;
    font-family: "Lato", sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* 🌀 Animated Background */
@keyframes jungleWave {
    0% { background: linear-gradient(45deg, #2E7D32, #FFC107, #D32F2F); }
    100% { background: linear-gradient(45deg, #D32F2F, #FFA500, #2E7D32); }
}

/* 🎬 Titles */
h1, h2 {
    font-family: "Bangers", cursive;
    font-size: 2.8em;
    color: #FFA500;
    text-shadow: 3px 3px 10px rgba(255, 165, 0, 1);
}

/* 📜 Subtitles */
h3 {
    font-family: "Luckiest Guy", cursive;
    font-size: 2em;
    color: #FFC107;
    text-shadow: 3px 3px 10px rgba(255, 193, 7, 1);
}

/* 📄 Content Text */
p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 900px;
    margin: auto;
    text-align: justify;
}

/* 🌟 Buttons */
button {
    background: #FFC107;
    color: #222;
    padding: 12px 20px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
}

button:hover {
    background: #FFA500;
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(255, 165, 0, 1);
}

/* 🏯 STATIC NAVBAR */
.toonwarriorsjungle-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(45deg, #2E7D32, #FFC107);
    padding: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

/* 🌟 LOGO */
.toonwarriorsjungle-logo h1 {
    font-family: "Bangers", cursive;
    font-size: 2em;
    color: #D32F2F;
    text-shadow: 3px 3px 10px rgba(255, 69, 0, 1);
}

/* 📜 MENU ITEMS */
.toonwarriorsjungle-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.toonwarriorsjungle-menu li {
    display: inline;
}

.toonwarriorsjungle-menu a {
    text-decoration: none;
    font-size: 1.2em;
    font-family: "Luckiest Guy", cursive;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.toonwarriorsjungle-menu a:hover {
    background: #FFA500;
    color: #222;
    transform: scale(1.1);
}


/* 🎭 BUSINESS SUMMARY SECTION */
.toonwarriorsjungle-business-summary {
    height: 85vh;
    background: url('herobg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* 🔥 BUSINESS CONTENT */
.toonwarriorsjungle-business-content {
    max-width: 850px;
    background: rgba(0, 0, 0, 0.75);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1.5s ease-in-out;
}

/* 🏯 BUSINESS TITLE */
.toonwarriorsjungle-business-content h2 {
    font-size: 2.5em;
    font-family: "Cinzel", serif;
    color: #FFC107;
    text-shadow: 3px 3px 12px rgba(255, 193, 7, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 📝 BUSINESS PARAGRAPHS */
.toonwarriorsjungle-business-content p {
    font-size: 1.3em;
    font-family: "Lora", serif;
    color: #ddd;
    line-height: 1.8;
    text-align: justify;
    margin-top: 15px;
}

/* 🎮 PLAY NOW BUTTON */
.toonwarriorsjungle-play-now {
    display: inline-block;
    text-decoration:none;
    margin-top: 25px;
    padding: 15px 30px;
    font-size: 1.4em;
    font-family: "Luckiest Guy", cursive;
    text-transform: uppercase;
    color: #fff;
    background: #D32F2F;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

/* 🔥 BUTTON HOVER EFFECT */
.toonwarriorsjungle-play-now:hover {
    background: #FF4500;
    transform: scale(1.1);
    box-shadow: 0px 0px 15px rgba(255, 69, 0, 1);
}

/* 💥 FADE-IN EFFECT */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}





/* 🎭 ABOUT SECTION */
.toonwarriorsjungle-about {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* 🔥 ABOUT CONTENT */
.toonwarriorsjungle-about-content {
    max-width: 900px;
    margin: auto;
    background: rgba(20, 20, 20, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-in-out;
}

/* 🏯 ABOUT TITLE */
.toonwarriorsjungle-about-content h2 {
    font-size: 2.5em;
    font-family: "Cinzel", serif;
    color: #FFC107;
    text-shadow: 3px 3px 12px rgba(255, 193, 7, 1);
    text-transform: uppercase;
}

/* 📜 PARAGRAPH STYLING */
.toonwarriorsjungle-about-content p {
    font-size: 1.3em;
    font-family: "Lora", serif;
    color: #ddd;
    line-height: 1.8;
    text-align: justify;
    margin-top: 15px;
}

/* 🏹 SUBTITLES */
.toonwarriorsjungle-about-content h3 {
    font-size: 2em;
    font-family: "Luckiest Guy", cursive;
    color: #FFA500;
    margin-top: 25px;
    text-shadow: 3px 3px 10px rgba(255, 165, 0, 1);
}

/* ⚔️ BULLETED LIST */
.toonwarriorsjungle-about-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.toonwarriorsjungle-about-content li {
    font-size: 1.3em;
    font-family: "Lora", serif;
    color: #FFC107;
    padding: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease-in-out;
}

/* 🔥 LIST ITEM HOVER EFFECT */
.toonwarriorsjungle-about-content li:hover {
    transform: translateX(10px);
    color: #FF4500;
}

/* 💥 FADE-IN EFFECT */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* 🎮 ABOUT EACH GAME SECTION */
.toonwarriorsjungle-about-games {
    padding: 80px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
}

/* 🏯 SECTION TITLE */
.toonwarriorsjungle-about-games h2 {
    font-size: 2.5em;
    font-family: "Cinzel", serif;
    color: #FFC107;
    text-shadow: 3px 3px 12px rgba(255, 193, 7, 1);
    margin-bottom: 40px;
}

/* 📜 GAME BOXES */
.toonwarriorsjungle-game-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
    background: rgba(20, 20, 20, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
}



/* 🎭 GAME IMAGE */
.toonwarriorsjungle-game-box img {
    width: 45%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* 🔥 IMAGE HOVER EFFECT */
.toonwarriorsjungle-game-box img:hover {
    transform: scale(1.05);
}

/* 📜 GAME INFO */
.toonwarriorsjungle-game-info {
    width: 50%;
    text-align: left;
}

/* 🏆 GAME TITLE */
.toonwarriorsjungle-game-info h3 {
    font-size: 2em;
    font-family: "Luckiest Guy", cursive;
    color: #FFA500;
    margin-bottom: 10px;
    text-shadow: 3px 3px 10px rgba(255, 165, 0, 1);
}

/* 🎮 GAME DESCRIPTION */
.toonwarriorsjungle-game-info p {
    font-size: 1.2em;
    font-family: "Lora", serif;
    color: #ddd;
    line-height: 1.6;
    text-align: justify;
}

/* 🔥 GAME BOX HOVER EFFECT */
.toonwarriorsjungle-game-box:hover {
    transform: scale(1.02);
}


/* ❓ FAQ SECTION */
.toonwarriorsjungle-faq {
    padding: 80px 20px;
    text-align: center;
    background:  rgba(20, 20, 20, 0.8);
}

/* 🏯 FAQ TITLE */
.toonwarriorsjungle-faq h2 {
    font-size: 2.5em;
    font-family: "Cinzel", serif;
    color: #FFC107;
    text-shadow: 3px 3px 12px rgba(255, 193, 7, 1);
    margin-bottom: 40px;
}

/* 🔹 FAQ CONTAINER */
.toonwarriorsjungle-faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

/* 🎭 FAQ ITEM */
.toonwarriorsjungle-faq-item {
    background: rgba(20, 20, 20, 0.9);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}

/* 🛡️ FAQ QUESTION */
.toonwarriorsjungle-faq-question {
    width: 100%;
    padding: 15px;
    font-size: 1.3em;
    font-family: "Luckiest Guy", cursive;
    color: #FFA500;
    text-shadow: 3px 3px 10px rgba(255, 165, 0, 1);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

/* 🔥 BUTTON HOVER */
.toonwarriorsjungle-faq-question:hover {
    background: rgba(255, 69, 0, 0.2);
}

/* 🔽 ICON TO EXPAND FAQ */
.toonwarriorsjungle-faq-question span {
    font-size: 1.5em;
    transition: transform 0.3s ease-in-out;
}

/* 📜 FAQ ANSWERS */
.toonwarriorsjungle-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    padding: 0 15px;
}

/* 📝 FAQ ANSWER TEXT */
.toonwarriorsjungle-faq-answer p {
    font-size: 1.2em;
    font-family: "Lora", serif;
    color: #ddd;
    line-height: 1.6;
    padding: 15px 0;
}

/* 💥 ACTIVE FAQ EFFECT */
.toonwarriorsjungle-faq-item.active .toonwarriorsjungle-faq-answer {
    max-height: 200px;
}

.toonwarriorsjungle-faq-item.active .toonwarriorsjungle-faq-question span {
    transform: rotate(45deg);
}


/* 🔹 FAQ QUESTION HOVER FIX */
.toonwarriorsjungle-faq-question:hover {
    background: rgba(255, 165, 0, 0.2);
    text-shadow: 0px 0px 12px rgba(255, 140, 0, 1); /* Adaugă un efect de glow */
    transform: scale(1.02); /* Face butonul puțin mai mare, nu textul */
}

/* 📜 FAQ ACTIVE FIX */
.toonwarriorsjungle-faq-item.active .toonwarriorsjungle-faq-question {
    text-shadow: 0px 0px 12px rgba(255, 140, 0, 1); /* Păstrează glow-ul */
    font-weight: bold; /* Asigură-te că este evidențiat */
}

/* ✨ Ajustează dimensiunea textului fără a afecta aspectul */
.toonwarriorsjungle-faq-question {
    font-size: 1.2em; /* Setează o dimensiune fixă */
    line-height: 1.5; /* Împiedică suprapunerea */
}


/* 🎯 ABOUT BUSINESS SECTION */
.toonwarriorsjungle-about-business {
    padding: 80px 20px;
    text-align: center ;
    background: rgba(10, 10, 10, 0.95);
    color: #FFD700;
    font-family: "Cinzel", serif;
}

/* 🏯 SECTION TITLE */
.toonwarriorsjungle-business-content h2 {
    font-size: 2.8em;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    animation: glow 1.5s infinite alternate;
}

/* 🔥 PARAGRAPH STYLING */
.toonwarriorsjungle-business-content p {
    font-size: 1.4em;
    line-height: 1.7;
    max-width: 900px;
    margin: auto;
    color: #fff;
    text-shadow: 0px 0px 10px rgba(255, 165, 0, 0.7);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.5s ease-out forwards;
}

/* 🌟 GLOWING TITLE ANIMATION */
@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 140, 0, 1); }
}

/* ✨ FADE-IN ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* 📌 Center the business section */
.toonwarriorsjungle-about-business {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh; /* Full screen height */
}

/* 🎯 Ensure the content is centered */
.toonwarriorsjungle-business-content {
    max-width: 900px; /* Control width */
    padding: 40px;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent for depth */
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(255, 165, 0, 0.6); /* Glowing border */
}

/* 🎮 Play Games Section */
.toonwarriorsjungle-play-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
    color: #FFD700;
}

/* 🏯 Section Title */
.toonwarriorsjungle-play-section h2 {
    font-size: 2.8em;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    margin-bottom: 40px;
}

/* 🎯 Game Cards Container */
.toonwarriorsjungle-play-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* 🔥 Individual Game Cards */
.toonwarriorsjungle-play-card {
    width: 250px;
    padding: 25px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}

/* 🌟 Hover Effect */
.toonwarriorsjungle-play-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 165, 0, 1);
}

/* 🎭 Game Icons */
.toonwarriorsjungle-play-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0px 0px 10px rgba(255, 165, 0, 0.8));
}

/* 🎮 Game Title */
.toonwarriorsjungle-play-card h3 {
    font-size: 1.5em;
    text-shadow: 0px 0px 10px rgba(255, 165, 0, 0.8);
    color: #FFD700;
}

/* 🔘 Play Button */
.toonwarriorsjungle-play-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px rgba(255, 140, 0, 0.8);
}

/* 🏆 Play Button Hover */
.toonwarriorsjungle-play-btn:hover {
    background: #FFA500;
    box-shadow: 0px 0px 20px rgba(255, 140, 0, 1);
}



/* 🎮 FOOTER SECTION */
.toonwarriorsjungle-footer {
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
    color: #FFD700;
    padding: 50px 20px;
    text-align: center;
    position: relative;
}

/* 📌 Footer Content */
.toonwarriorsjungle-footer-content {
    max-width: 800px;
    margin: auto;
}

/* 🚨 18+ Disclaimer */
.toonwarriorsjungle-footer-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ff4747;
    text-shadow: 0 0 10px rgba(255, 71, 71, 1);
    animation: pulse 1.5s infinite alternate;
}

.toonwarriorsjungle-footer-disclaimer img {
    width: 50px;
    animation: float 2s infinite alternate;
}

/* 📜 Business Summary */
.toonwarriorsjungle-footer-summary p {
    font-size: 1em;
    margin: 15px 0;
    opacity: 0.9;
}

/* 🔗 Legal Links */
.toonwarriorsjungle-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.toonwarriorsjungle-footer-links a {
    text-decoration: none;
    color: #FFD700;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.toonwarriorsjungle-footer-links a:hover {
    color: #FF8C00;
    text-shadow: 0px 0px 10px rgba(255, 140, 0, 1);
}

/* 🔥 Copyright */
.toonwarriorsjungle-footer-copyright {
    font-size: 0.9em;
    opacity: 0.7;
}

/* 🎭 Decorative Images */
.toonwarriorsjungle-footer-decor {
    position: absolute;
    width: 120px;
    opacity: 0.8;
}

.toonwarriorsjungle-footer-decor.left {
    left: 20px;
    bottom: 45%;
}

.toonwarriorsjungle-footer-decor.right {
    right: 20px;
    bottom: 45%;
}

/* ✨ Animations */
@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(-5px); }
}



/* 🎭 ABOUT PAGE SECTION */
.toonwarriorsjungle-about-page {
    background: transparent; 
    color: #FFD700;
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0px 0px 30px rgba(255, 140, 0, 0.5);
}

/* 🏆 About Content */
.toonwarriorsjungle-about-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-in-out forwards;
}

/* 🔥 Title Animation */
.toonwarriorsjungle-about-content h2 {
    font-size: 2.2em;
    text-shadow: 0px 0px 15px rgba(255, 165, 0, 1);
    animation: glowText 1.5s infinite alternate;
}

/* ✍️ Paragraph Styling */
.toonwarriorsjungle-about-content p {
    font-size: 1.2em;
    margin: 15px 0;
    line-height: 1.6;
    opacity: 0.9;
    transition: color 0.3s ease-in-out;
}

/* 💡 Hover Effect on Text */
.toonwarriorsjungle-about-content p:hover {
    color: #FFA500;
    text-shadow: 0px 0px 10px rgba(255, 140, 0, 1);
}

/* 🌟 Keyframe Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowText {
    from { text-shadow: 0px 0px 15px rgba(255, 165, 0, 1); }
    to { text-shadow: 0px 0px 25px rgba(255, 140, 0, 1); }
}


/* 📨 CONTACT PAGE SECTION */
.toonwarriorsjungle-contact-page {
    background: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    padding: 50px 20px;
    text-align: center;
    max-width: 700px;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(255, 140, 0, 0.5);
}

/* 📌 Form Styling */
.toonwarriorsjungle-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

/* 🏆 Labels */
.toonwarriorsjungle-contact-form label {
    font-size: 1.1em;
    font-weight: bold;
    text-align: left;
    color: #FFA500;
}

/* 🖊️ Input Fields */
.toonwarriorsjungle-contact-form input,
.toonwarriorsjungle-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease-in-out;
}

/* 🟠 Hover & Focus Effects */
.toonwarriorsjungle-contact-form input:hover,
.toonwarriorsjungle-contact-form textarea:hover,
.toonwarriorsjungle-contact-form input:focus,
.toonwarriorsjungle-contact-form textarea:focus {
    background: rgba(255, 140, 0, 0.2);
    box-shadow: 0px 0px 10px rgba(255, 140, 0, 0.7);
}

/* ✉️ Textarea */
.toonwarriorsjungle-contact-form textarea {
    height: 120px;
    resize: none;
}

/* 🔘 Submit Button */
.toonwarriorsjungle-contact-btn {
    background: linear-gradient(to right, #FF4500, #FF8C00);
    color: white;
    font-size: 1.2em;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* 🎭 Button Hover Effect */
.toonwarriorsjungle-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(255, 165, 0, 1);
}



/* 🔒 OPT-OUT PAGE */
.toonwarriorsjungle-opt-out {
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    padding: 50px 20px;
    max-width: 800px;
    margin: auto;
    text-align: left;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(255, 140, 0, 0.7);
}

/* 📌 Titlu Principal */
.toonwarriorsjungle-opt-out h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    color: #FF8C00;
    text-shadow: 0px 0px 10px rgba(255, 165, 0, 0.8);
}

/* 📌 Subtitluri */
.toonwarriorsjungle-opt-out h3 {
    font-size: 1.5em;
    margin-top: 25px;
    color: #FFA500;
}

/* 📝 Text */
.toonwarriorsjungle-opt-out p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* 🔗 Linkuri */
.toonwarriorsjungle-opt-out a {
    color: #FF4500;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

/* 🔗 Hover pe linkuri */
.toonwarriorsjungle-opt-out a:hover {
    color: #FFD700;
    text-shadow: 0px 0px 5px rgba(255, 215, 0, 1);
}

/* 📌 Lista de contact */
.toonwarriorsjungle-opt-out ul {
    list-style-type: none;
    padding: 0;
}

.toonwarriorsjungle-opt-out ul li {
    font-size: 1.1em;
    margin-top: 10px;
}


/* 🔐 PRIVACY POLICY PAGE */
.toonwarriorsjungle-privacy {
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
    text-align: left;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(255, 140, 0, 0.7);
}

/* 📜 Titlu Principal */
.toonwarriorsjungle-privacy h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
    color: #FF8C00;
    text-shadow: 0px 0px 10px rgba(255, 165, 0, 0.8);
}

/* 📌 Subtitluri */
.toonwarriorsjungle-privacy h3 {
    font-size: 1.5em;
    margin-top: 25px;
    color: #FFA500;
}

/* 📝 Text */
.toonwarriorsjungle-privacy p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* 🔗 Linkuri */
.toonwarriorsjungle-privacy a {
    color: #FF4500;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.toonwarriorsjungle-privacy a:hover {
    color: #FFD700;
    text-shadow: 0px 0px 5px rgba(255, 215, 0, 1);
}


/* 🛡️ RESPONSIBLE GAMING PAGE */
.toonwarriorsjungle-rsg {
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
    text-align: left;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(255, 140, 0, 0.7);
}

/* 🎮 Titlu Principal */
.toonwarriorsjungle-rsg h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
    color: #FF8C00;
    text-shadow: 0px 0px 10px rgba(255, 165, 0, 0.8);
}

/* 🔹 Subtitluri */
.toonwarriorsjungle-rsg h3 {
    font-size: 1.5em;
    margin-top: 25px;
    color: #FFA500;
}

/* 📝 Text */
.toonwarriorsjungle-rsg p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* 📌 Liste */
.toonwarriorsjungle-rsg ul {
    padding-left: 20px;
}

.toonwarriorsjungle-rsg li {
    margin-bottom: 5px;
}

/* 🔗 Linkuri */
.toonwarriorsjungle-rsg a {
    color: #FF4500;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.toonwarriorsjungle-rsg a:hover {
    color: #FFD700;
    text-shadow: 0px 0px 5px rgba(255, 215, 0, 1);
}


/* 📜 TERMS AND CONDITIONS PAGE */
.toonwarriorsjungle-terms {
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
    text-align: left;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(255, 140, 0, 0.7);
}

/* 📌 Titlu Principal */
.toonwarriorsjungle-terms h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
    color: #FF8C00;
    text-shadow: 0px 0px 10px rgba(255, 165, 0, 0.8);
}

/* 📌 Subtitluri */
.toonwarriorsjungle-terms h3 {
    font-size: 1.5em;
    margin-top: 25px;
    color: #FFA500;
}

/* 📝 Text */
.toonwarriorsjungle-terms p {
    font-size: 1.1em;
    line-height: 1.6;
}

/* 📌 Liste */
.toonwarriorsjungle-terms ul {
    padding-left: 20px;
}

.toonwarriorsjungle-terms li {
    margin-bottom: 5px;
}

/* 🔗 Linkuri */
.toonwarriorsjungle-terms a {
    color: #FF4500;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.toonwarriorsjungle-terms a:hover {
    color: #FFD700;
    text-shadow: 0px 0px 5px rgba(255, 215, 0, 1);
}


/* 🔞 AGE VERIFICATION POP-UP */
.toonwarriorsjungle-age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* 🎭 Pop-Up Content */
.toonwarriorsjungle-age-popup-content {
    background: #1a1a1a;
    color: #FFD700;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(255, 140, 0, 0.7);
    animation: fadeIn 0.5s ease-in-out;
}

/* 📌 Title */
.toonwarriorsjungle-age-popup-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #FF4500;
    text-shadow: 0px 0px 10px rgba(255, 69, 0, 0.8);
}

/* 📝 Text */
.toonwarriorsjungle-age-popup-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* ✅ Checkbox */
.toonwarriorsjungle-age-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1em;
    margin-bottom: 20px;
}

.toonwarriorsjungle-age-checkbox input {
    transform: scale(1.2);
}

/* 🎮 Buttons */
.toonwarriorsjungle-age-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* 🔘 Enter Button */
.toonwarriorsjungle-age-buttons button {
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* ✅ Enter Button Enabled */
#enterBtn {
    background: #32CD32;
    color: white;
    box-shadow: 0px 0px 10px rgba(50, 205, 50, 0.8);
}

#enterBtn:disabled {
    background: #555;
    box-shadow: none;
    cursor: not-allowed;
}

/* ❌ Exit Button */
#exitBtn {
    background: #FF4500;
    color: white;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.8);
}

/* 🔥 Button Hover Effects */
.toonwarriorsjungle-age-buttons button:hover:not(:disabled) {
    transform: scale(1.05);
}

/* 🌀 Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}


a{
    cursor: pointer;
}

html, body{
    scroll-behavior: smooth;
}