/* ============================================
   Laugh Trail Site - Electric Purple & Lime Green Theme
   A vibrant, neon-inspired gaming experience
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:wght@300;400;500;600&display=swap');

:root {
    --laughsite-purple: #8b00ff;
    --laughsite-darkpurple: #6a0dad;
    --laughsite-lime: #32cd32;
    --laughsite-lightlime: #7fff00;
    --laughsite-neon: #00ff00;
    --laughsite-dark: #1a0033;
    --laughsite-white: #ffffff;
    --laughsite-lightgray: #f0f0f0;
    --laughsite-gray: #555555;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    color: var(--laughsite-dark);
    background-color: var(--laughsite-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--laughsite-purple);
}

a {
    text-decoration: none;
    color: var(--laughsite-purple);
}

a:hover {
    color: var(--laughsite-lime);
}

.container {
    max-width: 1200px;
}

/* ============================================
   NAVBAR
   ============================================ */
.laughsite-navbar {
    background: linear-gradient(90deg, var(--laughsite-darkpurple) 0%, var(--laughsite-purple) 50%, var(--laughsite-darkpurple) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(139, 0, 255, 0.4);
}

.laughsite-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--laughsite-white);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.laughsite-brand:hover {
    color: var(--laughsite-lime);
}

.laughsite-logo {
    font-size: 2.2rem;
    color: var(--laughsite-lime);
}

.laughsite-navbar .navbar-nav {
    gap: 10px;
}

.laughsite-navbar .nav-link {
    color: var(--laughsite-white);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    border: 2px solid transparent;
}

.laughsite-navbar .nav-link:hover,
.laughsite-navbar .nav-link.active {
    background-color: var(--laughsite-lime);
    color: var(--laughsite-dark);
    border-color: var(--laughsite-lime);
}

.laughsite-toggler {
    border: 2px solid var(--laughsite-lime);
}

.laughsite-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(50, 205, 50, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
.laughsite-hero {
    background: linear-gradient(135deg, var(--laughsite-purple) 0%, var(--laughsite-darkpurple) 100%);
    color: var(--laughsite-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.laughsite-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(50, 205, 50, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.laughsite-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.laughsite-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--laughsite-lime);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(50, 205, 50, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.laughsite-hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--laughsite-white);
    font-weight: 400;
}

.laughsite-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--laughsite-lime);
    color: var(--laughsite-dark);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid var(--laughsite-lime);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.laughsite-btn:hover {
    background-color: var(--laughsite-neon);
    border-color: var(--laughsite-neon);
    color: var(--laughsite-dark);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

/* ============================================
   GAMES SECTION
   ============================================ */
.laughsite-games {
    padding: 80px 0;
    background-color: var(--laughsite-lightgray);
}

.laughsite-section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--laughsite-purple);
    position: relative;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.laughsite-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--laughsite-purple) 0%, var(--laughsite-lime) 100%);
    margin: 20px auto 0;
    border-radius: 3px;
}

.laughsite-iframe-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: var(--laughsite-dark);
    border-radius: 25px;
    overflow: hidden;
    border: 6px solid var(--laughsite-purple);
    box-shadow: 0 0 30px rgba(139, 0, 255, 0.5);
}

.laughsite-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.laughsite-about {
    padding: 80px 0;
    background-color: var(--laughsite-white);
}

.laughsite-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.laughsite-about-content p {
    font-size: 1.2rem;
    color: var(--laughsite-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.laughsite-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.laughsite-feature-box {
    background: linear-gradient(135deg, var(--laughsite-purple) 0%, var(--laughsite-darkpurple) 100%);
    padding: 40px 25px;
    border-radius: 25px;
    text-align: center;
    border: 4px solid var(--laughsite-lime);
    color: var(--laughsite-white);
}

.laughsite-feature-box i {
    font-size: 3.5rem;
    color: var(--laughsite-lime);
    margin-bottom: 1.5rem;
}

.laughsite-feature-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--laughsite-white);
}

