/* --------------------------------------------------
   BullsEye! GameFi Web3 Stylesheet
   Color Scheme: Dark theme, Neon Lime Green, Target Orange-Red
-------------------------------------------------- */

:root {
    --bg-dark: #0c0c0e;
    --bg-card: #15151b;
    --bg-card-hover: #1e1e27;
    --text-primary: #ffffff;
    --text-secondary: #8e929b;
    --accent-neon: #bfff00;      /* Lime/Neon Green */
    --accent-orange: #f4531c;    /* Target Orange-Red */
    --accent-yellow: #ffcc00;    /* Hit Highlight Gold */
    --navbar-height: 80px;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --border-glow: rgba(191, 255, 0, 0.15);
    --border-glow-hover: rgba(191, 255, 0, 0.4);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* General Reset & Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #252530;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-neon);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight-neon {
    color: var(--accent-neon);
    text-shadow: 0 0 15px rgba(191, 255, 0, 0.3);
}

.highlight-orange {
    color: var(--accent-orange);
    text-shadow: 0 0 15px rgba(244, 83, 28, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--accent-neon);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(191, 255, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(191, 255, 0, 0.45);
    background: #d4ff33;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-neon);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* 1. Navbar */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(12, 12, 14, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar-header.scrolled {
    background: rgba(12, 12, 14, 0.95);
    border-bottom: 1px solid rgba(191, 255, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 48px;
    width: 48px;
    border-radius: 10px;
    border: 1px solid var(--accent-neon);
    object-fit: cover;
}

.nav-logo-text {
    height: 28px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* 2. Hero Section */
.hero-section {
    position: relative;
    padding-top: calc(var(--navbar-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(191, 255, 0, 0.08) 0%, rgba(244, 83, 28, 0.04) 50%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-web3 {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(191, 255, 0, 0.08);
    border: 1px solid rgba(191, 255, 0, 0.25);
    margin-bottom: 24px;
}

.badge-web3 span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--accent-neon);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
}

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

.stat-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-glowing {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hero-card-glowing::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 180deg at 50% 50%, var(--accent-neon) 0%, transparent 25%, var(--accent-orange) 50%, transparent 75%, var(--accent-neon) 100%);
    animation: rotate-border 8s linear infinite;
    z-index: 1;
}

.hero-card-glowing::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--bg-dark);
    border-radius: 26px;
    z-index: 2;
}

.hero-glowing-logo {
    width: 320px;
    height: 320px;
    border-radius: 20px;
    object-fit: cover;
    z-index: 3;
    filter: drop-shadow(0 0 20px rgba(191, 255, 0, 0.25));
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}

/* 3. Text BullsEye! on Robinhood (looping) */
.marquee-section {
    background: var(--accent-neon);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    border-top: 2px solid var(--bg-dark);
    border-bottom: 2px solid var(--bg-dark);
}

.marquee-container {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    min-width: 100%;
    justify-content: space-around;
    align-items: center;
    animation: scroll-marquee 20s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
}

.marquee-content i {
    font-size: 1.4rem;
    color: var(--accent-orange);
}

@keyframes scroll-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* General Section Header styling */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--accent-neon);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

/* 4. Section About BullsEye! */
.about-section {
    padding: 100px 0;
    position: relative;
}

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

.about-text-content h3 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.feature-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(191, 255, 0, 0.2);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--accent-neon);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(191, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.neon-card-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.card-glow-green {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 150px;
    height: 150px;
    background: var(--accent-neon);
    filter: blur(60px);
    opacity: 0.15;
    pointer-events: none;
}

.visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.logo-backdrop {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 255, 0, 0.15) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rotating-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-neon);
    animation: rotate-logo 40s linear infinite;
}

@keyframes rotate-logo {
    100% {
        transform: rotate(360deg);
    }
}

.visual-stats {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-sub {
    display: flex;
    flex-direction: column;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-sub:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-sub span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-sub strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-top: 4px;
}

/* 5. Section Lore/Story nya */
.lore-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at bottom, rgba(244, 83, 28, 0.03) 0%, var(--bg-dark) 60%);
}

.lore-box {
    background: rgba(21, 21, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.lore-box::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 83, 28, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.lore-header-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(244, 83, 28, 0.1);
    border: 1px solid rgba(244, 83, 28, 0.2);
    border-radius: 4px;
    margin-bottom: 32px;
}

.lore-header-badge span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 1px;
}

.lore-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-indent: 20px;
}

.lore-content blockquote {
    border-left: 4px solid var(--accent-orange);
    padding-left: 20px;
    margin: 32px 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-primary);
}

/* 6. Section BullsEye! Game (Iframe layout) */
.game-section {
    padding: 100px 0;
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #17171e;
    border: 2px solid #2d2d3d;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(191, 255, 0, 0.1);
    overflow: hidden;
}

.game-console-header {
    background: #0f0f13;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #2d2d3d;
}

.console-controls {
    display: flex;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.console-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    font-weight: 700;
}

