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

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    background: #f7f7f7;
}

/* Section resets */
section {
    margin: 0;
    padding: 40px 0;
    display: block;
}

/* Hero section */
.hero.dark-section {
    margin: 0;
    padding: 120px 0 40px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    z-index: 1;
}

.hero.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: -1;
}

/* Progress section */
.progress-section.light-section {
    padding: 40px 0;
    background: #f7f7f7;
    position: relative;
    z-index: 2;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Remove any potential flex gaps */
.hero-content,
.progress-container {
    margin: 0;
    width: 100%;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
}

/* Header logo text */
.header-logo span, .logo-link span {
    color:#4a5568;
    font-weight:600;
}

.logo-link{
    display:flex;
    align-items:center;
    gap:0.5rem;
    text-decoration:none;
}

.logo-link:hover span{
    color:#8b5cf6;
}

.header-logo:hover span{
    color:#8b5cf6;
}

.header-logo-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.contract-display {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(139, 92, 246, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.contract-label {
    font-size: 0.7rem;
    color: #1a1a1a;
    font-weight: 500;
}

.contract-text {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.65rem;
    color: #4a5568;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn-small {
    background: rgba(139, 92, 246, 0.1);
    border: none;
    border-radius: 3px;
    padding: 0.2rem;
    cursor: pointer;
    color: #8b5cf6;
    transition: all 0.2s ease;
}

.copy-btn-small:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

/* Navigation Links */
.nav-link {
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #8b5cf6;
}

.header-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-small {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    font-size: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-secondary-small {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    font-size: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.btn-secondary-small:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-1px);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3748;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    margin: 0;
    padding: 40px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
}

.hero-mission {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contract-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contract-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contract-address code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.8rem;
    color: white;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d3748);
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mission-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23mission-pattern)"/></svg>');
    opacity: 0.1;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.mission-manifesto {
    text-align: center;
    animation: fadeIn 1s ease;
}

.mission-lead {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.mission-highlight {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.mission-highlight p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mission-emphasis {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #8b5cf6;
    margin: 1.5rem 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-goal {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 3rem;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #8b5cf6;
}

.mission-section .section-title {
    color: white;
    margin-bottom: 3rem;
    font-size: 3rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tokenomics {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tokenomics-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="60" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tokenomics-pattern)"/></svg>');
    opacity: 0.3;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tokenomics-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed, #667eea);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.tokenomics-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(139, 92, 246, 0.3),
        0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.tokenomics-card:hover .card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.tokenomics-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.tokenomics-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.counters {
    padding: 80px 0;
    background: white;
    color: #2d3748;
    position: relative;
    overflow: hidden;
}

.counters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="counters-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23counters-pattern)"/></svg>');
    opacity: 0.3;
}

.counters .section-title {
    color: #2d3748;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.counter-card {
    background: #f8fafc;
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    color: #2d3748;
}

.counter-card-dark {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    border: none !important;
    color: white !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    padding: 3rem 2rem !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.counter-card-dark h3 {
    color: white !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: 0.5px !important;
}

.counter-card-dark p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.05rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
}

.counter-card-dark .counter-value {
    color: white !important;
    background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
}

.counter-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.counter-card-dark:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 
        0 30px 60px rgba(102, 126, 234, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.counter-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.counter-card:hover .counter-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.counter-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-card p {
    color: #4a5568;
    font-size: 0.9rem;
}

.progress-section {
    margin: 0;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.progress-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="progress-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="60" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23progress-grain)"/></svg>');
    opacity: 0.3;
}

.progress-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.progress-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.progress-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin: 3rem 0;
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    animation: shimmer 2s infinite;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    border-radius: 13px;
    position: relative;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: progressShine 3s infinite;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    border-radius: 8px;
    z-index: -1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-text span:first-child {
    font-size: 2rem;
    font-weight: 800;
    color: #8b5cf6;
    text-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
}

.progress-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #1a1a1a;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.progress-goal {
    opacity: 0.8;
    font-size: 1rem;
    color: #1a1a1a;
}



/* Resources Section */
.resources-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    position: relative;
    overflow: hidden;
}

.resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="resources-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(139,92,246,0.1)"/><circle cx="70" cy="70" r="1" fill="rgba(139,92,246,0.1)"/><circle cx="50" cy="15" r="0.5" fill="rgba(139,92,246,0.1)"/><circle cx="15" cy="65" r="0.5" fill="rgba(139,92,246,0.1)"/><circle cx="85" cy="45" r="0.5" fill="rgba(139,92,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23resources-pattern)"/></svg>');
    opacity: 0.5;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.resource-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.05);
    transition: all 0.2s ease;
}

.resource-link:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(5px);
}



/* Awareness Section */
.awareness-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d299c2, #fef9d7);
    position: relative;
    overflow: hidden;
}

