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

:root {
    --apple-white: #ffffff;
    --apple-gray-50: #f9fafb;
    --apple-gray-100: #f3f4f6;
    --apple-gray-200: #e5e7eb;
    --apple-gray-300: #d1d5db;
    --apple-gray-400: #9ca3af;
    --apple-gray-500: #6b7280;
    --apple-gray-600: #4b5563;
    --apple-gray-700: #374151;
    --apple-gray-800: #1f2937;
    --apple-gray-900: #111827;
    --apple-blue: #007aff;
    --apple-green: #34c759;
    --apple-orange: #ff9500;
    --apple-red: #ff3b30;
    --apple-purple: #af52de;
    --apple-pink: #ff2d55;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, var(--apple-gray-50) 0%, var(--apple-white) 50%, var(--apple-gray-100) 100%);
    color: var(--apple-gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--apple-gray-900);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--apple-gray-700);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--apple-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--apple-blue), var(--apple-purple));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--apple-gray-50) 0%, var(--apple-white) 50%, var(--apple-gray-100) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.05), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(175, 82, 222, 0.05), transparent);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: var(--apple-gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--apple-gray-600);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-emoji {
    font-size: 3rem;
    margin: 1rem 0;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 217, 0.6)) drop-shadow(0 0 40px rgba(255, 0, 110, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 255, 217, 0.8)) drop-shadow(0 0 60px rgba(255, 0, 110, 0.5));
    }
}

@keyframes border-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--apple-gray-500);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.5px;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--apple-blue);
    color: var(--apple-white);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    background: #0056cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--apple-blue);
    border: 2px solid var(--apple-blue);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--apple-gray-50);
    position: relative;
}

.features h2,
.contact h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--apple-gray-900);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.feature-card {
    background: var(--apple-white);
    border: 1px solid var(--apple-gray-200);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--apple-blue);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--apple-gray-900);
    font-weight: 600;
}

.feature-card p {
    color: var(--apple-gray-600);
    line-height: 1.6;
}

/* Technology Section */
.technology {
    padding: 6rem 2rem;
    background: var(--apple-white);
    position: relative;
}

.technology h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--apple-gray-900);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tech-content {
    max-width: 800px;
    margin: 0 auto;
}

.tech-item {
    background: var(--apple-gray-50);
    border: 1px solid var(--apple-gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--apple-blue);
}

.tech-item h3 {
    font-size: 1.5rem;
    color: var(--apple-gray-900);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--apple-blue);
}

.tech-item p {
    color: var(--apple-gray-600);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Why BTZ Section */
.why-btz {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--apple-gray-50) 0%, var(--apple-white) 100%);
    position: relative;
}

.why-btz h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--apple-gray-900);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.why-btz-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-item {
    background: var(--apple-white);
    border: 2px solid var(--apple-gray-200);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.why-item:hover {
    transform: translateY(-8px);
    border-color: var(--apple-blue);
    box-shadow: 0 12px 28px rgba(0, 122, 255, 0.2);
}

.why-number {
    font-size: 3rem;
    line-height: 1;
}

.why-item h3 {
    font-size: 1.3rem;
    color: var(--apple-gray-900);
    font-weight: 600;
    line-height: 1.6;
}

.why-btz-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: var(--apple-gray-700);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Community Section */
.community {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--apple-blue) 0%, #0056cc 100%);
    position: relative;
}

.community .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-content {
    color: var(--apple-white);
}

.community h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--apple-white);
}

