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

:root {
    --primary-bg: #000000;
    --secondary-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --accent-teal: #14F195;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --border-color: #2a2a2a;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 24px;
    height: 24px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.btn-outline {
    padding: 0.65rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    padding: 0.65rem 1.5rem;
    background: var(--text-primary);
    border: none;
    border-radius: 100px;
    color: var(--primary-bg);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.btn-primary.connected {
    background: rgba(20, 241, 149, 0.1);
    color: var(--accent-teal);
    border: 1px solid var(--accent-teal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.hero-label {
    font-size: 7rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-divider {
    font-size: 3rem;
    color: var(--text-secondary);
    margin: 0 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

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

.hero-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-btn img {
    width: 16px;
    height: 16px;
}

/* Mission Section */
.mission-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Airdrop Section */
.airdrop-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

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

.airdrop-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.airdrop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.airdrop-card:hover::before {
    opacity: 1;
}

.airdrop-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(20, 241, 149, 0.3);
    transform: translateY(-5px);
}

.card-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.card-icon-text {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #14F195, #5ECFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

.airdrop-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.airdrop-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.action-button {
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.action-button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.action-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.action-button.primary {
    background: var(--text-primary);
    border: none;
    color: var(--primary-bg);
}

.action-button.primary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.action-button.success {
    background: rgba(20, 241, 149, 0.1);
    border-color: var(--accent-teal);
    color: var(--accent-teal);
}

/* Wallet Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

/* PDF Modal */
.pdf-modal {
    background: rgba(0, 0, 0, 0.98);
}

.pdf-modal-content {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: 90vw;
    width: 90vw;
    height: 90vh;
    position: relative;
}

.pdf-modal-content .modal-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pdf-modal-content .modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--text-primary);
}

.pdf-viewer {
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.wallet-modal-content {
    max-width: 480px !important;
    background: #0a0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-modal-title {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.wallet-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.wallet-option-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.wallet-option-item:hover:not(.disabled) {
    border-color: var(--accent-teal);
    background: rgba(20, 241, 149, 0.05);
}

.wallet-option-item.disabled {
    cursor: default;
    opacity: 0.7;
}

.wallet-option-item.disabled:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.wallet-option-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
}

.wallet-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.wallet-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    flex-shrink: 0;
}

.trust-logo {
    background: linear-gradient(135deg, #3375BB, #66A9E8);
}

.metamask-logo {
    background: linear-gradient(135deg, #F6851B, #E2761B);
}

.wallet-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-primary);
    white-space: nowrap;
}

.wallet-status-badge {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    flex-shrink: 0;
}

.wallet-status {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    min-height: 20px;
}

/* Status Messages */
.status-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
    font-size: 0.95rem;
}

.status-message.success {
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid var(--accent-teal);
    color: var(--accent-teal);
    display: block;
}

.status-message.error {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    color: #ff4444;
    display: block;
}

.status-message.info {
    background: rgba(94, 207, 255, 0.1);
    border: 1px solid #5ECFFF;
    color: #5ECFFF;
    display: block;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-primary);
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Eligibility Result */
.eligibility-result {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: none;
    text-align: left;
}

.eligibility-result.show {
    display: block;
}

.eligibility-result h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-teal);
    font-weight: 600;
}

.eligibility-details {
    display: grid;
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Staking Page Styles */
.stake-hero-section {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0a1f1f 0%, #0a0a0a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.stake-hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 241, 149, 0.15) 50%, rgba(94, 207, 255, 0.2) 100%);
    pointer-events: none;
}

.stake-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stake-hero-left {
    padding-right: 2rem;
}

.stake-hero-title {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #5ECFFF;
    letter-spacing: -0.02em;
}

.stake-hero-earn {
    color: #5ECFFF;
    font-weight: 500;
}

.stake-hero-apy {
    color: var(--text-primary);
    font-weight: 500;
}

.stake-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
}

.stake-hero-right {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.stake-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stake-card-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.current-yield {
    text-align: right;
}

.yield-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.yield-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
}

.staking-live-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid var(--accent-teal);
    border-radius: 8px;
    color: var(--accent-teal);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.wallet-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-primary);
}

