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

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 139, 139, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

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

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

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

.logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3rem;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transition: width 0.3s ease;
}

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

.connect-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Sections */
.about, .how-it-works, .verification, .ico, .waitlist, .dashboard {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 4rem 0;
    border-radius: 32px;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about::before, .how-it-works::before, .verification::before, 
.ico::before, .waitlist::before, .dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
}

.about h2, .how-it-works h2, .verification h2, .ico h2, .waitlist h2, .dashboard h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

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

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

.feature:hover::before {
    opacity: 1;
}

.feature h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

.step:hover::before {
    opacity: 1;
}

.step-number {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.step h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Verification Panel */
.verification-panel {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2.5rem;
    border-radius: 24px;
}

.verification-status {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.verification-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-input {
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.address-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.address-input:focus {
    outline: none;
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.verify-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.verify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.verification-progress {
    margin-top: 2.5rem;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

#progress-text {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ICO Panel */
.ico-panel {
    max-width: 1000px;
    margin: 0 auto;
}

.ico-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ico-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ico-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ico-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

.ico-stat:hover::before {
    opacity: 1;
}

.ico-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ico-stat p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 1rem;
}

.ico-purchase {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.ico-purchase h3 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.current-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.price-value {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.price-trend {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.trend-indicator {
    font-size: 1.1rem;
    font-weight: 600;
}

.trend-indicator.positive {
    color: #10b981;
}

.trend-indicator.negative {
    color: #ef4444;
}

.trend-period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.purchase-calculator {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calc-row:last-of-type {
    margin-bottom: 0;
}

.calc-row label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

.payment-method-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.currency-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    min-width: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23f59e0b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 2.5rem;
    background-color: rgba(10, 10, 10, 0.8);
}

.currency-select:hover,
.currency-select:focus {
    border-color: rgba(245, 158, 11, 0.6);
    background-color: rgba(245, 158, 11, 0.05);
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.currency-select option {
    background: #1a1a1a;
    color: white;
    padding: 0.5rem;
    border: none;
    font-weight: 500;
}

.calc-input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    text-align: right;
    flex: 1;
    min-width: 150px;
    transition: all 0.3s ease;
}

.calc-input:focus {
    outline: none;
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.calc-input:read-only {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.calc-arrow {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    margin: 1rem 0;
}

.purchase-benefits {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.purchase-benefits h4 {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.purchase-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purchase-benefits li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.purchase-benefits li:before {
    content: '';
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.purchase-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.buy-btn {
    flex: 1;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.buy-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.buy-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.purchase-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
}

.contribution-form {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contribution-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contribution-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contribution-input:focus {
    outline: none;
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contribute-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    white-space: nowrap;
}

.contribute-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.contribute-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.contribution-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

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

.dashboard-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.dashboard-card h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.dashboard-card p {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.1);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contribution-form {
        flex-direction: column;
    }
    
    .steps, .features, .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Status Indicators */
.status-verified {
    background: #4CAF50 !important;
    color: white;
}

.status-pending {
    background: #ff9800 !important;
    color: white;
}

.status-error {
    background: #f44336 !important;
    color: white;
}

/* Waitlist Styles */
.waitlist-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.waitlist-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 15px;
}

.waitlist-stat h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.waitlist-panel {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.waitlist-controls {
    margin-bottom: 2rem;
}

.waitlist-controls h3 {
    color: #333;
    margin-bottom: 1rem;
}

.queue-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #667eea;
    color: white;
}

.waitlist-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 150px 120px 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    font-weight: bold;
}

.table-body {
    max-height: 600px;
    overflow-y: auto;
}

.waitlist-entry {
    display: grid;
    grid-template-columns: 80px 1fr 150px 120px 120px;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.waitlist-entry:hover {
    background: #f8f9fa;
}

.waitlist-entry.current-user {
    background: #e3f2fd;
    border-left: 4px solid #667eea;
}

.col-position {
    font-weight: bold;
    color: #667eea;
}

.col-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.col-contribution {
    font-weight: bold;
    color: #4CAF50;
}

.status-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.status-verified {
    background: #4CAF50;
    color: white;
}

.status-waiting {
    background: #ff9800;
    color: white;
}

.status-receiving {
    background: #2196F3;
    color: white;
}

.loading-message {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.empty-message {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
    background: #667eea;
    color: white;
}

.pagination-btn:disabled {
    border-color: #ccc;
    color: #ccc;
    cursor: not-allowed;
}

.page-info {
    color: #666;
    font-weight: bold;
}

.your-position-card {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.your-position-card h3 {
    margin-bottom: 1rem;
    color: white;
}

.position-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.position-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.position-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
}

.position-label {
    font-size: 1.2rem;
}

.position-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.position-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.position-stat span {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.position-stat label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Waitlist */
@media (max-width: 768px) {
    .table-header,
    .waitlist-entry {
        grid-template-columns: 60px 1fr 100px 80px 80px;
        font-size: 0.85rem;
    }
    
    .queue-filters {
        flex-direction: column;
    }
    
    .position-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .waitlist-stats {
        grid-template-columns: 1fr;
    }
}/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

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

.dashboard-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.dashboard-card p {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Waitlist Styles - Updated for Modern Design */
.waitlist-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.waitlist-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.waitlist-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

.waitlist-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-stat p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.waitlist-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.waitlist-controls h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.queue-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.waitlist-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 150px 120px 120px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 1.5rem 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.waitlist-entry {
    display: grid;
    grid-template-columns: 80px 1fr 150px 120px 120px;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.waitlist-entry:hover {
    background: rgba(255, 255, 255, 0.05);
}

.waitlist-entry.current-user {
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid #f59e0b;
    color: #ffffff;
}

.col-position {
    font-weight: 700;
    color: #f59e0b;
}

.col-contribution {
    font-weight: 600;
    color: #10b981;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.status-verified {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-waiting {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-receiving {
    background: rgba(59, 130, 246, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.your-position-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
}

.your-position-card h3 {
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.position-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.position-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.position-stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.position-stat label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .contribution-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .table-header,
    .waitlist-entry {
        grid-template-columns: 60px 1fr 100px 80px 80px;
        font-size: 0.85rem;
        padding: 1rem 0.5rem;
    }
    
    .position-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Strategic Visual Elements - BitcoinHyper Style */

/* Hero Section Visuals */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-visual-left {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.8;
}

.hero-visual-right {
    position: absolute;
    right: -80px;
    top: 20%;
    z-index: 1;
    opacity: 0.7;
}

.ankh-symbol-large {
    font-size: 8rem;
    color: #f59e0b;
    opacity: 0.6;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
    animation: float 6s ease-in-out infinite;
    transform: rotate(-15deg);
}

.crypto-chain {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 50%, #f59e0b 100%);
    border-radius: 2px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.crypto-chain::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    animation: chainGlow 3s linear infinite;
}

.floating-coins-stack {
    position: relative;
}

.coin-3d {
    font-size: 3rem;
    position: absolute;
    animation: coinFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(245, 158, 11, 0.3));
}

.coin-3d:nth-child(1) { animation-delay: 0s; top: 0; left: 0; }
.coin-3d:nth-child(2) { animation-delay: 1.3s; top: -40px; left: 20px; }
.coin-3d:nth-child(3) { animation-delay: 2.6s; top: -80px; left: -20px; }

.ubi-flow-lines {
    width: 150px;
    height: 150px;
    border: 2px solid #f59e0b;
    border-radius: 50%;
    position: relative;
    margin-top: 40px;
    opacity: 0.4;
}

.ubi-flow-lines::before,
.ubi-flow-lines::after {
    content: '';
    position: absolute;
    border: 1px solid #f59e0b;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ubi-flow-lines::before {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation-delay: 0.5s;
}

.ubi-flow-lines::after {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    animation-delay: 1s;
}

/* ICO Section Visuals */
.ico {
    position: relative;
    overflow: hidden;
}

.ico-visual-left {
    position: absolute;
    left: 50px;
    top: 30%;
    z-index: 1;
    opacity: 0.6;
}

.ico-visual-right {
    position: absolute;
    right: 30px;
    bottom: 20%;
    z-index: 1;
    opacity: 0.7;
}

.trading-chart-lines {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, 
        transparent 30%, 
        #f59e0b 32%, 
        #f59e0b 34%, 
        transparent 36%,
        transparent 60%,
        #d97706 62%,
        #d97706 64%,
        transparent 66%);
    border-radius: 8px;
    position: relative;
    animation: chartPulse 3s ease-in-out infinite;
}

.price-ticker-bg {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 10px 15px;
    margin-top: 15px;
    display: flex;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.ticker-item {
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 600;
    animation: tickerGlow 2s ease-in-out infinite alternate;
}

.token-stack-3d {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    border-radius: 50%;
    position: relative;
    animation: tokenRotate 8s linear infinite;
}

.token-stack-3d::before,
.token-stack-3d::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    border-radius: 50%;
    opacity: 0.7;
}

.token-stack-3d::before {
    transform: translateZ(-10px) translateY(-8px);
}

.token-stack-3d::after {
    transform: translateZ(-20px) translateY(-16px);
    opacity: 0.4;
}

.liquidity-pool-visual {
    margin-top: 20px;
    width: 80px;
    height: 40px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.liquidity-pool-visual::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #f59e0b 50%, transparent 100%);
    animation: liquidityFlow 4s linear infinite;
    top: 0;
    left: -100%;
}

/* Waitlist Section Visuals */
.waitlist {
    position: relative;
    overflow: hidden;
}

.queue-visual-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.7;
}

.queue-visual-right {
    position: absolute;
    right: 40px;
    top: 30%;
    z-index: 1;
    opacity: 0.8;
}

.user-avatars-stack {
    display: flex;
    flex-direction: column;
    gap: -10px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    border: 2px solid #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: -15px;
    animation: avatarPulse 3s ease-in-out infinite;
}

.avatar-circle:nth-child(1) { animation-delay: 0s; }
.avatar-circle:nth-child(2) { animation-delay: 1s; opacity: 0.7; }
.avatar-circle:nth-child(3) { animation-delay: 2s; opacity: 0.4; }

.position-lines {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, #f59e0b 0%, transparent 100%);
    margin: 10px 25px;
    position: relative;
}

.ubi-distribution-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.payment-arrow {
    font-size: 3rem;
    animation: paymentPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
}

.monthly-indicator {
    color: #f59e0b;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Verification Section Visuals */
.verification {
    position: relative;
    overflow: hidden;
}

.verification-visual-left {
    position: absolute;
    left: 60px;
    top: 40%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.6;
}

.verification-visual-right {
    position: absolute;
    right: 50px;
    top: 30%;
    z-index: 1;
    opacity: 0.8;
}

.biometric-scanner-mockup {
    width: 120px;
    height: 120px;
    border: 2px solid #f59e0b;
    border-radius: 10px;
    position: relative;
    background: rgba(245, 158, 11, 0.05);
    overflow: hidden;
}

.scan-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(245, 158, 11, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: scanMove 3s linear infinite;
}

.facial-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #f59e0b;
    opacity: 0.7;
    animation: scanPulse 2s ease-in-out infinite;
}

.security-shield-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.shield-layer {
    font-size: 2.5rem;
    color: #f59e0b;
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.4));
    animation: shieldRotate 4s ease-in-out infinite;
}

.lock-icon {
    font-size: 1.5rem;
    color: #d97706;
    animation: lockBlink 2s ease-in-out infinite;
}

.node-network {
    margin-top: 20px;
    position: relative;
    width: 100px;
    height: 60px;
}

.network-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: nodePulse 2s ease-in-out infinite;
}

.network-node:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
.network-node:nth-child(2) { top: 20px; right: 0; animation-delay: 0.7s; }
.network-node:nth-child(3) { bottom: 0; left: 30px; animation-delay: 1.4s; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-15deg); }
}

@keyframes chainGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(180deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes chartPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes tickerGlow {
    0% { text-shadow: 0 0 5px rgba(245, 158, 11, 0.3); }
    100% { text-shadow: 0 0 15px rgba(245, 158, 11, 0.8); }
}

@keyframes tokenRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes liquidityFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(245, 158, 11, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(245, 158, 11, 0.6); }
}

@keyframes paymentPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

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

@keyframes scanPulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes shieldRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes lockBlink {
    0%, 90% { opacity: 1; }
    95% { opacity: 0.3; }
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 3px #f59e0b; }
    50% { transform: scale(1.5); box-shadow: 0 0 10px #f59e0b; }
}

/* Prominent ANKH Elements */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.8)); }
}

.hero-ankh-bg {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    color: rgba(245, 158, 11, 0.1);
    z-index: 0;
    pointer-events: none;
    animation: heroAnkhFloat 8s ease-in-out infinite;
}

.section-ankh-marker {
    text-align: center;
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    opacity: 0.8;
    animation: sectionAnkhPulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.4));
}

.about-ankh-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-ankh {
    position: absolute;
    font-size: 4rem;
    color: rgba(245, 158, 11, 0.3);
    animation: floatingAnkh 6s ease-in-out infinite;
    filter: blur(1px);
}

.ankh-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ankh-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.about {
    position: relative;
    overflow: hidden;
}

/* Enhanced Animations for ANKH elements */
@keyframes heroAnkhFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateX(-50%) translateY(-20px) rotate(5deg); opacity: 0.15; }
}

@keyframes sectionAnkhPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.4));
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 30px rgba(245, 158, 11, 0.7));
    }
}