.community-description {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.community-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.community-cta {
    display: flex;
    gap: 1rem;
}

.community .btn-primary {
    background: var(--apple-white);
    color: var(--apple-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.community .btn-primary:hover {
    background: var(--apple-gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-info {
    color: var(--apple-white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-info p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Security Campaign Section */
.security-campaign {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.security-overlay {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideInUp 0.8s ease-out;
}

.security-content {
    color: var(--apple-white);
    text-align: center;
}

.security-question {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--apple-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.security-points {
    list-style: none;
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    line-height: 2;
}

.security-points li {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.security-points li:nth-child(2) {
    color: var(--apple-blue);
    font-size: 1.6rem;
    font-weight: 700;
}

.security-cta {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}

/* Discord Section */
.discord {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--apple-gray-50) 0%, var(--apple-white) 100%);
    position: relative;
}

.discord h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--apple-gray-900);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.discord-content {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.discord-message {
    background: var(--apple-white);
    border: 2px solid var(--apple-gray-200);
    border-radius: 16px;
    padding: 3rem;
    max-width: 700px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-message:hover {
    border-color: var(--apple-blue);
    box-shadow: 0 12px 32px rgba(0, 122, 255, 0.2);
}

.discord-message h3 {
    font-size: 2rem;
    color: var(--apple-gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.discord-message > p {
    font-size: 1.1rem;
    color: var(--apple-gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.citadel-banner {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(0, 122, 255, 0.05) 100%);
    border-left: 4px solid var(--apple-blue);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.citadel-banner p {
    font-size: 1.05rem;
    color: var(--apple-gray-800);
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

.discord-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.discord-features li {
    padding: 0.8rem 0;
    color: var(--apple-gray-700);
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--apple-gray-200);
}

.discord-features li:last-child {
    border-bottom: none;
}

.discord-message .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* Roadmap Section */
.roadmap {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--apple-white) 0%, var(--apple-gray-50) 100%);
    position: relative;
}

.roadmap h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--apple-gray-900);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.roadmap-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--apple-gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

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

.roadmap-item {
    background: var(--apple-white);
    border: 2px solid var(--apple-gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.roadmap-item:hover {
    transform: translateY(-8px);
    border-color: var(--apple-blue);
    box-shadow: 0 12px 28px rgba(0, 122, 255, 0.2);
}

.roadmap-quarter {
    display: inline-block;
    background: linear-gradient(135deg, var(--apple-blue) 0%, #0056cc 100%);
    color: var(--apple-white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.roadmap-item h3 {
    font-size: 1.4rem;
    color: var(--apple-gray-900);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.roadmap-item ul {
    list-style: none;
}

.roadmap-item li {
    color: var(--apple-gray-600);
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.roadmap-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--apple-blue);
    font-weight: bold;
}

/* Technical FAQ Section */
.technical-faq {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--apple-gray-50) 0%, var(--apple-white) 100%);
    position: relative;
}

.technical-faq h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--apple-gray-900);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--apple-gray-600);
    margin-bottom: 3rem;
    font-weight: 500;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section-title {
    font-size: 1.8rem;
    color: var(--apple-gray-900);
    margin-bottom: 2rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--apple-blue);
    display: inline-block;
}

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

.faq-item {
    background: var(--apple-white);
    border: 1px solid var(--apple-gray-200);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: var(--apple-blue);
    box-shadow: 0 8px 16px rgba(0, 122, 255, 0.15);
    transform: translateY(-4px);
}

.faq-item h3 {
    font-size: 1.15rem;
    color: var(--apple-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.faq-item h4 {
    font-size: 1.15rem;
    color: var(--apple-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.faq-item p {
    color: var(--apple-gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Tokenomics Section */
.tokenomics {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--apple-white) 0%, var(--apple-gray-50) 100%);
    position: relative;
}

.tokenomics h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--apple-gray-900);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tokenomics-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--apple-gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.tokenomics-card {
    background: var(--apple-white);
    border: 2px solid var(--apple-gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tokenomics-card:hover {
    transform: translateY(-8px);
    border-color: var(--apple-blue);
    box-shadow: 0 12px 28px rgba(0, 122, 255, 0.2);
}

.tokenomics-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    color: var(--apple-gray-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tokenomics-value {
    font-size: 1.3rem;
    color: var(--apple-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.tokenomics-card p {
    color: var(--apple-gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
}

.tokenomics-summary {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(0, 122, 255, 0.02) 100%);
    border: 2px solid var(--apple-gray-200);
    border-radius: 16px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.tokenomics-summary h3 {
    font-size: 1.8rem;
    color: var(--apple-gray-900);
    margin-bottom: 2rem;
    font-weight: 600;
}

.tokenomics-summary ul {
    list-style: none;
}

.tokenomics-summary li {
    color: var(--apple-gray-700);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.05rem;
}

.tokenomics-summary li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--apple-blue);
    font-weight: bold;
    font-size: 1.3rem;
}

.tokenomics-summary li strong {
    color: var(--apple-blue);
}

/* Tokenomics Section */
.tokenomics {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0e27 0%, #1a0e35 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tokenomics-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-bar {
    height: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chart-bar:hover {
    filter: brightness(1.2);
    height: 40px;
}

.chart-item p {
    font-weight: 600;
    color: var(--light-text);
}

.tokenomics-info h3 {
    color: var(--apple-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.tokenomics-info ul {
    list-style: none;
}

.tokenomics-info li {
    padding: 1rem;
    background: var(--apple-gray-50);
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--apple-blue);
    border-radius: 8px;
    color: var(--apple-gray-600);
}

/* Community Section */
.community {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a0e35 0%, #0f1535 100%);
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--apple-gray-500);
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.social-btn {
    padding: 0.8rem 1.5rem;
    background: var(--apple-white);
    border: 1px solid var(--apple-gray-300);
    color: var(--apple-blue);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-btn:hover {
    background: var(--apple-blue);
    color: var(--apple-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

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

.stat {
    padding: 2rem;
    background: rgba(0, 180, 255, 0.1);
    border: 2px solid rgba(0, 180, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(0, 180, 255, 0.2);
    transform: scale(1.05);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--apple-gray-500);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--apple-white);
    position: relative;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--apple-gray-50);
    border: 1px solid var(--apple-gray-300);
    color: var(--apple-gray-900);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--apple-gray-400);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: var(--apple-white);
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--apple-gray-100);
    border-top: 1px solid var(--apple-gray-200);
    padding: 2rem;
    text-align: center;
    color: var(--apple-gray-600);
}

.footer-disclaimer {
    font-size: 0.95rem;
    color: var(--apple-gray-700);
    font-weight: 500;
    margin: 1rem 0;
    line-height: 1.6;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--apple-blue);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--apple-purple);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .logo-img {
        width: 35px;
        height: 35px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

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

    .security-question {
        font-size: 2.2rem;
    }

    .security-points li {
        font-size: 1.1rem;
    }

    .security-points li:nth-child(2) {
        font-size: 1.3rem;
    }

    .discord-message {
        padding: 2rem;
    }

    .discord-message h3 {
        font-size: 1.5rem;
    }

    .roadmap-timeline {
        grid-template-columns: 1fr;
    }

    .roadmap-detailed {
        grid-template-columns: 1fr;
    }

    .roadmap h2 {
        font-size: 2rem;
    }

    .technical-faq h2 {
        font-size: 2rem;
    }

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

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

    .tokenomics h2 {
        font-size: 2rem;
    }

    .tokenomics-summary {
        padding: 2rem;
    }
}