.laughsite-feature-box p {
    font-size: 1.05rem;
    color: var(--laughsite-lightgray);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.laughsite-testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--laughsite-dark) 0%, var(--laughsite-darkpurple) 100%);
    color: var(--laughsite-white);
}

.laughsite-testimonials .laughsite-section-title {
    color: var(--laughsite-lime);
}

.laughsite-testimonials .laughsite-section-title::after {
    background: linear-gradient(90deg, var(--laughsite-lime) 0%, var(--laughsite-purple) 100%);
}

.laughsite-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.laughsite-testimonial-card {
    background-color: rgba(139, 0, 255, 0.2);
    padding: 35px;
    border-radius: 25px;
    border: 3px solid var(--laughsite-lime);
}

.laughsite-testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--laughsite-lightgray);
}

.laughsite-testimonial-author {
    font-weight: 700;
    color: var(--laughsite-lime);
    font-size: 1.2rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.laughsite-contact {
    padding: 80px 0;
    background-color: var(--laughsite-lightgray);
}

.laughsite-contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.laughsite-form-group {
    margin-bottom: 25px;
}

.laughsite-form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--laughsite-purple);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.laughsite-form-control {
    width: 100%;
    padding: 15px;
    border: 3px solid var(--laughsite-purple);
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Exo 2', sans-serif;
}

.laughsite-form-control:focus {
    outline: none;
    border-color: var(--laughsite-lime);
    box-shadow: 0 0 0 4px rgba(50, 205, 50, 0.2);
}

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

.laughsite-submit-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--laughsite-purple);
    color: var(--laughsite-white);
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.laughsite-submit-btn:hover {
    background-color: var(--laughsite-lime);
    color: var(--laughsite-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.laughsite-footer {
    background: linear-gradient(135deg, var(--laughsite-dark) 0%, var(--laughsite-darkpurple) 100%);
    color: var(--laughsite-white);
    padding: 60px 0 20px;
}

.laughsite-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.laughsite-footer-logo {
    font-size: 2.8rem;
    color: var(--laughsite-lime);
}

.laughsite-footer-brand h3 {
    font-size: 2rem;
    color: var(--laughsite-white);
    margin: 0;
    text-transform: uppercase;
}

.laughsite-footer p {
    color: var(--laughsite-lightgray);
    line-height: 1.8;
}

.laughsite-footer-links h4 {
    color: var(--laughsite-lime);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.laughsite-footer-links ul {
    list-style: none;
    padding: 0;
}

.laughsite-footer-links ul li {
    margin-bottom: 12px;
}

.laughsite-footer-links ul li a {
    color: var(--laughsite-white);
    font-size: 1.05rem;
}

.laughsite-footer-links ul li a:hover {
    color: var(--laughsite-lime);
    padding-left: 8px;
}

.laughsite-footer-notice {
    background-color: rgba(50, 205, 50, 0.15);
    border-left: 6px solid var(--laughsite-lime);
    padding: 30px;
    margin: 40px 0 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.laughsite-footer-notice-icon {
    font-size: 2.5rem;
    color: var(--laughsite-lime);
    flex-shrink: 0;
}

.laughsite-footer-notice-content h5 {
    color: var(--laughsite-lime);
    margin-bottom: 12px;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.laughsite-footer-notice-content p {
    margin: 0;
    font-size: 1.05rem;
}

.laughsite-footer-notice-content a {
    color: var(--laughsite-lime);
    text-decoration: underline;
}

.laughsite-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.laughsite-footer-bottom p {
    margin: 0;
    font-size: 1rem;
}

.laughsite-footer-bottom a {
    color: var(--laughsite-lime);
    font-weight: 700;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.laughsite-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--laughsite-purple) 0%, var(--laughsite-lime) 100%);
    color: var(--laughsite-white);
    border: none;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(139, 0, 255, 0.6);
}

.laughsite-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.laughsite-scroll-top:hover {
    background: linear-gradient(135deg, var(--laughsite-lime) 0%, var(--laughsite-purple) 100%);
    box-shadow: 0 0 30px rgba(50, 205, 50, 0.8);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.laughsite-legal-header {
    background: linear-gradient(135deg, var(--laughsite-purple) 0%, var(--laughsite-darkpurple) 100%);
    color: var(--laughsite-white);
    padding: 80px 0 60px;
    text-align: center;
}

.laughsite-legal-header h1 {
    font-size: 3.2rem;
    color: var(--laughsite-lime);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.laughsite-legal-header p {
    font-size: 1.3rem;
    color: var(--laughsite-lightgray);
}

.laughsite-legal-content {
    padding: 60px 0;
    background-color: var(--laughsite-white);
}

.laughsite-content-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--laughsite-lightgray);
    padding: 45px;
    border-radius: 25px;
    border: 4px solid var(--laughsite-purple);
    box-shadow: 0 0 25px rgba(139, 0, 255, 0.2);
}

.laughsite-content-box h2 {
    color: var(--laughsite-purple);
    font-size: 2rem;
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--laughsite-lime);
    text-transform: uppercase;
}

.laughsite-content-box p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--laughsite-gray);
    margin-bottom: 15px;
}

