/* Reset & Base Styles */
:root {
    --primary-blue: #00bde9;
    --primary-gold: #fcbb3f;
    --text-dark: #1a1a1a;
    --text-gray: #555;
    --text-light: #fff;
    --bg-dark: #222;
    --bg-light: #fff;
    --font-main: 'Baloo 2', sans-serif;
    --container-width: 1170px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-gray);
    line-height: 1.65;
    font-size: 17px;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

button,
input,
textarea,
select {
    font-family: var(--font-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.15;
}

p {
    font-size: 18px;
    line-height: 1.65;
}

h2 {
    text-align: center;
}

.section-title {
    font-size: 52px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 30px;
}

.subtitle {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #999;
    margin-bottom: 12px;
}

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

.title {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 0;
}

.section-header.text-left {
    text-align: left;
}

.section-header.text-left .subtitle,
.section-header.text-left .title {
    text-align: left;
}

.text-highlight {
    color: var(--primary-gold) !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.btn-primary:hover {
    background-color: #00a0c6;
}

/* Header */
.site-header {
    background: #000;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 54px;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--primary-gold);
}

.nav-buy-btn {
    color: var(--primary-gold) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 260px;
    height: 100vh;
    background: #000;
    z-index: 1001;
    padding: 50px 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-speed);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

/* Sections Common */
section {
    padding: 80px 0;
}

.section-icon {
    text-align: center;
    margin-bottom: 20px;
}

.section-icon img {
    display: inline-block;
    width: 100px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding-top: 40px;
    background-color: #000;
}

.hero-section .section-title {
    color: #fff;
}

.hero-image img {
    display: inline-block;
    max-width: 500px;
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.social-links img {
    width: 50px;
    transition: transform 0.2s; padding: 5px;
}

.social-links img:hover {
    transform: scale(1.1);
}

.uniswap-link {
    margin-top: 40px;
}

.uniswap-link img {
    display: inline-block;
    width: 200px;
}

/* Story Section */
.story-section {
    background-color: #ededed;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 20px;
    line-height: 1.65;
    margin-bottom: 20px;
    color: #555;
}

/* Tokenomics Section */
.tokenomics-section {
    background-color: #000;
    color: #fff;
}

.tokenomics-section .title {
    color: var(--primary-gold);
}

.tokenomics-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 22px;
    line-height: 1.55;
}

.tokenomics-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.tokenomics-cards .card {
    padding: 20px;
}

.tokenomics-cards img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    display: inline-block;
}

.tokenomics-cards h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 15px;
}

.tokenomics-cards p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}

/* Stats Section */
.stats-section {
    background-color: #ededed;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.stat-item h3 {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 21px;
    color: #777;
}

.contract-box {
    text-align: center;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contract-box h5 {
    color: #555;
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 20px;
}

.contract-box a {
    color: #3498db;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #eee;
    padding: 15px 30px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: transform 0.2s;
    word-break: break-all;
}

.copy-btn:active {
    transform: scale(0.98);
}

/* Roadmap Section */
.roadmap-section {
    text-align: center;
    background-color: #fff;
}

.roadmap-banner img {
    display: inline-block;
    max-width: 260px;
    margin-bottom: 30px;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.roadmap-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.roadmap-item:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 50px;
    font-weight: 700;
    color: #eee;
    line-height: 1;
}

.step-content h4 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 17px;
    line-height: 1.55;
    color: #666;
}

.uniswap-link-bottom {
    margin-top: 60px;
}

.uniswap-link-bottom img {
    display: inline-block;
    width: 200px;
}

/* Game Section */
.game-section {
    background-color: #ededed;
    padding: 0;
    /* Full height split */
}

.game-container {
    display: flex;
    align-items: center;
    max-width: 100%;
    /* Full width for split layout */
    padding: 0;
}