.awareness-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="awareness-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1" fill="rgba(210,153,194,0.1)"/><circle cx="60" cy="60" r="1" fill="rgba(210,153,194,0.1)"/><circle cx="55" cy="25" r="0.5" fill="rgba(210,153,194,0.1)"/><circle cx="25" cy="75" r="0.5" fill="rgba(210,153,194,0.1)"/><circle cx="75" cy="55" r="0.5" fill="rgba(210,153,194,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23awareness-pattern)"/></svg>');
    opacity: 0.4;
}

.awareness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.awareness-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.awareness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.awareness-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.awareness-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.awareness-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.awareness-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.05);
    transition: all 0.2s ease;
    display: inline-block;
}

.awareness-link:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

/* Memorial Section */
.memorial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
}

.memorial-section .section-title,
.memorial-section .section-subtitle {
    color: white;
}

.memorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.memorial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.memorial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.memorial-candle {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.memorial-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.memorial-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.memorial-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.memorial-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-section .section-title {
    color: #1a1a1a;
}

.faq-section .section-subtitle {
    color: #4a5568;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #8b5cf6;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.team-note {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    position: relative;
    overflow: hidden;
}

.team-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="team-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23team-pattern)"/></svg>');
    opacity: 0.3;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.note-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.team-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: #4a5568;
    padding: 1rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
}

.footer-logo-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #8b5cf6;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: #718096;
    font-size: 0.8rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #8b5cf6;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    margin: 80px auto 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-contract-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-contract-display .contract-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.mobile-contract-display .contract-text {
    color: white;
    font-weight: 600;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-nav-link:hover {
    background: rgba(139, 92, 246, 0.4);
    border-color: #8b5cf6;
    transform: translateX(10px);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .header-actions {
        display: none;
    }

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

    body {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-mission {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .counters-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contract-address {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .stories-grid,
    .resources-grid,
    .awareness-grid {
        grid-template-columns: 1fr;
    }

    .memorial-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        min-width: 150px;
        padding: 0.75rem 1.5rem;
    }

    .counter-value {
        font-size: 2rem;
    }

    .team-message {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tokenomics-card,
.counter-card {
    animation: fadeInUp 0.6s ease;
}

.tokenomics-card:nth-child(2) {
    animation-delay: 0.1s;
}

.tokenomics-card:nth-child(3) {
    animation-delay: 0.2s;
}

.counter-card:nth-child(2) {
    animation-delay: 0.1s;
}

html {
    scroll-behavior: smooth;
}

.counter-value.loading {
    opacity: 0.5;
}

.copy-btn.success {
    background: #10b981;
    color: white;
} 

/* Roadmap Section */
.roadmap-section {
    padding: 120px 0;
    background: #fffaf0;
}

.roadmap-wrapper {
    position: relative;
    margin-top: 4rem;
}

/* vertical line */
.roadmap-wrapper::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e2e8f0;
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-marker {
    width: 48px;
    flex-shrink: 0;
    position: relative;
}

.roadmap-marker::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    width: 16px;
    height: 16px;
    background: #8b5cf6;
    border: 3px solid #edf2f7;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #fffaf0;
}

.roadmap-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.roadmap-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: #2d3748;
}

.roadmap-subtitle {
    margin: 0 0 1rem;
    font-weight: 500;
    color: #718096;
}

.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

.roadmap-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    color: #4a5568;
    break-inside: avoid;
}

.roadmap-list li::before {
    content: "\23F3"; /* hourglass */
    position: absolute;
    left: 0;
    top: 0;
    color: #8b5cf6;
}

@media (max-width: 768px) {
    .roadmap-list {
        columns: 1;
    }
} 

/* Contract label color */
.contract-label{
    color: #4a5568;
}

/* Hero section contract label - white color */
.hero-buttons .contract-label{
    color: white;
} 

/* --- Roadmap visual tweaks --- */
.roadmap-section{
    background: linear-gradient(135deg,#faf5ff 0%,#fffaf0 100%);
}

.roadmap-card{
    border-left:4px solid #8b5cf6;
}
.roadmap-item:nth-child(even) .roadmap-card{
    background:#f5f3ff;
    border-left-color:#7c3aed;
}
.roadmap-card h3{
    font-weight:700; /* match other section headings */
}
.roadmap-list li{
    font-family:inherit;
} 

/* --- Rewards Section Styles --- */
.rewards-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #faf5ff 0%, #fffaf0 100%);
    color: #1a1a1a;
}

.rewards-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rewards-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.rewards-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.rewards-lead {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rewards-description {
    font-size: 1.2rem;
    color: #4a5568;
}

.rewards-ways {
    margin-bottom: 3rem;
}

.rewards-ways h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #8b5cf6;
}

.rewards-list {
    list-style: none;
    padding: 0;
}

.rewards-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: #f5f3ff;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.rewards-item:hover {
    transform: translateX(10px);
    background: #ede9fe;
}

