/* General Styles */
:root {
    --primary-color: #8A2BE2;  /* Vibrant Purple */
    --secondary-color: #1E90FF; /* Bright Blue */
    --accent-color: #FF69B4;    /* Hot Pink */
    --success-color: #32CD32;   /* Lime Green */
    --warning-color: #FFA500;   /* Orange */
    --danger-color: #FF4500;    /* Red Orange */
    
    --dark-bg: #121212;         /* Near Black */
    --dark-card: #1E1E1E;       /* Dark Gray for Cards */
    --medium-gray: #333333;     /* Medium Gray */
    --light-gray: #666666;      /* Light Gray */

    --text-light: #FFFFFF;      /* White Text */
    --text-muted: #BBBBBB;      /* Muted Text */
    
    --header-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;

    --transition-speed: 0.3s;
    --glow-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
    --card-border-radius: 12px;
}

body {
    font-family: var(--body-font);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Text Highlight */
.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Section Titles */
.section-title {
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
}

.btn-outline-light {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: var(--text-light);
}

.btn-glow {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.btn-glow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.btn-glow:hover:before {
    opacity: 1;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.7);
}

.btn-filter {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    margin: 0 0.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.btn-filter:hover, .btn-filter.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-wallet {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-border-radius);
    padding: 0.75rem 1rem;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-speed) ease;
    color: var(--text-light);
}

.btn-wallet:hover {
    transform: translateY(-2px);
}

.btn-wallet.phantom:hover {
    border-color: #4e44ce;
    background-color: rgba(78, 68, 206, 0.1);
}

.btn-wallet.solflare:hover {
    border-color: #FE9900;
    background-color: rgba(254, 153, 0, 0.1);
}

/* Glow Effect */
.glow-effect {
    position: relative;
    border-radius: var(--card-border-radius);
    overflow: hidden;
}

.glow-effect:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color), 
        var(--primary-color));
    background-size: 400%;
    border-radius: calc(var(--card-border-radius) + 2px);
    z-index: -1;
    animation: glowing 20s linear infinite;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Loader */
#loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--header-font);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.navbar.scrolled {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: rgba(18, 18, 18, 0.95);
}

.navbar-brand {
    font-family: var(--header-font);
    font-size: 1.75rem;
    font-weight: 800;
    padding: 0;
    display: flex;           /* Add this */
    align-items: center;     /* Add this */
    gap: 0.75rem;            /* Add spacing between logo and text */
}

.brand-text {
    margin-left: 10px;
    letter-spacing: 1px;
    display: flex;           /* Add this */
    align-items: center;     /* Add this */
    font-size: 1.4rem;
}

.brand-highlight {
    color: var(--primary-color);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.logo-div {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px 4px var(--primary-color), 0 0 0 4px rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    animation: logoPulse 2.5s infinite alternate;
    flex-shrink: 0;
}

@keyframes logoPulse {
    0% {
        box-shadow: 0 0 24px 4px var(--primary-color), 0 0 0 4px rgba(255,255,255,0.08);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 36px 8px var(--accent-color), 0 0 0 8px rgba(255,255,255,0.15);
        transform: scale(1.07);
    }
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.7);
    box-shadow: 0 0 8px 1px var(--accent-color);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(138,43,226,0.07));
    filter: brightness(0.92);
}

.logo-div:hover .logo-img {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 0 24px 6px var(--secondary-color);
}

.signin-btn, .signup-btn {
    margin-left: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    color: var(--text-muted);
}

.signin-btn {
    color: var(--text-light);
    border-color: var(--primary-color);
}

.signin-btn:hover, .signin-btn.active {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-shadow);
    color: var(--text-light) !important;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
    padding-top: 76px;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.token-display {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: var(--card-border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    max-width: 400px;
    margin: 0 auto;
}

.token-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.token-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.75rem;
}

.token-info p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Features Section */
#features {
    background-color: var(--dark-card);
}

.feature-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: var(--card-border-radius);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: height var(--transition-speed) ease;
}

.feature-card:hover:before {
    height: 100%;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
}

/* Events Section */
.event-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.event-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
}

.event-date span {
    display: block;
}

.event-date span:first-child {
    font-size: 1.2rem;
}

.event-date span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-details {
    padding: 1.5rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.event-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.event-details p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* NFT Card Section */
.nft-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    height: 100%;
}

