/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --jade-green: #00a86b;
    --dark-jade: #006644;
    --emerald: #2ecc71;
    --forest: #1a5535;
    --gold: #ffd700;
    --cream: #faf8f3;
    --charcoal: #2c3e50;
    --light-jade: #d4f1e8;
    --shadow-jade: rgba(0, 168, 107, 0.2);
    --gradient-main: linear-gradient(120deg, #00a86b 0%, #006644 100%);
    --gradient-accent: linear-gradient(120deg, #ffd700 0%, #f0b800 100%);
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--cream);
}

.wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header & Navigation */
header {
    background: var(--gradient-main);
    box-shadow: 0 3px 15px var(--shadow-jade);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 18px 0;
}

.nav-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
}

.brand img {
    height: 48px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--cream);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

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

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--cream);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero-area {
    position: relative;
    background: linear-gradient(135deg, #00a86b 0%, #006644 50%, #1a5535 100%);
    padding: 120px 0 100px;
    color: var(--cream);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1614680376593-902f74cf0d41?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.15;
    color: var(--cream);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0.95;
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
    font-size: 1.05rem;
}

.secondary-button:hover {
    background: var(--cream);
    color: var(--jade-green);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 45px;
    animation: slideInLeft 0.8s ease-out 0.6s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 8px solid rgba(255, 215, 0, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.floating-element {
    position: absolute;
    animation: floatElement 6s ease-in-out infinite;
}

.element-1 {
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 10%;
    left: -8%;
    animation-delay: 2s;
}

.element-3 {
    top: 50%;
    right: -10%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Buttons */
.cta-button,
.info-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
}

.cta-button {
    background: var(--gradient-accent);
    color: var(--forest);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

/* Disclaimer CTA Button */
.cta-button.disclaimer-btn {
    margin-top: 18px;
    font-size: 1.1rem;
}

.cta-button.disclaimer-btn svg {
    margin-left: 8px;
}

.info-link {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.info-link:hover {
    background: var(--cream);
    color: var(--jade-green);
}

/* Notice/Disclaimer Section */
.notice-section {
    padding: 70px 0;
    background: var(--cream);
}

.notice-card {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 6px solid var(--gold);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
    text-align: center;
}

.notice-badge {
    font-size: 3.5rem;
    margin-bottom: 18px;
}

.notice-card h2 {
    color: var(--forest);
    margin-bottom: 20px;
    font-size: 2rem;
}

.notice-card p {
    font-size: 1.08rem;
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--charcoal);
}

/* Game Section */
.gameplay-area,
.play-main {
    padding: 80px 0;
    background: var(--light-jade);
}

.gameplay-area h2,
.play-main h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-jade);
}

.play-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--charcoal);
}

.game-frame {
    max-width: 900px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 45px var(--shadow-jade);
}

.game-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

/* About Section */
.about-area {
    padding: 80px 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 10px 30px var(--shadow-jade);
    transition: transform 0.3s ease;
}

.about-visual img:hover {
    transform: translateY(-5px);
}

.about-info h2 {
    font-size: 2.5rem;
    color: var(--dark-jade);
    margin-bottom: 25px;
}

.about-info p {
    font-size: 1.08rem;
    margin-bottom: 20px;
    line-height: 1.85;
}

/* Testimonials Section */
.testimonials-area {
    padding: 80px 0;
    background: var(--light-jade);
}

.testimonials-area h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--dark-jade);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
}

.testimonial-box {
    background: var(--cream);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-jade);
    transition: transform 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-7px);
}

.rating {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.testimonial-box p {
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 18px;
    font-style: italic;
}

.author {
    font-weight: 700;
    color: var(--jade-green);
}

/* Benefits/Features Section */
.benefits-area {
    padding: 80px 0;
    background: var(--cream);
}

.benefits-area h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--dark-jade);
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-box {
    background: var(--light-jade);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.benefit-box:hover {
    border-color: var(--jade-green);
    transform: translateY(-7px);
    box-shadow: 0 12px 35px var(--shadow-jade);
}

.benefit-symbol {
    font-size: 4rem;
    margin-bottom: 25px;
}

.benefit-box h3 {
    font-size: 1.5rem;
    color: var(--dark-jade);
    margin-bottom: 15px;
}

.benefit-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
}