.rewards-icon {
    width: 24px;
    height: 24px;
    stroke: #8b5cf6;
    flex-shrink: 0;
}

.rewards-item span {
    font-size: 1.1rem;
    color: #4a5568;
}

.rewards-footer {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.rewards-footer p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.rewards-motto {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b5cf6;
}

@media (max-width: 768px) {
    .rewards-title {
        font-size: 2.5rem;
    }
    
    .rewards-content {
        padding: 1.5rem;
    }
    
    .rewards-lead {
        font-size: 1.3rem;
    }
    
    .rewards-description {
        font-size: 1.1rem;
    }
    
    .rewards-ways h2 {
        font-size: 1.5rem;
    }
    
    .rewards-item span {
        font-size: 1rem;
    }
} 

/* --- Pitch Deck Section --- */
.pitch-deck-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
    text-align: center;
}

.pitch-deck-content {
    max-width: 600px;
    margin: 0 auto;
}

.pitch-deck-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pitch-deck-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.download-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
} 

/* --- Footer Contact --- */
.footer-contact {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #4a5568;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: #8b5cf6;
}

.footer-contact a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #8b5cf6;
} 

.rewards-coming-soon {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    border: 1px dashed #8b5cf6;
    text-align: center;
    position: relative;
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.2);
}

.rewards-coming-soon h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 1rem;
}

.rewards-coming-soon p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .rewards-coming-soon {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .rewards-coming-soon h3 {
        font-size: 1.3rem;
    }
    
    .rewards-coming-soon p {
        font-size: 1rem;
    }
} 

/* --- Tokenomics Page Styles --- */
.tokenomics-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #faf5ff 0%, #f0fdf4 100%);
}

.tokenomics-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.chart-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pie-chart {
    max-width: 600px;
    margin: 0 auto;
}

.allocation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.allocation-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.allocation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.allocation-card p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.allocation-card ul {
    list-style-type: none;
    padding: 0;
}

.allocation-card li {
    color: #4a5568;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.allocation-card li:before {
    content: "•";
    color: #8b5cf6;
    position: absolute;
    left: 0;
}