.laughsite-content-box strong {
    color: var(--laughsite-purple);
}

.laughsite-legal-notice {
    background-color: rgba(50, 205, 50, 0.1);
    border-left: 6px solid var(--laughsite-lime);
    padding: 30px;
    margin-top: 40px;
    border-radius: 15px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.laughsite-legal-notice i {
    font-size: 2.2rem;
    color: var(--laughsite-lime);
    flex-shrink: 0;
}

.laughsite-legal-notice p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--laughsite-dark);
}

/* Age Verification Popup */
.laughsite-age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.95), rgba(50, 205, 50, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.laughsite-age-content {
    background: linear-gradient(135deg, var(--laughsite-purple), var(--laughsite-darkpurple));
    border: 3px solid var(--laughsite-lime);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 50px rgba(139, 0, 255, 0.6), 0 0 60px rgba(50, 205, 50, 0.4);
    animation: laughsiteGlow 0.8s ease-in-out;
}

@keyframes laughsiteGlow {
    0% {
        opacity: 0;
        transform: scale(0.8);
        box-shadow: 0 0 0 rgba(139, 0, 255, 0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 10px 50px rgba(139, 0, 255, 0.6), 0 0 60px rgba(50, 205, 50, 0.4);
    }
}

.laughsite-age-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--laughsite-neon);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--laughsite-lime);
}

.laughsite-age-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.laughsite-age-notice {
    font-size: 1rem;
    color: var(--laughsite-neon);
    background: rgba(50, 205, 50, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    border: 2px solid var(--laughsite-lime);
    text-shadow: 0 0 10px var(--laughsite-lime);
}

.laughsite-age-notice i {
    margin-right: 0.5rem;
}

.laughsite-age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.laughsite-age-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.laughsite-age-btn.yes {
    background: linear-gradient(135deg, var(--laughsite-lime), var(--laughsite-neon));
    color: var(--laughsite-dark);
    box-shadow: 0 5px 25px rgba(50, 205, 50, 0.5);
}

.laughsite-age-btn.yes:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 35px rgba(50, 205, 50, 0.8);
}

.laughsite-age-btn.no {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.laughsite-age-btn.no:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .laughsite-hero h1 {
        font-size: 2.8rem;
    }
    
    .laughsite-hero p {
        font-size: 1.15rem;
    }
    
    .laughsite-section-title {
        font-size: 2.4rem;
    }
    
    .laughsite-features,
    .laughsite-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .laughsite-legal-header h1 {
        font-size: 2.4rem;
    }
    
    .laughsite-content-box {
        padding: 30px;
    }

    .laughsite-age-content {
        margin: 1rem;
        padding: 2rem;
    }

    .laughsite-age-content h2 {
        font-size: 2rem;
    }

    .laughsite-age-buttons {
        flex-direction: column;
    }

    .laughsite-age-btn {
        width: 100%;
    }
}