.game-image,
.game-content {
    flex: 1;
    height: 500px;
    /* Fixed height or min-height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-image {
    background: transparent;
    /* Fallback */
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-content {
    padding: 60px;
    background: transparent;
}

.game-content p {
    font-size: 18px;
    line-height: 1.65;
}

.game-content .title em {
    color: #666;
    font-style: normal;
}

/* Team Section */
.team-section {
    background-color: #fcba3f;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.member-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: -20px;
    /* Overlap effect */
    position: relative;
    z-index: 1;
}

.member-info {
    background: #fff;
    padding: 30px 10px 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
   
}

.member-info h4 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.member-info .role {
    display: block;
    color: #999;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
}

.member-social a {
    display: inline-block;
    margin: 0 5px;
}

.member-social img {
    width: 30px;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.support-link {
    text-align: center;
    margin-bottom: 40px;
}

.support-link h5 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 0;
}

.support-link a {
    color: #3498db;
    font-weight: 700;
}

.support-link img {
    width: 28px;
    height: auto;
    display: block;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-main);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1a1a1a;
    border-bottom: 1px solid transparent;
}

.faq-trigger::after {
    content: "+";
    font-size: 24px;
    color: var(--primary-gold);
    transition: transform 0.3s;
}

.faq-item.open .faq-trigger {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.faq-item.open .faq-trigger::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fafafa;
}

.faq-item.open .faq-content {
    padding: 20px 24px;
    max-height: 500px;
}

.faq-content p {
    font-size: 18px;
    line-height: 1.65;
    color: #444;
}

.highlight-pink {
    color: #ff007a;
}

.highlight-blue {
    color: #3498db;
}

.join-community {
    text-align: center;
    margin-top: 80px;
    padding-top: 10px;
}

.join-community .title {
    margin-bottom: 18px;
}

.join-community .title em {
    color: var(--primary-blue);
    font-style: normal;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 24px;
    }

    .main-nav a {
        font-size: 15px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 10px 18px;
    }

    .title,
    .section-title {
        font-size: 44px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    section {
        padding: 70px 0;
    }

    .title,
    .section-title {
        font-size: 40px;
    }

    .subtitle {
        font-size: 15px;
    }

    .story-content p {
        font-size: 19px;
    }

    .tokenomics-intro {
        font-size: 20px;
    }

    .tokenomics-cards h3 {
        font-size: 26px;
    }

    .tokenomics-cards p {
        font-size: 17px;
    }

    .stat-item h3 {
        font-size: 38px;
    }

    .stat-item p {
        font-size: 19px;
    }

    .step-content h4 {
        font-size: 23px;
    }

    .step-content p {
        font-size: 16px;
    }

    .faq-trigger {
        font-size: 22px;
    }

    .faq-content p {
        font-size: 17px;
    }

    .tokenomics-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-container {
        flex-direction: column;
    }

    .game-image,
    .game-content {
        width: 100%;
        height: auto;
    }

    .game-image {
        height: 300px;
    }

    .game-content {
        padding: 48px 36px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    section {
        padding: 56px 0;
    }

    .title,
    .section-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .story-content p,
    .tokenomics-intro,
    .game-content p,
    .faq-content p {
        font-size: 16px;
    }

    .tokenomics-cards h3 {
        font-size: 22px;
    }

    .tokenomics-cards p {
        font-size: 16px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-item p {
        font-size: 17px;
    }

    .step-number {
        font-size: 40px;
    }

    .step-content h4 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 15px;
    }

    .faq-trigger {
        font-size: 19px;
        padding: 16px 18px;
    }

    .faq-content {
        padding: 0 18px;
    }

    .faq-item.open .faq-content {
        padding: 16px 18px;
    }

    .support-link h5 {
        font-size: 20px;
    }

    .tokenomics-cards {
        grid-template-columns: 1fr;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-top: 20px;
    }

    .game-image {
        height: 280px;
    }

    .game-content {
        padding: 32px 20px;
    }
}