.team-wallets {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.team-wallets h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wallet-list code {
    display: block;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #4a5568;
}

.more-wallets {
    color: #8b5cf6;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.more-wallets:hover {
    color: white;
    background: #8b5cf6;
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.learn-more {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: color 0.2s ease;
}

.learn-more:hover {
    color: #6d28d9;
}

@media (max-width: 768px) {
    .tokenomics-page {
        padding: 100px 0 60px;
    }

    .tokenomics-content {
        padding: 1rem;
    }

    .chart-container {
        padding: 1rem;
    }

    .allocation-card {
        padding: 1.5rem;
    }

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

.wallet-display {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.wallet-display h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.wallet-copy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.wallet-text {
    font-family: monospace;
    color: #4a5568;
    font-size: 0.9rem;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn-small.copied {
    background: #10b981;
    color: white;
}

.copy-btn-small.copied:hover {
    background: #059669;
} 

.mission-strategy {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-strategy p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.mission-allocations {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.mission-allocations li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.mission-allocations li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: bold;
}

.mission-impact {
    font-size: 1.3rem !important;
    font-weight: 500;
    color: #8b5cf6 !important;
    margin-top: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mission-strategy {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .mission-strategy p {
        font-size: 1.1rem;
    }

    .mission-allocations li {
        font-size: 1rem;
    }

    .mission-impact {
        font-size: 1.2rem !important;
    }
} 

.mission-tokenomics {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.6;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gold-text {
    color: #fbbf24 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mission-tokenomics.gold-text {
    font-weight: 600;
    color: white !important;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .mission-tokenomics {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
} 

/* --- Section Colors --- */
.dark-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #e2e8f0;
}

.dark-section .section-title {
    color: white;
    margin-bottom: 2rem;
}

.dark-section .section-subtitle {
    color: #e2e8f0;
    opacity: 0.9;
}

.dark-section p {
    color: #e2e8f0;
}

.dark-section h3 {
    color: white;
}

.light-section {
    background: #f7f7f7;
    color: #1a1a1a;
}

.light-section .section-title {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.light-section .section-subtitle {
    color: #4a5568;
}

.light-section p {
    color: #4a5568;
}

.light-section h3 {
    color: #1a1a1a;
}

/* Hero Section */
.hero .hero-title {
    color: white;
    margin-bottom: 1.5rem;
}

.hero .hero-mission {
    color: #e2e8f0;
    font-size: 1.2rem;
}

/* Progress Section */
.progress-section .progress-percentage {
    color: #1a1a1a;
    font-weight: 700;
}

.progress-section .progress-text {
    color: #4a5568;
}

/* Impact Section */
.counters .counter-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.counters .counter-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counters .counter-card h3 {
    color: white;
}

.counters .counter-card p {
    color: #e2e8f0;
}

/* Support Resources */
.resources-section .resource-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.resources-section .resource-card h3 {
    color: #1a1a1a;
}

.resources-section .resource-card p {
    color: #4a5568;
}

/* Cancer Awareness */
.awareness-section .awareness-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.awareness-section .awareness-card h3 {
    color: #2d3748;
}

.awareness-section .awareness-card p {
    color: #4a5568;
}

.awareness-section .awareness-link {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
}

.awareness-section .awareness-link:hover {
    background: rgba(139, 92, 246, 0.1);
}

/* Memorial Section */
.memorial-section .memorial-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.memorial-section .memorial-card h3 {
    color: #1a1a1a;
}

.memorial-section .memorial-card p {
    color: #4a5568;
}

.memorial-section .stat-number {
    color: #1a1a1a;
    font-weight: 700;
}

.memorial-section .stat-label {
    color: #4a5568;
}

/* FAQ Section */
.faq-section .faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.faq-section .faq-grid {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.faq-section .section-subtitle {
    margin-bottom: 1rem;
}

.faq-section .faq-question {
    padding: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-section .faq-question h3 {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding-right: 0.75rem;
}

.faq-section .faq-toggle {
    color: #000000;
    font-size: 1.25rem;
    font-weight: 500;
    min-width: 16px;
    text-align: center;
}

.faq-section .faq-answer {
    color: #000000;
    padding: 0 0.75rem 0.75rem;
    display: none;
    line-height: 1.5;
    background: white;
}

.faq-section .faq-answer p {
    color: #000000;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.faq-section .faq-answer a {
    color: #8b5cf6;
    text-decoration: none;
}

.faq-section .faq-answer a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.faq-section .faq-item.active {
    background: white;
}

.faq-section .faq-item.active .faq-question h3 {
    color: #8b5cf6;
}

.faq-section .faq-item.active .faq-answer {
    display: block;
}

.faq-section .faq-item:hover {
    background: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #faf5ff 0%, #fffaf0 100%);
    border-radius: 12px 12px 0 0;
}

.modal-header h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: #718096;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #2d3748;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.team-wallets-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-wallets-list .wallet-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.team-wallets-list .wallet-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.team-wallets-list .wallet-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-wallets-list .wallet-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-wallets-list .lock-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    color: #8b5cf6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-wallets-list .lock-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.team-wallets-list .wallet-copy:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateX(5px);
}

.team-wallets-list .wallet-text {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #4a5568;
    background: none;
    border: none;
    padding: 0;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .team-wallets-list .wallet-copy {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
} 

/* Team Wallet Copy Button Styles */
.team-wallet-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 32px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    color: #8b5cf6;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.team-wallet-copy-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.team-wallet-copy-btn.copied {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.team-wallet-copy-btn.copied::after {
    content: 'Copied!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.team-wallet-copy-btn svg {
    width: 14px;
    height: 14px;
}

/* Main team wallet copy buttons (outside modal) */
.main-team-wallet-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 4px;
    color: #8b5cf6;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.main-team-wallet-copy-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.main-team-wallet-copy-btn.copied {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.main-team-wallet-copy-btn.copied::after {
    content: 'Copied!';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34, 197, 94, 0.9);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.main-team-wallet-copy-btn svg {
    width: 12px;
    height: 12px;
}

/* Main page lock links (outside modal) */
.wallet-copy .wallet-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wallet-copy .lock-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 4px;
    color: #8b5cf6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wallet-copy .lock-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.wallet-copy .lock-link svg {
    width: 14px;
    height: 14px;
}

/* Spacing between wallet entries in allocation cards */
.allocation-card .wallet-copy {
    margin-bottom: 0.75rem;
}

.allocation-card .wallet-copy:last-child {
    margin-bottom: 0;
}