.stake-card-description {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.connect-wallet-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--text-primary);
    border: none;
    border-radius: 12px;
    color: var(--primary-bg);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.connect-wallet-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.connect-wallet-btn svg {
    width: 20px;
    height: 20px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

.how-step h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.how-step p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Supply Section */
.supply-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.supply-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.supply-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.supply-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.supply-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.supply-value {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
}

.supply-chart {
    margin-top: 4rem;
}

.chart-container {
    height: 400px;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

/* FAQs Section */
.faqs-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-teal);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    color: var(--accent-teal);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(20, 241, 149, 0.2);
    margin-top: 8rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    height: 35px;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 1rem;
}

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

.footer-column h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column h4.invisible-header {
    opacity: 0;
    pointer-events: none;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #14F195;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(20, 241, 149, 0.3);
    padding: 1.5rem 2rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #14F195;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #0FD17A;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.reject-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.reject-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.accept-btn {
    background: #14F195;
    color: #000;
}

.accept-btn:hover {
    background: #0FD17A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 241, 149, 0.3);
}

/* Privacy Panel Slide-out */
.privacy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.privacy-overlay.active {
    opacity: 1;
    visibility: visible;
}

.privacy-panel {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
}

.privacy-panel.active {
    left: 0;
}

.privacy-panel-content {
    padding: 2rem;
    color: #fff;
}

.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.privacy-logo {
    height: 32px;
}

.privacy-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.privacy-close:hover {
    color: #14F195;
}

.privacy-panel h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.privacy-panel p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.privacy-more-info {
    display: inline-block;
    color: #14F195;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.privacy-more-info:hover {
    color: #0FD17A;
}

.privacy-btn {
    width: 100%;
    padding: 0.875rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.allow-all-btn {
    background: #14F195;
    color: #000;
}

.allow-all-btn:hover {
    background: #0FD17A;
    transform: translateY(-2px);
}

.confirm-btn {
    background: #fff;
    color: #000;
}

.confirm-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.privacy-preferences {
    margin: 2rem 0;
}

.privacy-preferences h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.privacy-option {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.privacy-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.privacy-option-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.privacy-option-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.privacy-always-active {
    font-size: 0.85rem;
    color: #ff6b9d;
    font-weight: 500;
}

.privacy-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.privacy-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.privacy-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
}

.privacy-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.privacy-toggle input:checked + .privacy-toggle-slider {
    background-color: #14F195;
}

.privacy-toggle input:checked + .privacy-toggle-slider:before {
    transform: translateX(24px);
}

.privacy-option-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.privacy-option-content.active {
    max-height: 200px;
    padding: 0 1rem 1rem;
}

.privacy-option-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-label {
        font-size: 5rem;
    }
    
    .airdrop-cards {
        grid-template-columns: 1fr;
    }
    
    .stake-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stake-hero-left {
        padding-right: 0;
    }
    
    .stake-hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1rem;
    }
    
    .logo {
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .header-buttons {
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .btn-outline,
    .btn-primary {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-label {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-section,
    .airdrop-section {
        padding: 4rem 1.5rem;
    }
    
    .mission-title,
    .section-title {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .airdrop-cards {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .privacy-panel {
        width: 100%;
        left: -100%;
    }
    
    .privacy-panel.active {
        left: 0;
    }
    
    .privacy-panel-content {
        padding: 1.5rem;
    }
    
    .pdf-modal-content {
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        border-radius: 0;
    }
    
    .pdf-modal-content .modal-close {
        position: fixed;
        top: 0.5rem;
        right: 0.5rem;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        z-index: 10001;
        background: rgba(0, 0, 0, 0.9);
    }
    
    .pdf-viewer {
        border-radius: 0;
        width: 100%;
        height: 100%;
    }
    
    .pdf-viewer iframe {
        width: 100%;
        height: 100%;
    }
    
    .stake-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .how-steps-grid,
    .supply-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small screens - prevent header overlap */
@media (max-width: 480px) {
    header {
        padding: 0.8rem 0.8rem;
    }
    
    .logo {
        font-size: 0.85rem;
    }
    
    .btn-outline,
    .btn-primary {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .pdf-modal-content .modal-close {
        top: 0.25rem;
        right: 0.25rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}