/* Landing Page Specific Styles */

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.version {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.nav-link {
    color: #b8b8b8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navigation */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    animation: neuralPulse 8s ease-in-out infinite;
}

@keyframes neuralPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(26, 26, 46, 0.8) 50%,
        rgba(22, 33, 62, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-subtitle strong {
    color: #FFD700;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat-item.highlight {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.countdown-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    min-width: 80px;
    text-align: center;
}

.time-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.time-label {
    font-size: 0.8rem;
    color: #b8b8b8;
    text-transform: uppercase;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

/* Selection Process */
.selection-process {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out both;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }
.process-step:nth-child(5) { animation-delay: 1s; }

.step-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.step-content p {
    color: #b8b8b8;
    margin-bottom: 1rem;
}

.step-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Selection Criteria */
.selection-criteria {
    padding: 6rem 0;
}

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

.criteria-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out both;
}

.criteria-card:nth-child(1) { animation-delay: 0.2s; }
.criteria-card:nth-child(2) { animation-delay: 0.4s; }
.criteria-card:nth-child(3) { animation-delay: 0.6s; }
.criteria-card:nth-child(4) { animation-delay: 0.8s; }
.criteria-card:nth-child(5) { animation-delay: 1s; }

.criteria-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.criteria-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.criteria-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Funding Progress */
.funding-progress {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.progress-header {
    text-align: center;
    margin-bottom: 2rem;
}

.progress-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.progress-stats {
    font-size: 1.5rem;
    color: #FFD700;
}

.current-amount {
    font-weight: 700;
}

.separator {
    margin: 0 0.5rem;
    color: #666;
}

.target-amount {
    color: #b8b8b8;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin: 2rem 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    border-radius: 6px;
    transition: width 2s ease-out;
    animation: progressGlow 2s infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

.progress-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.detail-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.detail-item .label {
    display: block;
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.detail-item .value {
    display: block;
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .time-value {
        font-size: 1.2rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .criteria-card {
        padding: 2rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modal-header h2 {
    margin: 0;
    color: #FFD700;
    font-size: 1.8rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.important-notice {
    display: flex;
    align-items: flex-start;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.notice-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.notice-text {
    color: #FEE2E2;
    font-size: 0.9rem;
    line-height: 1.5;
}

.notice-text strong {
    color: #FECACA;
}

/* Form Styles */
.application-form {
    max-width: none;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #FFD700;
    border-color: #FFD700;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .important-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Double Token Advantage Styles */
.double-advantage-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.advantage-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.token-flow-animation {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.investment-input {
    text-align: center;
    margin-bottom: 2rem;
}

.investment-input .label {
    display: block;
    color: #b8b8b8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.amount-input {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin: 0 auto;
    display: inline-block;
}

.token-split {
    text-align: center;
    margin: 2rem 0;
}

.arrow-down {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.split-text {
    font-weight: 600;
    color: #10B981;
    font-size: 1.1rem;
}

.dual-allocation {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}

.allocation-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.allocation-box.primary {
    border-color: rgba(59, 130, 246, 0.3);
}

.allocation-box.bonus {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.allocation-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.token-amount, .node-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.token-value, .node-value {
    color: #b8b8b8;
    margin-bottom: 1rem;
}

.projected-value {
    color: #10B981;
    font-weight: 600;
    font-size: 1.1rem;
}

.plus-sign {
    font-size: 2rem;
    color: #FFD700;
    font-weight: 700;
}

.total-value {
    margin-top: 3rem;
}

.total-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.total-highlight h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.current-total, .projected-total {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.current-total {
    color: #fff;
}

.projected-total {
    color: #10B981;
}

.roi-multiplier {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    margin-top: 1rem;
}

.advantage-explanation-text h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.main-explanation {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
}

.benefit-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #FFD700;
}

.benefit-point .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text strong {
    color: #FFD700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #b8b8b8;
    line-height: 1.5;
}

/* Node Tokens Explanation */
.node-tokens-explanation {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.node-explanation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.network-diagram {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    height: 500px;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.central-node {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.network-nodes {
    position: relative;
    height: 100%;
}

.node {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.node:nth-child(1) { top: 10%; left: 10%; }
.node:nth-child(2) { top: 10%; right: 10%; }
.node:nth-child(3) { bottom: 10%; left: 10%; }
.node:nth-child(4) { bottom: 10%; right: 10%; }

.node:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

.node-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.node-label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.revenue {
    color: #10B981;
    font-weight: 700;
    font-size: 0.8rem;
}

.network-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: space-around;
}

.stat {
    text-align: center;
}

.stat .label {
    display: block;
    color: #b8b8b8;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.stat .value {
    color: #FFD700;
    font-weight: 700;
    font-size: 1rem;
}

.node-token-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.benefit-card h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.example {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #FFD700;
    font-size: 0.9rem;
}

.growth-projection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.growth-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    color: #10B981;
    font-size: 0.9rem;
}

.exclusivity-highlight {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #EF4444;
    font-weight: 600;
    text-align: center;
}

/* Enhanced ROI Calculator */
.enhanced-roi-calculator {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.calculator-interface {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.input-section {
    text-align: center;
    margin-bottom: 3rem;
}

.input-section h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.investment-slider {
    max-width: 400px;
    margin: 0 auto;
}

.investment-slider input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
}

.investment-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFD700;
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.current-investment {
    margin-top: 1rem;
}

.current-investment span {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
}

.calculation-results h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.token-allocation {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.token-allocation.bonus {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

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

.allocation-header h4 {
    color: #FFD700;
    font-size: 1.2rem;
}

.allocation-type {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.bonus-label {
    color: #10B981;
    font-weight: 600;
}

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

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

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

.detail-row span:first-child {
    color: #b8b8b8;
}

.detail-row span:last-child {
    color: #fff;
    font-weight: 600;
}

.roi-row span:last-child {
    color: #10B981;
    font-weight: 700;
}

.total-value-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.total-header h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.total-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.total-row.current span:nth-child(2) {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.total-row.projected span:nth-child(2) {
    color: #10B981;
    font-weight: 700;
    font-size: 1.3rem;
}

.total-row.roi span:nth-child(2) {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.4rem;
}

.bonus-indicator, .improvement {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design for Double Token Advantage */
@media (max-width: 1024px) {
    .advantage-explanation,
    .node-explanation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantage-title {
        font-size: 2rem;
    }
    
    .network-diagram {
        height: 400px;
    }
    
    .dual-allocation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .plus-sign {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .advantage-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .token-flow-animation {
        padding: 2rem;
    }
    
    .amount-input {
        font-size: 2rem;
    }
    
    .allocation-box {
        padding: 1.5rem;
    }
    
    .allocation-box h4 {
        font-size: 1.1rem;
    }
    
    .token-amount, .node-amount {
        font-size: 1.5rem;
    }
    
    .network-diagram {
        height: 300px;
        padding: 2rem;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .calculator-interface {
        padding: 2rem;
    }
    
    .total-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}