.console-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.console-btn:hover {
    background: var(--accent-neon);
    color: var(--bg-dark);
    border-color: var(--accent-neon);
}

.game-container {
    width: 100%;
    aspect-ratio: 1000/400;
    background: #222;
    position: relative;
}

.game-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.game-console-footer {
    background: #0f0f13;
    padding: 16px 24px;
    border-top: 2px solid #2d2d3d;
}

.instruction-tip {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.instruction-tip i {
    color: var(--accent-neon);
}

/* 7. Section Utilitas nya dan Game Marketplace Coming Soon */
.utility-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(21, 21, 27, 0.4) 100%);
}

.utility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.utility-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.utility-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.utility-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.utility-item {
    display: flex;
    gap: 20px;
}

.util-badge {
    width: 50px;
    height: 50px;
    background: rgba(191, 255, 0, 0.08);
    border: 1px solid rgba(191, 255, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-neon);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.utility-item h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.utility-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Marketplace Preview styling */
.marketplace-preview {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.market-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.market-header h4 {
    font-size: 1.4rem;
}

.badge-soon {
    background: var(--accent-neon);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.market-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.market-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.market-item-card.locked {
    filter: grayscale(0.5);
}

.lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 14, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
}

.market-item-card:hover .lock-overlay {
    opacity: 1;
}

.lock-overlay i {
    font-size: 1.8rem;
    color: var(--accent-neon);
    background: var(--bg-card);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(191, 255, 0, 0.3);
}

.item-img-placeholder {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.market-item-card h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-neon);
    font-weight: 700;
}

/* 8. Section How To Buy $BULLSEYE on Robinhood */
.buy-section {
    padding: 100px 0;
}

.contract-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.contract-lbl {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.contract-address-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contract-address-container code {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--accent-neon);
    background: rgba(191, 255, 0, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px dashed rgba(191, 255, 0, 0.3);
    word-break: break-all;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: var(--accent-neon);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 255, 0, 0.05);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 15px;
    right: 20px;
    transition: var(--transition-smooth);
}

.step-card:hover .step-num {
    color: rgba(191, 255, 0, 0.1);
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    margin-top: 10px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 9. Section Join Community (X/Twitter & Telegram) */
.community-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(191, 255, 0, 0.02) 0%, var(--bg-dark) 100%);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.community-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.card-glow-x, .card-glow-tg {
    position: absolute;
    top: -50%;
    width: 250px;
    height: 250px;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.card-glow-x { background: #ffffff; }
.card-glow-tg { background: #0088cc; }

.community-card:hover .card-glow-x { opacity: 0.3; }
.community-card:hover .card-glow-tg { opacity: 0.3; }

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.community-card.x-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.community-card.tg-card:hover {
    border-color: rgba(0, 136, 204, 0.4);
}

.comm-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
}

.x-card .comm-icon { color: var(--text-primary); }
.tg-card .comm-icon { color: #0088cc; }

.community-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.community-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 280px;
    margin-bottom: 32px;
}

.comm-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.x-card .comm-btn { color: var(--text-primary); }
.tg-card .comm-btn { color: #0088cc; }

.community-card:hover .comm-btn i {
    transform: translateX(4px);
}

/* 10. Footer */
.footer-main {
    background: #09090b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    border: 1px solid var(--accent-neon);
    object-fit: cover;
}

.footer-logo-text {
    height: 24px;
    object-fit: contain;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4, .footer-socials h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-neon);
    transform: translateX(3px);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-row {
    display: flex;
    gap: 16px;
}

.social-row a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.social-row a:hover {
    background: var(--accent-neon);
    color: var(--bg-dark);
    border-color: var(--accent-neon);
    transform: translateY(-3px);
}

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

.copyright {
    color: #4b4d54;
    font-size: 0.85rem;
}

/* 11. Sub-Footer Typography Logo Centered */
.sub-footer-logo-container {
    background: #050507;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.sub-footer-logo {
    max-width: 600px;
    width: 85%;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(191, 255, 0, 0.15));
    transition: var(--transition-smooth);
}

.sub-footer-logo:hover {
    opacity: 1;
    filter: drop-shadow(0 0 35px rgba(191, 255, 0, 0.3));
    transform: scale(1.02);
}

/* Scroll Reveal Effect styles */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------
   Responsive Design Breakpoints
-------------------------------------------------- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-container, .about-grid, .utility-grid {
        gap: 40px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sub-footer-logo {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0f0f13;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(191, 255, 0, 0.15);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .badge-web3 {
        margin: 0 auto 24px auto;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-card-glowing {
        width: 320px;
        height: 320px;
    }
    
    .hero-glowing-logo {
        width: 260px;
        height: 260px;
    }
    
    .about-grid, .utility-grid, .community-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .lore-box {
        padding: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sub-footer-logo {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contract-address-container code {
        font-size: 0.9rem;
    }
    
    .sub-footer-logo {
        max-width: 240px;
    }
    
    .console-title {
        font-size: 0.7rem;
    }
}