/* Footer */
footer {
    background: var(--forest);
    color: var(--cream);
    padding: 60px 0 0;
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
    margin-bottom: 35px;
}

.footer-block h3 {
    color: var(--gold);
    margin-bottom: 22px;
    font-size: 1.4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-brand img {
    height: 42px;
}

.footer-block p {
    line-height: 1.75;
    opacity: 0.92;
    font-size: 0.97rem;
}

.footer-block ul {
    list-style: none;
}

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

.footer-block ul li a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.88;
    transition: all 0.3s ease;
}

.footer-block ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-notice {
    font-size: 0.92rem;
    opacity: 0.88;
    line-height: 1.7;
}

.footer-credits {
    background: rgba(0, 0, 0, 0.25);
    padding: 22px;
    text-align: center;
    font-size: 0.92rem;
}

/* Scroll Button */
.scroll-button {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: var(--gradient-main);
    color: var(--cream);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px var(--shadow-jade);
}

.scroll-button.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-button:hover {
    transform: translateY(-6px);
}

/* Modal */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-box {
    background: var(--cream);
    padding: 50px;
    border-radius: 18px;
    max-width: 580px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.modal-box h2 {
    color: var(--dark-jade);
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.modal-box p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.08rem;
}

.modal-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 35px;
}

.modal-actions button {
    padding: 14px 35px;
    font-size: 1.05rem;
}

/* Contact Page */
.contact-main {
    padding: 80px 0;
    background: var(--light-jade);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 3rem;
    color: var(--dark-jade);
    margin-bottom: 18px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--charcoal);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 25px;
}

.form-container {
    background: var(--cream);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-jade);
}

.form-container h2 {
    color: var(--dark-jade);
    margin-bottom: 30px;
    font-size: 2rem;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--charcoal);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-jade);
    border-radius: 10px;
    font-size: 1.02rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--jade-green);
}

.contact-details {
    background: var(--cream);
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-jade);
}

.contact-details h2 {
    color: var(--dark-jade);
    margin-bottom: 22px;
    font-size: 2rem;
}

.contact-details p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.detail-card {
    background: var(--light-jade);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid var(--jade-green);
}

.detail-card h3 {
    color: var(--dark-jade);
    margin-bottom: 12px;
}

/* Legal Pages */
.legal-main {
    padding: 80px 0;
    background: var(--light-jade);
}

.legal-text {
    background: var(--cream);
    padding: 55px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-jade);
    max-width: 1040px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--dark-jade);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.legal-text h3 {
    color: var(--jade-green);
    margin-top: 28px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.legal-text p {
    margin-bottom: 20px;
    line-height: 1.85;
}

.legal-text ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.update-date {
    font-size: 0.97rem;
    color: #666;
    font-style: italic;
}

.alert-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 6px solid var(--gold);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.alert-box h2 {
    color: var(--forest);
    margin-top: 0;
    margin-bottom: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--jade-green);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 8px 25px var(--shadow-jade);
        padding: 35px 0;
        gap: 0;
    }

    .nav-menu li {
        margin: 18px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-area {
        padding: 80px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.08rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-visual {
        max-width: 350px;
        margin: 0 auto;
    }

    .floating-element {
        display: none;
    }

    .about-header h2 {
        font-size: 2.4rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-grid {
        max-width: 400px;
        margin: 0 auto;
    }

    .achievement-badge {
        bottom: -20px;
        right: -20px;
        padding: 15px 20px;
    }

    .badge-icon {
        font-size: 2rem;
    }

    .badge-title {
        font-size: 0.95rem;
    }

    .badge-subtitle {
        font-size: 0.75rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .legal-text {
        padding: 35px 25px;
    }

    .modal-box {
        padding: 35px 25px;
    }

    .scroll-button {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .gameplay-area h2,
    .play-main h1,
    .benefits-area h2,
    .testimonials-area h2 {
        font-size: 2.2rem;
    }

    .section-header h1 {
        font-size: 2.4rem;
    }

    .form-container,
    .contact-details {
        padding: 30px;
    }
}