@keyframes floatingAnkh {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-15px) rotate(10deg); 
        opacity: 0.4;
    }
    66% { 
        transform: translateY(-10px) rotate(-5deg); 
        opacity: 0.2;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
    /* Tablet adjustments */
    .hero-visual-left {
        left: -80px;
        opacity: 0.5;
    }
    
    .hero-visual-right {
        right: -60px;
        opacity: 0.4;
    }
    
    .ico-visual-left {
        left: 20px;
        opacity: 0.4;
    }
    
    .ico-visual-right {
        right: 10px;
        opacity: 0.4;
    }
    
    .ankh-symbol-large {
        font-size: 6rem;
    }
    
    .hero-ankh-bg {
        font-size: 12rem;
        top: -30px;
    }
    
    .section-ankh-marker {
        font-size: 2.5rem;
    }
    
    .floating-ankh {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    /* Hide complex background visuals on mobile for performance */
    .hero-visual-left,
    .hero-visual-right,
    .ico-visual-left,
    .ico-visual-right,
    .queue-visual-left,
    .queue-visual-right,
    .verification-visual-left,
    .verification-visual-right,
    .about-ankh-decorations {
        display: none;
    }
    
    .hero-ankh-bg {
        font-size: 8rem;
        top: -20px;
        opacity: 0.05;
    }
    
    .section-ankh-marker {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /* Make hero content more prominent on mobile */
    .hero-content {
        z-index: 2;
        position: relative;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        position: relative;
        z-index: 3;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .hero-ankh-bg {
        font-size: 6rem;
        top: -10px;
    }
    
    .section-ankh-marker {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Additional responsive improvements for existing visuals */
@media (max-width: 1024px) {
    .coin-3d {
        font-size: 2.5rem;
    }
    
    .trading-chart-lines {
        width: 100px;
        height: 60px;
    }
    
    .biometric-scanner-mockup {
        width: 100px;
        height: 100px;
    }
    
    .avatar-circle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Ensure content is readable on mobile */
    .hero {
        min-height: 70vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    /* Improve section spacing on mobile */
    section {
        padding: 4rem 0;
    }
    
    .section-ankh-marker {
        margin-bottom: 1rem;
    }
}

/* QR Code Payment Modal */
.qr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.qr-modal {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.95));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
    animation: slideUp 0.3s ease-out;
}

.qr-modal-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

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

.qr-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.qr-modal-close:hover {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.qr-modal-content {
    padding: 2rem;
}

.qr-payment-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.payment-amount, .payment-receive {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.amount-label, .receive-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.amount-value, .receive-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f59e0b;
}

.qr-code-container {
    text-align: center;
    margin-bottom: 2rem;
}

.qr-code-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    padding: 10px;
    background: white;
    margin-bottom: 1rem;
}

.qr-code-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.payment-address {
    margin-bottom: 1.5rem;
}

.payment-address label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.address-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.address-text {
    flex: 1;
    color: #f59e0b;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.copy-address {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-address:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.payment-instructions {
    margin-bottom: 1.5rem;
}

.instruction {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.05);
    border-left: 3px solid #f59e0b;
    border-radius: 0 8px 8px 0;
}

.payment-status {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.status-waiting {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.status-confirmed {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.status-expired {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.status-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.status-text {
    font-weight: 500;
}

.payment-timer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.timer-value {
    color: #f59e0b;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .qr-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .qr-modal-content {
        padding: 1.5rem;
    }
    
    .qr-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .qr-payment-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .address-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .copy-address {
        width: 100%;
    }
    
    .qr-code-image {
        width: 180px;
        height: 180px;
    }
}
