* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

body {
    background-color: #000000;
    color: #cccccc;
    line-height: 1.4;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #000;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    gap: 10px;
}

.btn {
    background-color: transparent;
    border: 1px solid #cccccc;
    color: #cccccc;
    padding: 5px 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    transition: all 0.2s ease;
}

.btn:hover {
    background-color: #cccccc;
    color: #000;
}

.timestamp {
    font-size: 12px;
    color: #cccccc;
}

/* Main Logo */
.logo-section {
    text-align: center;
    padding: 40px 0;
    background-color: #000000;
    border-bottom: 1px solid #333;
}

.tagline {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 5px;
}

.version {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Navigation */
.nav {
    background-color: #000;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 50px;
    z-index: 99;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}

.nav-links li {
    color: #cccccc;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    border-color: #cccccc;
    background-color: rgba(204, 204, 204, 0.1);
}

.nav-links a.active {
    border-color: #ffff00;
    background-color: rgba(255, 255, 0, 0.1);
    color: #ffff00;
}

/* Main Content */
.main-content {
    padding: 0;
}

/* Section Content Management */
.section-content {
    display: none;
    padding: 20px 0;
    min-height: 500px;
}

.section-content.active {
    display: block;
}

.page-title {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: bold;
    padding: 20px;
    border-bottom: 1px solid #333;
    background-color: #000;
    margin-bottom: 20px;
}

/* Wallet Connect Notice */
.wallet-connect-notice {
    background-color: #ffff00;
    color: #000;
    padding: 10px 20px;
    margin: 0 20px 20px 20px;
    border-radius: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-icon {
    font-weight: bold;
}

/* HOME SECTION STYLES */
.section {
    background-color: #000000;
    border: 1px solid #333333;
    margin-bottom: 20px;
    padding: 20px;
    margin: 0 20px 20px 20px;
}

.section-title {
    color: #00ccff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.highlight-box {
    background-color: #111111;
    border: 1px solid #ffff00;
    padding: 15px;
    margin: 0 20px 20px 20px;
}

.highlight-box h2 {
    color: #ffff00;
    margin-bottom: 10px;
}

/* Manifesto Sections */
.manifesto-section {
    margin-bottom: 20px;
}

.manifesto-section h3 {
    color: #cccccc;
    margin-bottom: 10px;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 5px;
    position: relative;
}

.feature-list li:before {
    content: "• ";
    color: #cccccc;
    position: absolute;
    left: -15px;
}

/* Token Information */
.token-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: #000000;
    padding: 15px;
    border: 1px solid #333333;
}

.token-detail {
    color: #cccccc;
}

.token-detail strong {
    color: #cccccc;
}

.contract-address {
    font-size: 0.9rem;
    word-break: break-all;
    color: #cccccc;
}

/* FORUM SECTION STYLES */
.forum-container {
    padding: 0 20px;
}

.forum-header {
    margin-bottom: 20px;
}

.forum-header h2 {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.forum-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.forum-category {
    background-color: transparent;
    border: 1px solid #333;
    color: #cccccc;
    padding: 8px 15px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
}

.forum-category.active {
    border-color: #ffff00;
    background-color: rgba(255, 255, 0, 0.1);
}

.goatse-competition {
    background-color: #111111;
    border: 1px solid #ffff00;
    padding: 15px;
    margin-bottom: 20px;
}

.competition-header {
    color: #ffff00;
    font-weight: bold;
    margin-bottom: 5px;
}

.competition-subtitle {
    color: #cccccc;
    margin-bottom: 10px;
}

.competition-prizes {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.prize {
    color: #cccccc;
    font-size: 0.9rem;
}

.competition-note {
    color: #cccccc;
    font-style: italic;
}

.forum-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.sort-btn {
    background-color: transparent;
    border: 1px solid #333;
    color: #cccccc;
    padding: 5px 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
}

.sort-btn.active {
    border-color: #ffff00;
    color: #ffff00;
}

.post-prompt {
    color: #cccccc;
    font-size: 0.9rem;
}

.forum-posts {
    border: 1px solid #333;
}

.forum-post {
    display: flex;
    background-color: #111111;
    border-bottom: 1px solid #333;
    padding: 15px;
}

.post-number {
    color: #ffff00;
    font-weight: bold;
    margin-right: 15px;
    min-width: 30px;
}

.post-content {
    flex: 1;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.post-author {
    color: #cccccc;
    font-weight: bold;
}

.post-meta {
    color: #888;
    font-size: 0.8rem;
}

.post-tag {
    background-color: #333;
    color: #cccccc;
    padding: 2px 6px;
    font-size: 0.7rem;
    border-radius: 3px;
}

.post-tag.live {
    background-color: #ff0000;
    color: #fff;
}

.post-tag.joke {
    background-color: #00ff00;
    color: #000;
}

.post-tag.meme {
    background-color: #0099ff;
    color: #fff;
}

.post-title {
    color: #cccccc;
    font-weight: bold;
    margin-bottom: 5px;
}

.post-body {
    color: #cccccc;
    margin-bottom: 5px;
}

.post-stats {
    color: #888;
    font-size: 0.8rem;
}

/* NFT SECTION STYLES */
.nft-container {
    padding: 0 20px;
}

.nft-header {
    text-align: center;
    margin-bottom: 30px;
}

.nft-header h2 {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.nft-subtitle {
    color: #cccccc;
    margin-bottom: 5px;
}

.nft-description {
    color: #888;
    font-size: 0.9rem;
}

.nft-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.nft-category {
    background-color: transparent;
    border: 1px solid #333;
    color: #cccccc;
    padding: 10px 20px;
    cursor: pointer;
    font-family: inherit;
}

.nft-category.active {
    border-color: #ffff00;
    background-color: rgba(255, 255, 0, 0.1);
}

.nft-collection-info {
    background-color: #111111;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 30px;
}

.collection-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.stat-label {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-value {
    color: #cccccc;
    font-weight: bold;
}

.nft-grid {
    border: 1px solid #333;
    padding: 20px;
}

.nft-collection-header h3 {
    color: #cccccc;
    margin-bottom: 20px;
}

.nft-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nft-item {
    background-color: #111111;
    border: 1px solid #333;
    aspect-ratio: 1;
}

.nft-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
}

.nft-tag {
    background-color: #333;
    color: #cccccc;
    padding: 5px 10px;
    font-size: 0.8rem;
}

/* SWAP SECTION STYLES */
.swap-container {
    padding: 0 20px;
}

.swap-header {
    text-align: center;
    margin-bottom: 30px;
}

.swap-header h2 {
    color: #cccccc;
    font-size: 1.2rem;
}

.swap-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.swap-form {
    background-color: #111111;
    border: 1px solid #333;
    padding: 20px;
}

.swap-form h3 {
    color: #cccccc;
    margin-bottom: 20px;
}

.swap-input-section {
    margin-bottom: 20px;
}

.swap-input-section label {
    color: #cccccc;
    display: block;
    margin-bottom: 10px;
}

.input-group {
    display: flex;
    border: 1px solid #333;
    background-color: #000;
}

.token-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-right: 1px solid #333;
    background-color: #222;
    color: #cccccc;
}

.swap-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #cccccc;
    padding: 10px;
    font-family: inherit;
    font-size: 1rem;
}

.swap-input:focus {
    outline: none;
}

.copy-btn {
    background-color: #333;
    border: none;
    color: #cccccc;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.8rem;
}

.balance {
    color: #888;
    font-size: 0.9rem;
    margin-top: 5px;
}

.swap-arrow {
    text-align: center;
    margin: 10px 0;
}

.swap-flip {
    background-color: #333;
    border: 1px solid #555;
    color: #cccccc;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.connect-wallet-btn {
    width: 100%;
    background-color: #333;
    border: 1px solid #555;
    color: #cccccc;
    padding: 15px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.market-data {
    background-color: #111111;
    border: 1px solid #333;
    padding: 20px;
}

.market-data h3 {
    color: #cccccc;
    margin-bottom: 20px;
}

.market-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.market-stat {
    display: flex;
    justify-content: space-between;
}

.market-stat .stat-label {
    color: #888;
}

.market-stat .stat-value {
    color: #cccccc;
}

/* STAKE SECTION STYLES */
.stake-container {
    padding: 0 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stake-content {
    text-align: center;
    color: #888;
}

/* DAO SECTION STYLES */
.dao-container {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.dao-proposals h2 {
    color: #cccccc;
    margin-bottom: 20px;
}

.proposal {
    background-color: #111111;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 20px;
}

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

.proposal-header h3 {
    color: #cccccc;
    font-size: 1rem;
}

.proposal-status {
    background-color: #ff6600;
    color: #fff;
    padding: 3px 8px;
    font-size: 0.8rem;
    border-radius: 3px;
}

.proposal-description {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.proposal-voting {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vote-option {
    margin-bottom: 10px;
}

.vote-label {
    color: #cccccc;
    display: block;
    margin-bottom: 5px;
}

.vote-bar {
    background-color: #333;
    height: 20px;
    border: 1px solid #555;
}

.vote-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.burn-fill {
    background-color: #ff4444;
}

.lock-fill {
    background-color: #ffaa00;
}

.biodigesters-fill {
    background-color: #44aa44;
}

.solar-fill {
    background-color: #ffff00;
}

.yes-fill {
    background-color: #44aa44;
}

.no-fill {
    background-color: #ff4444;
}

.vote-stats {
    color: #888;
    font-size: 0.9rem;
    margin-top: 10px;
}

.dao-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.submit-proposal {
    background-color: #111111;
    border: 1px solid #333;
    padding: 20px;
}

.submit-proposal h3 {
    color: #cccccc;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    color: #cccccc;
    display: block;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    width: 100%;
    background-color: #000;
    border: 1px solid #333;
    color: #cccccc;
    padding: 10px;
    font-family: inherit;
}

.form-textarea {
    height: 100px;
    resize: vertical;
}

.submit-proposal-btn {
    width: 100%;
    background-color: #333;
    border: 1px solid #555;
    color: #cccccc;
    padding: 10px;
    cursor: pointer;
    font-family: inherit;
}

.chat-room {
    background-color: #111111;
    border: 1px solid #333;
    padding: 20px;
}

.chat-room h3 {
    color: #cccccc;
    margin-bottom: 15px;
}

.chat-messages {
    height: 200px;
    background-color: #000;
    border: 1px solid #333;
    padding: 10px;
    margin-bottom: 10px;
    overflow-y: auto;
}

.chat-placeholder {
    color: #888;
    text-align: center;
    padding: 50px 0;
}

.chat-input-field {
    width: 100%;
    background-color: #000;
    border: 1px solid #333;
    color: #cccccc;
    padding: 10px;
    font-family: inherit;
}

.dao-stats {
    grid-column: 1 / -1;
    background-color: #111111;
    border: 1px solid #333;
    padding: 20px;
}

.dao-stats h3 {
    color: #cccccc;
    margin-bottom: 20px;
}

.dao-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dao-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    font-size: 1.2rem;
}

.governance-info h4 {
    color: #cccccc;
    margin-bottom: 10px;
    margin-top: 20px;
}

.governance-info ul {
    list-style: none;
    color: #cccccc;
    margin-bottom: 15px;
}

/* FARTLAND SECTION STYLES */
.fartland-container {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 200px 1fr 250px;
    gap: 20px;
}

.land-sidebar {
    background-color: #111111;
    border: 1px solid #333;
    padding: 15px;
}

.your-plots h3 {
    color: #cccccc;
    margin-bottom: 15px;
}

.plots-placeholder {
    color: #888;
    text-align: center;
    padding: 20px 0;
}

.land-main {
    background-color: #111111;
    border: 1px solid #333;
    padding: 20px;
}

.land-header {
    margin-bottom: 20px;
}

.land-header h2 {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.land-status {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.land-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.land-control {
    background-color: #333;
    border: 1px solid #555;
    color: #cccccc;
    padding: 5px 10px;
    cursor: pointer;
}

.zoom-level {
    color: #cccccc;
    margin-left: auto;
}

.land-map {
    background-color: #000;
    border: 1px solid #333;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(40, 20px);
    grid-template-rows: repeat(25, 20px);
    gap: 1px;
    padding: 10px;
}

.land-plot {
    width: 20px;
    height: 20px;
    background-color: #333;
    border: 1px solid #555;
    cursor: pointer;
}

.land-plot.available {
    background-color: #666;
}

.land-plot.owned {
    background-color: #ff4444;
}

.land-plot.yours {
    background-color: #44aa44;
}

.land-instructions {
    margin-top: 20px;
}

.land-instructions ul {
    list-style: none;
    color: #cccccc;
    margin-bottom: 15px;
}

.land-legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    color: #cccccc;
    font-size: 0.9rem;
}

.land-stats {
    background-color: #111111;
    border: 1px solid #333;
    padding: 15px;
}

.land-stats h3 {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 1rem;
}

.stat-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

/* FARTDROP SECTION STYLES */
.fartdrop-container {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.methane-header {
    text-align: center;
    margin-bottom: 40px;
}

.methane-header h2 {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.methane-subtitle {
    color: #cccccc;
    margin-bottom: 10px;
}

.methane-description {
    color: #888;
    font-size: 0.9rem;
}

.earning-methods {
    background-color: #111111;
    border: 1px solid #333;
    padding: 30px;
}

.earning-methods h3 {
    color: #cccccc;
    margin-bottom: 20px;
}

.earning-section {
    margin-bottom: 30px;
}

.earning-section h4 {
    color: #cccccc;
    margin-bottom: 15px;
}

.earning-list,
.swap-list {
    list-style: none;
    color: #cccccc;
}

.earning-list li,
.swap-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.earning-list li:before,
.swap-list li:before {
    content: "•";
    color: #ffff00;
    position: absolute;
    left: 0;
}

.swap-section h4 {
    color: #cccccc;
    margin-bottom: 15px;
}

/* ENVIRONMENT SECTION STYLES */
.environment-container {
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.environment-header {
    text-align: center;
    margin-bottom: 40px;
}

.environment-header h2 {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.environment-subtitle {
    color: #cccccc;
    margin-bottom: 10px;
}

.environment-description {
    color: #888;
    font-size: 0.9rem;
}

.trees-project {
    background-color: #111111;
    border: 1px solid #333;
    padding: 30px;
}

.trees-project h3 {
    color: #cccccc;
    margin-bottom: 20px;
}

.environmental-commitment {
    margin-bottom: 30px;
}

.commitment-box {
    background-color: #000;
    border: 1px solid #44aa44;
    padding: 25px;
}

.commitment-box h4 {
    color: #44aa44;
    margin-bottom: 15px;
}

.commitment-box p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.trees-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

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

.carbon-offset-feature {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.carbon-offset-feature h4 {
    color: #44aa44;
    margin-bottom: 10px;
}

.environmental-impact h3 {
    color: #cccccc;
    margin-bottom: 15px;
    margin-top: 30px;
}

.impact-list,
.offset-list {
    list-style: none;
    color: #cccccc;
}

.impact-list li,
.offset-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.impact-list li:before,
.offset-list li:before {
    content: "•";
    color: #44aa44;
    position: absolute;
    left: 0;
}

.burn-statistics {
    margin-top: 30px;
    background-color: #000;
    border: 1px solid #333;
    padding: 20px;
}

.burn-statistics h3 {
    color: #cccccc;
    margin-bottom: 20px;
}

.burn-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.burn-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* GOATSE FILM SECTION STYLES */
.goatse-container {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.goatse-header {
    text-align: center;
    margin-bottom: 40px;
}

.goatse-header h2 {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.goatse-subtitle {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.5;
}

.voting-note {
    color: #888;
    font-size: 0.9rem;
}

.voting-stats {
    background-color: #111111;
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 30px;
}

.voting-stats h3 {
    color: #cccccc;
    margin-bottom: 20px;
}

.voting-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.voting-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scenes-list {
    border: 1px solid #333;
}

.scene-item {
    background-color: #111111;
    border-bottom: 1px solid #333;
    padding: 20px;
    display: flex;
    gap: 20px;
}

.scene-number {
    color: #ffff00;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 60px;
}

.scene-content {
    flex: 1;
}

.scene-title {
    color: #cccccc;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.scene-description {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.scene-votes {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vote-count {
    color: #ffff00;
    font-weight: bold;
    font-size: 1.2rem;
}

.vote-label {
    color: #888;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.connection-status {
    color: #cccccc;
    margin-bottom: 5px;
}

.copyright {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dao-container {
        grid-template-columns: 1fr;
    }

    .fartland-container {
        grid-template-columns: 1fr;
    }

    .swap-interface {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .token-info {
        grid-template-columns: 1fr;
    }

    .header {
        flex-direction: column;
        gap: 10px;
    }

    .competition-prizes {
        flex-direction: column;
        gap: 5px;
    }

    .nft-items {
        grid-template-columns: 1fr;
    }

    .collection-stats {
        grid-template-columns: 1fr 1fr;
    }

    .voting-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dao-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .burn-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trees-stats {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

/* Animation for loading states */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s infinite;
}

/* Hover effects for interactive elements */
.btn:hover,
.sort-btn:hover,
.forum-category:hover,
.nft-category:hover,
.land-control:hover,
.connect-wallet-btn:hover,
.submit-proposal-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(204, 204, 204, 0.1);
}

/* Focus styles for accessibility */
.form-input:focus,
.form-textarea:focus,
.chat-input-field:focus,
.swap-input:focus {
    border-color: #ffff00;
    box-shadow: 0 0 5px rgba(255, 255, 0, 0.3);
}

/* Custom checkbox and radio styles for voting */
.vote-option {
    cursor: pointer;
    transition: all 0.2s ease;
}

.vote-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Land plot hover effects */
.land-plot:hover {
    border-color: #ffff00;
    box-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
}

/* Scene item hover effects */
.scene-item:hover {
    background-color: #1a1a1a;
}

/* Forum post hover effects */
.forum-post:hover {
    background-color: #1a1a1a;
}

/* Mobile Navigation */
.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    color: #cccccc;
    font-weight: bold;
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #cccccc;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 768px) {
    .nav-header {
        display: flex;
    }

    .nav-logo {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        border-top: 1px solid #333;
        padding: 20px;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #333;
        padding: 0;
        margin: 0;
        /* ← TOEGEVOEGD */
        width: 100%;
        /* ← TOEGEVOEGD */
        display: block;
        /* ← TOEGEVOEGD */
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 15px 10px;
        border: none;
        border-radius: 0;
        width: auto;
        /* ← CHANGED FROM 100% */
        text-align: left;
        box-sizing: border-box;
        user-select: none;
        position: relative;
        z-index: 1;
    }

    .nav-links a:hover {
        background-color: #111;
        border: none;
    }

    .nav-links a.active {
        background-color: rgba(255, 255, 0, 0.2);
        border: none;
    }
}

/* MOBILE LAYOUT FIXES - Voeg toe aan het einde van stylesheet.css */

/* Logo fixes voor mobile */
/* MENU TEKST INLINE FIX - Vervang je mobile navigation CSS met dit: */

@media (max-width: 768px) {
    .nav-header {
        display: flex;
    }

    .nav-logo {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000;
        border-top: 1px solid #333;
        padding: 0;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        display: block;
        margin: 0;
        padding: 15px 20px;
        /* MOVED: Padding to li instead of a */
        border-bottom: 1px solid #333;
        background-color: #000;
        color: #cccccc;
        /* ADDED: Color for the number */
        font-family: 'JetBrains Mono', 'Courier New', monospace;
    }

    .nav-links a {
        display: inline;
        /* CHANGED: Make link inline with the number */
        padding: 0;
        /* REMOVED: No padding on link */
        color: #cccccc;
        text-decoration: none;
        border: none;
        background: transparent;
        font-family: inherit;
        font-size: inherit;
    }

    .nav-links li:hover {
        background-color: #111;
        /* MOVED: Hover effect to li */
    }

    .nav-links li:has(a.active),
    .nav-links li .active {
        background-color: rgba(255, 255, 0, 0.2);
        color: #ffff00;
    }
}

/* Extra small screens (very small phones) */
@media (max-width: 480px) {
    .logo {
        font-size: 0.4rem !important;
        letter-spacing: 0.5px !important;
    }

    .nav-logo {
        font-size: 0.8rem !important;
    }

    .btn {
        padding: 3px 6px !important;
        font-size: 9px !important;
    }

    .page-title {
        font-size: 0.9rem !important;
    }

    /* Force all multi-column grids to single column on very small screens */
    .dao-stat-grid,
    .burn-stat-grid,
    .voting-stat-grid,
    .collection-stats,
    .stat-grid {
        grid-template-columns: 1fr !important;
    }
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.logo {
    font-family: monospace;
    font-size: 16px;
    color: white;
    white-space: pre;
    line-height: 1em;
}


.nft-grid-container {
    background-color: #000;
    border: 1px solid #333;
    padding: 20px;
    margin: 0 20px 20px 20px;
}

.nft-grid-header {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: bold;
}

.nft-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.nft-item-card {
    background-color: #111;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.nft-item-card:hover {
    border-color: #ffff00;
    background-color: #1a1a1a;
}

.nft-image-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-bottom: 1px solid #333;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nft-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    /* For pixelart */
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.nft-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    color: #cccccc;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nft-info {
    padding: 15px;
}

.nft-title {
    color: #cccccc;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.nft-buy-button {
    width: 100%;
    background-color: transparent;
    border: 1px solid #cccccc;
    color: #cccccc;
    padding: 8px 12px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.nft-buy-button:hover {
    background-color: #cccccc;
    color: #000;
}

.nft-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #333 25%, transparent 25%),
        linear-gradient(-45deg, #333 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #333 75%),
        linear-gradient(-45deg, transparent 75%, #333 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.8rem;
    text-align: center;
}

.nft-collection-footer {
    text-align: center;
    background-color: #111;
    border: 1px solid #333;
    padding: 20px;
    margin: 0 20px;
}

.nft-collection-footer-title {
    color: #cccccc;
    margin-bottom: 15px;
    font-weight: bold;
}

.nft-browse-button {
    background-color: transparent;
    border: 1px solid #cccccc;
    color: #cccccc;
    padding: 12px 20px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nft-browse-button:hover {
    background-color: #cccccc;
    color: #000;
}

/* Audio-specific styles */
.audio-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.3s ease;
}

.nft-item-card:hover .audio-play-overlay {
    opacity: 1;
}

.audio-play-button {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #cccccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-play-button:hover {
    background-color: #ffffff;
    transform: scale(1.1);
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 12px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}

.audio-controls {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
    color: #cccccc;
    padding: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.audio-controls:hover {
    background-color: #cccccc;
    color: #000;
}

/* Collection switch visibility */
.nft-collection {
    display: none;
}

.nft-collection.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nft-items-grid {
        grid-template-columns: 1fr;
    }

    .nft-grid-container,
    .nft-collection-footer {
        margin: 0 10px 20px 10px;
    }
}

a.btn{
    text-decoration: none;
}