.nft-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.nft-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.nft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.nft-card:hover .nft-img img {
    transform: scale(1.1);
}

.nft-info {
    padding: 1.5rem;
}

.nft-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.nft-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

/* Token Info Section */
#token-info {
    background-color: var(--dark-card);
}

.token-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.token-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.token-benefits i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.token-chart {
    background-color: rgba(18, 18, 18, 0.7);
    padding: 2rem;
    border-radius: var(--card-border-radius);
    min-height: 320px;
    max-height: 400px;
}

#tokenChart {
    max-width: 100%;
    height: 320px !important;
    max-height: 400px;
    display: block;
    margin: 0 auto;
}

.token-chart h4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Newsletter */
.newsletter-form .input-group {
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-form .form-control {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    padding: 0.75rem 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-family: var(--header-font);
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-light);

    display: flex;
    flex-flow: row nowrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all var(--transition-speed) ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-divider {
    margin: 2rem 0;
    border-color: rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-muted);
    margin: 0;
}

.powered-by {
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.solana-logo {
    height: 20px;
    width: auto;
}

/* Particles.js Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Auth Pages Styles */
.auth-section {
    min-height: 100vh;
    background-color: var(--dark-bg);
    padding-top: 76px;
}

.auth-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.auth-card-header {
    padding: 2rem 2rem 1rem;
}

.auth-card-body {
    padding: 1rem 2rem 2rem;
}

.auth-card-header h2 {
    margin-bottom: 0.5rem;
}

.auth-card-header p {
    color: var(--text-muted);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.75rem 1rem;
}

.form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    /* Remove default arrow for custom look (optional) */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Style the selected option text */
.form-select:focus, .form-select option:checked {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
}

/* Style the dropdown options (works in most Chromium browsers) */
.form-select option {
    background-color: #1E1E1E;
    color: var(--text-light);
}

/* For Firefox, force option color */
@-moz-document url-prefix() {
    .form-select option {
        color: #fff;
        background: #1E1E1E;
    }
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(138, 43, 226, 0.25);
    color: var(--text-light);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    font-weight: 500;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    position: relative;
    background-color: var(--dark-card);
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-footer {
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.wallet-connect-options {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.password-strength {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.strength-bar {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-progress {
    height: 100%;
    background-color: var(--danger-color);
    transition: all var(--transition-speed) ease;
}

.toggle-password {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
}

.toggle-password:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.forgot-password {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.forgot-password:hover {
    color: var(--primary-color);
}

/* Inner Pages Hero */
.inner-hero {
    min-height: 50vh;
    position: relative;
    background-color: var(--dark-bg);
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 3rem;
    background-image: linear-gradient(180deg, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 1)), url('https://images.pexels.com/photos/1763075/pexels-photo-1763075.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
}

.inner-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-hero-img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.story-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    text-align: right;
    padding-right: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    margin-left: 60%;
    padding-left: 2rem;
    padding-bottom: 1.5rem;
}

.timeline-content h3 {
    margin-bottom: 1rem;
}

.team-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    height: 100%;
    transition: all var(--transition-speed) ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-img {
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 0.25rem;
}

.position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.bio {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all var(--transition-speed) ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.mission-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.mission-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mission-card h3 i {
    color: var(--primary-color);
}

.mission-card p {
    margin-bottom: 1.5rem;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-card ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.tokenomics-chart {
    background-color: rgba(18, 18, 18, 0.7);
    padding: 2rem;
    border-radius: var(--card-border-radius);
}

.tokenomics-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: var(--card-border-radius);
    padding: 1rem;
    transition: all var(--transition-speed) ease;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.token-percent {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    background-color: var(--percent-color, var(--primary-color));
    color: white;
    border-radius: var(--card-border-radius);
    margin-right: 1rem;
    min-width: 70px;
    text-align: center;
}

.token-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.token-info p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.partner-logo {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: var(--card-border-radius);
    padding: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: rgba(50, 50, 50, 0.7);
}

.partner-logo img {
    max-height: 60px;
    max-width: 100%;
    filter: grayscale(100%) brightness(1.5);
    transition: all var(--transition-speed) ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.accordion-item {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: var(--card-border-radius);
    overflow: hidden;
}

.accordion-button {
    background-color: var(--dark-card);
    color: var(--text-light);
    font-weight: 600;
    box-shadow: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--dark-card);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238A2BE2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1rem 1.25rem 1.5rem;
    color: var(--text-muted);
}

/* Events Page Styles */
.events-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.event-card-large {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    margin-bottom: 2rem;
}

.event-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-card-large .event-img {
    height: 240px;
}

.event-type {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.event-tag {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.token-required {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.token-required i {
    color: var(--primary-color);
}

.host-event-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.host-event-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), transparent 70%);
    pointer-events: none;
}

.host-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.host-benefits li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.host-benefits i {
    color: var(--primary-color);
}

/* NFT Page Styles */
.featured-nft-info {
    padding: 2rem;
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    height: 100%;
}

.featured-nft-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-date {
    color: var(--text-muted);
}

.nft-details {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.nft-utility {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.nft-utility li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nft-utility i {
    color: var(--primary-color);
}

.nft-cta {
    margin-top: 2rem;
}

.featured-nft-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nft-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.nft-preview-item {
    border-radius: var(--card-border-radius);
    overflow: hidden;
    height: 200px;
}

.nft-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.nft-preview-item:hover img {
    transform: scale(1.05);
}

.nft-stats {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    padding: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    text-align: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.progress-label {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.progress {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.collection-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    height: 100%;
    position: relative;
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.collection-img {
    height: 200px;
    position: relative;
}

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.collection-card:hover .collection-img img {
    transform: scale(1.1);
}

.coming-soon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.collection-info {
    padding: 1.5rem;
}

.collection-info h4 {
    margin-bottom: 0.5rem;
}

.collection-info p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.collection-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: var(--card-border-radius);
}

.stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-value {
    font-weight: 600;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.benefits-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.benefits-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.benefit-item {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: var(--card-border-radius);
    padding: 1.5rem;
    height: 100%;
    transition: all var(--transition-speed) ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Community Page Styles */
.channel-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.channel-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.channel-card.discord:before {
    background-color: #5865F2;
}

.channel-card.twitter:before {
    background-color: #1DA1F2;
}

.channel-card.telegram:before {
    background-color: #0088CC;
}

.channel-card.medium:before {
    background-color: #00AB6C;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.channel-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.channel-card.discord .channel-icon {
    color: #5865F2;
}

.channel-card.twitter .channel-icon {
    color: #1DA1F2;
}

.channel-card.telegram .channel-icon {
    color: #0088CC;
}

.channel-card.medium .channel-icon {
    color: #00AB6C;
}

.channel-card h3 {
    margin-bottom: 1rem;
}

.channel-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.tweet-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed) ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tweet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tweet-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tweet-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.tweet-user {
    display: flex;
    flex-direction: column;
}

.tweet-name {
    font-weight: 600;
}

.tweet-handle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tweet-content {
    margin-bottom: 1rem;
}

.tweet-content p {
    margin-bottom: 0.5rem;
}

.tweet-tags {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.tweet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: auto;
}

.tweet-actions {
    display: flex;
    gap: 1rem;
}

.tweet-actions a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    
}

.tweet-actions a:hover {
    color: var(--primary-color);
}

.contact-card {
    background-color: var(--dark-card);
    border-radius: var(--card-border-radius);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Media Queries */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .timeline-date {
        position: static;
        width: 100%;
        text-align: left;
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
    }
    
    .timeline-content {
        margin-left: 0;
        padding-left: 0;
    }
    
    .story-timeline:before {
        left: 0;
    }
    
    .timeline-dot {
        left: 0;
    }
}

@media (max-width: 767.98px) {
    .navbar-nav {
        background-color: var(--dark-card);
        padding: 1rem;
        border-radius: var(--card-border-radius);
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    .signin-btn, .signup-btn {
        margin: 0.5rem 0;
        display: block;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .wallet-connect-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-wallet {
        width: 100%;
    }
    
    .auth-card {
        margin-bottom: 2rem;
    }

    .account-footer {
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
        margin: auto auto;
    }

    .power {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        margin-bottom: 1rem;
        width: 100%;
        margin-right: 0 !important;
    }
    
    .events-filter {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-filter {
        width: 100%;
    }
    
    .event-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .nft-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .host-event-card {
        padding: 1.5rem;
    }
}