/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --gold-light: #F5E6B3;
    --gold-dark: #B8942F;
    --dark-bg: #0A0A0F;
    --darker-bg: #050508;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8C0;
    --gradient-start: #1A1A1E;
    --gradient-end: #0D0D12;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--dark-bg);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.loading-logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loadingPulse 2s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.loading-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8));
    position: relative;
    z-index: 2;
}

.loading-logo-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: loadingGlow 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes loadingGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.loading-progress {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loading-percentage {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 50%, 
        transparent 100%);
    animation: loadingShimmer 2s ease-in-out infinite;
}

@keyframes loadingShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* Mobile Responsive for Loading Screen */
@media (max-width: 768px) {
    .loading-logo-container {
        width: 150px;
        height: 150px;
    }
    
    .loading-percentage {
        font-size: 2.5rem;
    }
    
    .loading-progress {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .loading-logo-container {
        width: 120px;
        height: 120px;
    }
    
    .loading-percentage {
        font-size: 2rem;
    }
    
    .loading-progress {
        width: 200px;
        gap: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulseGradient 8s ease-in-out infinite;
}

@keyframes pulseGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    animation: float 15s infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Crypto Logos Float */
.crypto-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.crypto-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
    animation: floatCrypto 20s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.crypto-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes floatCrypto {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
        transform: translateY(50vh) translateX(50px) rotate(180deg);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-10vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Heartbeat Line */
.heartbeat-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1200px;
    height: 100px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.6;
}

.heartbeat-svg {
    width: 100%;
    height: 100%;
}

.heartbeat-path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawHeartbeatECG 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
}

@keyframes drawHeartbeatECG {
    0% {
        stroke-dashoffset: 1500;
        opacity: 0.3;
    }
    3% {
        opacity: 1;
    }
    97% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 100;
    padding: 2rem 0;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo-icon {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--gold-light);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.btn-connect {
    padding: 0.75rem 1.8rem;
    background: var(--dark-bg);
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    overflow: hidden;
}

/* Double golden wire border effect */
.btn-connect::before,
.btn-connect::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(45deg, 
        var(--primary-gold), 
        var(--gold-light), 
        var(--primary-gold),
        var(--gold-dark),
        var(--primary-gold)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: rotateBorder 3s linear infinite;
}

.btn-connect::after {
    padding: 1px;
    opacity: 0.6;
    animation: rotateBorder 3s linear infinite reverse;
}

@keyframes rotateBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-connect:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-connect:hover::before,
.btn-connect:hover::after {
    animation-play-state: paused;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-showcase {
    margin-bottom: 3rem;
    animation: fadeInScale 1s ease-out 0.3s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
    animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-gold) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out both;
}

.title-line:nth-child(1) {
    animation-delay: 0.5s;
}

.title-line:nth-child(2) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}


/* Modal Overlay */
.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: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.3);
    animation: modalSlideIn 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin: 0;
    font-weight: 700;
}

.btn-close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-modal:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 2rem;
    padding-right: 0.5rem;
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.modal-footer {
    display: flex;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.asset-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.asset-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.asset-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.asset-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    font-size: 1.2rem;
}

.asset-details h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.asset-details p {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.asset-balance {
    text-align: right;
}

.balance-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
}

.balance-usd {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.25rem;
}

.loading-spinner {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.loading-spinner::after {
    content: '⏳';
    font-size: 2rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.results-footer {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Countdown Modal Specific Styles */
.countdown-modal .modal-body {
    padding: 2rem 0;
}

/* Setup Info Modal */
.setup-info-modal {
    max-width: 600px;
}

.setup-info-modal .modal-body {
    padding: 1.5rem 0;
}

.setup-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.setup-feature-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.setup-feature-list li::before {
    content: '•';
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.setup-coming-soon {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    text-align: center;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1rem;
}

/* Configuration Form Styles */
.config-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-select {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.07);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Fix select dropdown options visibility */
.form-select option {
    background: #1a1a1e;
    color: var(--text-primary);
    padding: 0.75rem;
}

.form-select option:hover {
    background: rgba(212, 175, 55, 0.2);
}

.form-range {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.form-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary-gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.range-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    min-width: 50px;
    text-align: right;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-gold);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.03);
}

.form-hint {
    font-size: 0.82rem;
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.4;
}

.countdown-container {
    text-align: center;
}

.countdown-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.launch-date {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 80px;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown-separator {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 300;
    opacity: 0.5;
    margin: 0 -0.5rem;
}

.countdown-message {
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-top: 2rem;
}

.countdown-message p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.btn-notify {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-notify svg {
    transition: transform 0.3s ease;
}

.btn-notify:hover svg {
    animation: bellRing 0.5s ease;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.error-message {
    padding: 1rem;
    background: rgba(255, 82, 82, 0.1);
    border: 1px solid rgba(255, 82, 82, 0.3);
    border-radius: 8px;
    color: #ff5252;
    text-align: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 1.3s both;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 1.5s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    margin: 0 auto 1rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }
}

.scroll-indicator p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Tokens Section */
.tokens-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 4rem 0;
    background: var(--dark-bg);
}

.tokens-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 2rem 3rem;
    text-align: center;
    box-sizing: border-box;
}

.tokens-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out both;
}

.tokens-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    opacity: 0.7;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tokens-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.token-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-width: 150px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.token-card:hover::before {
    opacity: 1;
}

.token-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.token-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
    transition: transform 0.4s ease;
}

.token-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.token-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.token-symbol {
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 1px;
}

/* Coming Soon Section */
.coming-soon-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 5rem;
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0.8;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.tokens-grid-small {
    gap: 2rem;
}

.token-card-small {
    min-width: 120px;
    padding: 1.5rem 1rem;
    opacity: 0.85;
}

.token-card-small:hover {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
}

.token-card-small img {
    width: 60px;
    height: 60px;
}

.token-card-small .token-name {
    font-size: 0.95rem;
}

.token-card-small .token-symbol {
    font-size: 0.9rem;
}

/* Technology Section */
.technology-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 4rem;
}

.technology-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.technology-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.7;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* 3D Carousel Container */
.tech-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-carousel {
    width: 100%;
    height: 450px;
    perspective: 2000px;
    position: relative;
    overflow: visible;
}

.tech-carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3D Tech Cards */
.tech-card-3d {
    position: absolute;
    width: 400px;
    height: 100%;
    left: 50%;
    top: 0;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.tech-card-inner {
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
}

/* Video Background for Each Tech Card */
.tech-card-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.6;
    filter: blur(1px);
}

.tech-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 15, 0.5) 0%, 
        rgba(26, 26, 30, 0.4) 50%,
        rgba(10, 10, 15, 0.5) 100%);
    z-index: 1;
}

.tech-card-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.tech-card-3d:hover .tech-card-inner::before {
    opacity: 1;
}

/* Card Positions */
.tech-card-3d[data-position="center"] {
    transform: translateX(-50%) translateZ(0px) scale(1);
    z-index: 5;
    opacity: 1;
}

.tech-card-3d[data-position="center"] .tech-card-inner {
    border-color: var(--primary-gold);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.tech-card-3d[data-position="left"] {
    transform: translateX(-120%) translateZ(-300px) rotateY(35deg) scale(0.85);
    z-index: 3;
    opacity: 0.6;
}

.tech-card-3d[data-position="right"] {
    transform: translateX(20%) translateZ(-300px) rotateY(-35deg) scale(0.85);
    z-index: 3;
    opacity: 0.6;
}

.tech-card-3d[data-position="far-left"] {
    transform: translateX(-180%) translateZ(-500px) rotateY(45deg) scale(0.7);
    z-index: 1;
    opacity: 0.3;
}

.tech-card-3d[data-position="far-right"] {
    transform: translateX(80%) translateZ(-500px) rotateY(-45deg) scale(0.7);
    z-index: 1;
    opacity: 0.3;
}

.tech-card-3d[data-position="hidden"] {
    transform: translateX(-50%) translateZ(-800px) scale(0.5);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    color: var(--primary-gold);
}

.carousel-nav:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-prev {
    left: 20px;
}

.carousel-nav-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.4);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transform: scale(1.3);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpStagger 0.6s ease-out forwards;
}

.tech-card[data-tech="1"] { animation-delay: 0.2s; }
.tech-card[data-tech="2"] { animation-delay: 0.3s; }
.tech-card[data-tech="3"] { animation-delay: 0.4s; }
.tech-card[data-tech="4"] { animation-delay: 0.5s; }
.tech-card[data-tech="5"] { animation-delay: 0.6s; }
.tech-card[data-tech="6"] { animation-delay: 0.7s; }

@keyframes fadeInUpStagger {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.tech-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: all 0.4s ease;
    position: relative;
    z-index: 10;
}

.tech-card:hover .tech-icon,
.tech-card-3d:hover .tech-icon {
    transform: scale(1.1) rotateY(360deg);
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.tech-card-3d[data-position="center"] .tech-icon {
    transform: scale(1.15);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.tech-icon svg {
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.tech-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.tech-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    opacity: 0.8;
    position: relative;
    z-index: 10;
}

/* Process Flow Section */
.process-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.process-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 2.2s both;
}

.process-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 2.4s both;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    overflow-x: auto;
    gap: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) rgba(255, 255, 255, 0.05);
}

.process-flow::-webkit-scrollbar {
    height: 8px;
}

.process-flow::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.process-flow::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

.process-flow::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.process-step {
    flex: 0 0 auto;
    width: 200px;
    min-height: 320px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: stepAppear 0.6s ease-out forwards;
    display: flex;
    flex-direction: column;
}

.process-step[data-step="1"] { animation-delay: 2.6s; }
.process-step[data-step="2"] { animation-delay: 2.9s; }
.process-step[data-step="3"] { animation-delay: 3.2s; }
.process-step[data-step="4"] { animation-delay: 3.5s; }
.process-step[data-step="5"] { animation-delay: 3.8s; }

@keyframes stepAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.process-step:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 1rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(360deg);
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.step-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 1rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-tech {
    font-size: 0.75rem;
    color: var(--primary-gold);
    text-align: center;
    padding: 0.4rem 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.process-arrow {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: arrowAppear 0.6s ease-out forwards;
}

.process-arrow[data-arrow="1"] { animation-delay: 2.75s; }
.process-arrow[data-arrow="2"] { animation-delay: 3.05s; }
.process-arrow[data-arrow="3"] { animation-delay: 3.35s; }
.process-arrow[data-arrow="4"] { animation-delay: 3.65s; }

@keyframes arrowAppear {
    to { opacity: 1; }
}

.process-arrow svg {
    width: 100%;
    height: 20px;
}

.arrow-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 1.5s ease-out forwards infinite;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.arrow-head {
    opacity: 0;
    animation: fadeInArrowHead 0.3s ease-out 0.5s forwards infinite;
}

@keyframes fadeInArrowHead {
    to { opacity: 1; }
}

/* Core Features Section - New Interactive Layout */
.features-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 4rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 4.2s both;
}

.features-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.7;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 4.4s both;
}

.features-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: featureAppear 0.8s ease-out 4.6s forwards;
}

@keyframes featureAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Navigation */
.features-nav {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-nav-item {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-nav-item:hover::before {
    opacity: 1;
}

.feature-nav-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.feature-nav-item.active {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-nav-icon {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.feature-nav-item.active .feature-nav-icon {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.feature-nav-item:hover .feature-nav-icon {
    color: var(--primary-gold);
}

.feature-nav-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.feature-nav-item.active .feature-nav-label {
    color: var(--primary-gold);
}

/* Features Content Area */
.features-content-area {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.5);
}

.feature-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    filter: blur(2px);
}

.feature-content {
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: none;
    transform: translateX(20px);
    transition: all 0.4s ease;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    z-index: 2;
    box-sizing: border-box;
}

.feature-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    display: block;
}

/* Custom scrollbar for feature content */
.feature-content::-webkit-scrollbar {
    width: 8px;
}

.feature-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.feature-content::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

.feature-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.feature-content-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.feature-content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.feature-content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 3;
}

.feature-content-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 3;
}

.feature-content-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 3;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.detail-item svg {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.detail-item span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Yield Earning Section */
.yield-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 4rem;
}

.yield-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.yield-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.7;
    font-weight: 400;
}

/* Yield Calculator */
.yield-calculator {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.yield-calculator::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.calculator-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.calculator-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.calculator-header h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

.calculator-body {
    position: relative;
    z-index: 2;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calculator-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calculator-input-group label {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

.calculator-input-group input,
.calculator-input-group select {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calculator-input-group input:focus,
.calculator-input-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.calculator-input-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.calculator-input-group select {
    cursor: pointer;
}

/* Fix select dropdown options visibility */
.calculator-input-group select option {
    background: #1a1a1e;
    color: var(--text-primary);
    padding: 0.75rem;
}

.calculator-input-group select option:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* Token select with icon */
.token-select {
    padding-left: 3rem;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"%3E%3Cg fill="none"%3E%3Ccircle cx="16" cy="16" r="16" fill="%2326A17B"/%3E%3Cpath fill="%23FFF" d="M17.922 17.383v-.002c-.11.008-.677.042-1.942.042-1.01 0-1.721-.03-1.971-.042v.003c-3.888-.171-6.79-.848-6.79-1.658 0-.809 2.902-1.486 6.79-1.66v2.644c.254.018.982.061 1.988.061 1.207 0 1.812-.05 1.925-.06v-2.643c3.88.173 6.775.85 6.775 1.658 0 .81-2.895 1.485-6.775 1.657m0-3.59v-2.366h5.414V7.819H8.595v3.608h5.414v2.365c-4.4.202-7.709 1.074-7.709 2.118 0 1.044 3.309 1.915 7.709 2.118v7.582h3.913v-7.584c4.393-.202 7.694-1.073 7.694-2.116 0-1.043-3.301-1.914-7.694-2.117"/%3E%3C/g%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: 0.75rem center;
    background-size: 28px 28px;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.result-value-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.result-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.result-value {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.result-value.heir-reward {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-total {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.result-total .result-icon {
    width: 40px;
    height: 40px;
}

.result-value-large {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier New', monospace;
}

/* Yield Table */
.yield-table-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.table-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.75rem;
}

.table-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

/* Custom scrollbar for table */
.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.yield-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.yield-table thead {
    background: rgba(212, 175, 55, 0.1);
}

.yield-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.yield-table tbody tr {
    transition: all 0.3s ease;
}

.yield-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.table-row.featured-row {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--primary-gold);
}

.table-row.featured-row:hover {
    background: rgba(212, 175, 55, 0.08);
}

.yield-table td {
    padding: 1.25rem 1.5rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.period-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.period-cell svg {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.popular-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
}

.apy-cell {
    font-weight: 700;
    font-size: 1.1rem;
}

.apy-cell.heirloom {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.advantage-cell {
    text-align: center;
}

.advantage-badge {
    display: inline-block;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
}

.bonus-cell {
    text-align: center;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.yield-info-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.yield-info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.yield-info-content h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.yield-info-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Yield Section Responsive */
@media (max-width: 768px) {
    .yield-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .yield-title {
        font-size: 1.8rem;
    }
    
    .yield-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .yield-calculator {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .result-total {
        grid-column: 1;
    }
    
    .result-value {
        font-size: 1.3rem;
    }
    
    .result-value-large {
        font-size: 2.2rem;
    }
    
    .yield-table-container {
        padding: 0 1rem;
    }
    
    .table-title {
        font-size: 1.5rem;
    }
    
    .table-subtitle {
        font-size: 0.85rem;
    }
    
    .yield-table {
        font-size: 0.85rem;
    }
    
    .yield-table th,
    .yield-table td {
        padding: 1rem;
    }
    
    .yield-info-box {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        align-items: center;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .yield-title {
        font-size: 1.5rem;
    }
    
    .yield-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .yield-calculator {
        padding: 1.5rem 1rem;
    }
    
    .calculator-header {
        flex-direction: column;
        text-align: center;
    }
    
    .calculator-header h4 {
        font-size: 1.3rem;
    }
    
    .result-value-large {
        font-size: 1.8rem;
    }
    
    .result-icon {
        width: 24px;
        height: 24px;
    }
    
    .result-total .result-icon {
        width: 28px;
        height: 28px;
    }
    
    .result-value {
        font-size: 1.1rem;
    }
    
    .table-title {
        font-size: 1.3rem;
    }
    
    .table-subtitle {
        font-size: 0.8rem;
    }
    
    .yield-table {
        font-size: 0.8rem;
    }
    
    .yield-table th,
    .yield-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .period-cell svg {
        width: 16px;
        height: 16px;
    }
    
    .apy-cell,
    .apy-cell.heirloom {
        font-size: 1rem;
    }
    
    .yield-info-content h4 {
        font-size: 1.1rem;
    }
    
    .yield-info-content p {
        font-size: 0.9rem;
    }
}

/* Custody Management Section */
.management-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 4rem;
    overflow-x: hidden;
}

.management-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.management-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.7;
    font-weight: 400;
}

.management-container {
    max-width: 1200px;
    margin: 0 auto;
}

.management-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.management-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.management-tab:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.management-tab.active {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.management-tab svg {
    transition: transform 0.3s ease;
}

.management-tab.active svg {
    transform: scale(1.1);
}

.management-content-area {
    position: relative;
    min-height: 400px;
}

/* Connect Wallet Prompt */
.connect-prompt {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.connect-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.connect-icon svg {
    width: 48px;
    height: 48px;
}

.connect-prompt h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.connect-prompt p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.btn-connect-management {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-connect-management:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Management Connected State */
.management-connected {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.connected-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.connected-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.connected-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.connected-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.connected-address {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-family: 'Courier New', monospace;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
}

.setup-prompt h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.setup-prompt p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.setup-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setup-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.setup-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.setup-btn svg {
    color: var(--primary-gold);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.setup-btn-content {
    flex: 1;
}

.setup-btn-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.setup-btn-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.demo-content {
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: all 0.4s ease;
}

.demo-content.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.demo-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.demo-header h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-indicator.active {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.status-indicator.pending {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #FFC107;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.info-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Heartbeat Monitor */
.demo-visual {
    margin-bottom: 2rem;
}

.heartbeat-monitor {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.monitor-line {
    width: 100%;
    height: 100%;
}

.monitor-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: drawECG 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

@keyframes drawECG {
    0% {
        stroke-dashoffset: 1200;
        opacity: 0.5;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.5;
    }
}

.heartbeat-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-box .stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Beneficiary List */
.beneficiary-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.beneficiary-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.beneficiary-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.beneficiary-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.beneficiary-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.beneficiary-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beneficiary-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.beneficiary-wallet {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

.beneficiary-allocation {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 150px;
}

.allocation-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.allocation-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.allocation-percent {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-gold);
    min-width: 45px;
    text-align: right;
}

/* Owner Card */
.owner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.owner-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.owner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.owner-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.owner-address {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-family: 'Courier New', monospace;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--primary-gold) 0%,
        var(--primary-gold) 40%,
        rgba(212, 175, 55, 0.3) 100%
    );
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-dot {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.timeline-item.active .timeline-dot {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    animation: pulse-timeline 2s ease-in-out infinite;
}

@keyframes pulse-timeline {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 1);
    }
}

.timeline-item.pending .timeline-dot {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Demo Action Button */
.demo-action-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.demo-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links a {
        display: none;
    }
    
    .nav-links.mobile-active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 100;
        padding: 2rem;
    }
    
    .nav-links.mobile-active a {
        display: block;
        font-size: 1.5rem;
        text-align: center;
    }
    
    .nav-links.mobile-active .btn-connect {
        margin-top: 2rem;
    }

    .hero-logo {
        height: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .heartbeat-line {
        width: 90%;
        height: 80px;
    }

    .modal-overlay {
        padding: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        max-height: 90vh;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .asset-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .asset-balance {
        text-align: left;
        width: 100%;
    }

    .tokens-content {
        padding: 3rem 1rem;
        width: 100%;
    }

    .tokens-grid {
        gap: 1.5rem;
    }

    .token-card {
        min-width: 120px;
        padding: 1.5rem 1rem;
    }

    .token-card img {
        width: 60px;
        height: 60px;
    }

    .coming-soon-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .coming-soon-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .tokens-grid-small {
        gap: 1.5rem;
    }

    .token-card-small {
        min-width: 100px;
        padding: 1.25rem 0.75rem;
    }

    .token-card-small img {
        width: 50px;
        height: 50px;
    }

    .technology-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .technology-title {
        font-size: 1.8rem;
    }

    .technology-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    /* 3D Carousel Mobile */
    .tech-carousel-container {
        padding: 2rem 60px;
    }
    
    .tech-carousel {
        height: 380px;
    }
    
    .tech-card-3d {
        width: 300px;
    }
    
    .tech-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
    }
    
    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-nav-prev {
        left: 10px;
    }
    
    .carousel-nav-next {
        right: 10px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tech-card {
        padding: 2rem 1.5rem;
    }

    .tech-icon {
        width: 80px;
        height: 80px;
    }

    .tech-icon svg {
        width: 42px;
        height: 42px;
    }

    .tech-name {
        font-size: 1.1rem;
    }

    .tech-description {
        font-size: 0.9rem;
    }

    .process-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .process-title {
        font-size: 1.8rem;
    }

    .process-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .process-flow {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 2rem 1rem;
    }

    .process-step {
        width: 180px;
        min-height: 300px;
        padding: 1.5rem 1rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon svg {
        width: 35px;
        height: 35px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.8rem;
    }

    .process-arrow {
        width: 50px;
    }

    .features-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .features-title {
        font-size: 1.8rem;
    }

    .features-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .features-container {
        flex-direction: column;
        gap: 2rem;
    }

    .features-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-nav-item {
        width: 110px;
        padding: 1rem;
    }

    .feature-nav-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-content {
        padding: 2rem 1.5rem;
    }

    .feature-content-header {
        flex-direction: column;
        text-align: center;
    }

    .feature-content-icon {
        width: 70px;
        height: 70px;
    }

    .feature-content-icon svg {
        width: 42px;
        height: 42px;
    }

    .feature-content-title {
        font-size: 1.5rem;
    }

    .feature-content-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }

    .logo-icon {
        height: 40px;
    }

    .hero-logo {
        height: 100px;
    }

    .heartbeat-line {
        width: 95%;
        height: 60px;
    }

    .tokens-grid {
        gap: 1rem;
    }

    .token-card {
        min-width: 100px;
        padding: 1.25rem 0.75rem;
    }

    .token-card img {
        width: 50px;
        height: 50px;
    }

    .token-name {
        font-size: 0.95rem;
    }

    .token-symbol {
        font-size: 0.9rem;
    }

    .coming-soon-section {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }

    .coming-soon-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .tokens-grid-small {
        gap: 1rem;
    }

    .token-card-small {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }

    .token-card-small img {
        width: 40px;
        height: 40px;
    }

    .token-card-small .token-name {
        font-size: 0.85rem;
    }

    .token-card-small .token-symbol {
        font-size: 0.8rem;
    }

    .technology-title {
        font-size: 1.5rem;
    }

    .technology-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    /* 3D Carousel Small Mobile */
    .tech-carousel-container {
        padding: 2rem 50px;
    }
    
    .tech-carousel {
        height: 340px;
    }
    
    .tech-card-3d {
        width: 260px;
    }
    
    .tech-card-inner {
        padding: 1.5rem 1.25rem;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-nav-prev {
        left: 5px;
    }
    
    .carousel-nav-next {
        right: 5px;
    }

    .tech-card {
        padding: 1.5rem 1rem;
    }

    .tech-icon {
        width: 70px;
        height: 70px;
    }

    .tech-icon svg {
        width: 38px;
        height: 38px;
    }

    .tech-name {
        font-size: 1rem;
    }

    .tech-description {
        font-size: 0.85rem;
    }

    .process-title {
        font-size: 1.5rem;
    }

    .process-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .process-step {
        width: 160px;
        min-height: 280px;
        padding: 1.25rem 0.75rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -12px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin: 0.75rem auto 1rem;
    }

    .step-icon svg {
        width: 30px;
        height: 30px;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-description {
        font-size: 0.75rem;
    }

    .step-tech {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .process-arrow {
        width: 40px;
    }

    .demo-title {
        font-size: 1.5rem;
    }

    .demo-subtitle {
        font-size: 0.9rem;
    }

    .demo-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .demo-tab svg {
        width: 18px;
        height: 18px;
    }

    .demo-panel {
        padding: 1.5rem 1rem;
    }

    .demo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .demo-header h4 {
        font-size: 1.2rem;
    }

    .heartbeat-monitor {
        height: 80px;
        padding: 1rem;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-box .stat-value {
        font-size: 1.1rem;
    }

    .beneficiary-avatar {
        width: 40px;
        height: 40px;
    }

    .beneficiary-name {
        font-size: 0.95rem;
    }

    .beneficiary-wallet {
        font-size: 0.8rem;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        left: 9px;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-date {
        font-size: 0.8rem;
    }

    .timeline-description {
        font-size: 0.85rem;
    }

    .demo-action-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .owner-avatar {
        width: 60px;
        height: 60px;
    }

    .owner-name {
        font-size: 1.1rem;
    }

    .owner-address {
        font-size: 0.8rem;
        word-break: break-all;
    }

    .management-title {
        font-size: 1.5rem;
    }

    .management-subtitle {
        font-size: 0.9rem;
    }

    .management-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .connected-avatar {
        width: 60px;
        height: 60px;
    }

    .connected-address {
        font-size: 0.85rem;
        word-break: break-all;
    }

    .setup-prompt h4 {
        font-size: 1.3rem;
    }

    .setup-prompt p {
        font-size: 0.9rem;
    }

    .setup-btn {
        padding: 1.25rem 1rem;
    }

    .setup-btn svg {
        width: 20px;
        height: 20px;
    }

    .setup-btn-title {
        font-size: 1rem;
    }

    .setup-btn-desc {
        font-size: 0.85rem;
    }

    .features-title {
        font-size: 1.5rem;
    }

    .features-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .feature-nav-item {
        width: 90px;
        padding: 0.75rem;
    }

    .feature-nav-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-nav-label {
        font-size: 0.8rem;
    }

    .feature-content {
        padding: 1.5rem 1rem;
    }

    .feature-content-icon {
        width: 60px;
        height: 60px;
    }

    .feature-content-icon svg {
        width: 36px;
        height: 36px;
    }

    .feature-content-title {
        font-size: 1.3rem;
    }

    .feature-content-description {
        font-size: 0.9rem;
    }

    .detail-item {
        padding: 0.6rem 0.75rem;
    }

    .detail-item svg {
        width: 18px;
        height: 18px;
    }

    .detail-item span {
        font-size: 0.85rem;
    }

    .demo-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .demo-title {
        font-size: 1.8rem;
    }

    .demo-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .demo-tab {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    .demo-tab svg {
        width: 20px;
        height: 20px;
    }

    .demo-panel {
        padding: 2rem 1.5rem;
    }

    .demo-header h4 {
        font-size: 1.3rem;
    }

    .heartbeat-monitor {
        height: 100px;
        padding: 1.5rem;
    }

    .heartbeat-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .beneficiary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .beneficiary-allocation {
        width: 100%;
    }

    .timeline-container {
        padding-left: 1.5rem;
    }

    .owner-card {
        flex-direction: column;
        text-align: center;
    }

    .owner-avatar {
        width: 70px;
        height: 70px;
    }

    .management-section {
        margin-top: 3rem;
        padding-top: 2rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .management-title {
        font-size: 1.8rem;
    }

    .management-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .wallet-connect-prompt {
        padding: 2.5rem 1.5rem;
        margin: 0 0.5rem;
    }

    .management-tab {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    .connected-wallet-info {
        padding: 1.25rem 1rem;
        margin: 0 0.5rem 1rem;
        flex-wrap: wrap;
    }

    .connected-header {
        flex-direction: column;
        text-align: center;
    }

    .connected-avatar {
        width: 70px;
        height: 70px;
    }
    
    .wallet-address {
        font-size: 0.8rem;
        word-break: break-all;
    }
    
    .btn-disconnect {
        width: 100%;
        margin-top: 1rem;
    }

    .setup-actions {
        gap: 1.25rem;
    }

    .setup-btn {
        padding: 1.5rem 1.5rem;
        gap: 1.25rem;
    }

    .setup-btn-title {
        font-size: 1.1rem;
    }
}

/* Wallet Connect Prompt */
.wallet-connect-prompt {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}

.wallet-connect-prompt h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.wallet-connect-prompt p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.btn-connect-wallet-main {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-connect-wallet-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Connected Wallet Info */
.connected-wallet-info {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.btn-disconnect {
    padding: 0.75rem 1.5rem;
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid rgba(244, 67, 54, 0.3);
    border-radius: 10px;
    color: #f44336;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-left: auto;
}

.btn-disconnect:hover {
    background: rgba(244, 67, 54, 0.2);
    border-color: #f44336;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.3);
}

.btn-disconnect svg {
    transition: transform 0.3s ease;
}

.btn-disconnect:hover svg {
    transform: translateX(3px);
}

.wallet-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.wallet-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wallet-details {
    flex: 1;
}

.wallet-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.wallet-address {
    font-size: 0.95rem;
    color: var(--primary-gold);
    font-family: 'Courier New', monospace;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

/* Management Cards Container */
.management-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

@media (max-width: 900px) {
    .management-cards-container {
        grid-template-columns: 1fr;
    }
}

/* Individual Management Card */
.management-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.management-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.management-card:hover::before {
    opacity: 1;
}

.management-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.management-card:hover .card-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.card-title-group {
    flex: 1;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
}

/* Card Body */
.card-body {
    position: relative;
    z-index: 2;
}

/* Not Setup State */
.card-not-setup {
    text-align: center;
    padding: 1.5rem 0;
}

.card-prompt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-setup {
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-setup:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-setup svg {
    transition: transform 0.3s ease;
}

.btn-setup:hover svg {
    transform: rotate(90deg);
}

/* Setup State (after configuration) */
.card-setup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.info-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    flex-shrink: 0;
}

.info-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    word-break: break-word;
    text-align: right;
}

.info-value.status-active {
    color: #4CAF50;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.btn-modify {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modify:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-check-in {
    flex: 1;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-check-in:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-check-in svg {
    transition: transform 0.3s ease;
}

.btn-check-in:hover svg {
    transform: scale(1.2);
}

/* Check-in Dates Display */
.checkin-dates {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

.checkin-date-item {
    flex: 1;
    text-align: center;
}

.date-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.date-value {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.date-value.deadline {
    color: #FFC107;
    animation: deadlineBlink 2s ease-in-out infinite;
}

@keyframes deadlineBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.checkin-date-divider {
    color: var(--primary-gold);
    opacity: 0.5;
}

/* Check-in Visualization */
.checkin-visual {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkin-calendar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.checkin-icon {
    color: var(--primary-gold);
    animation: checkinPulse 2s ease-in-out infinite;
}

@keyframes checkinPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.checkin-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.checkin-status .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-gold);
    animation: statusDotPulse 2s ease-in-out infinite;
}

@keyframes statusDotPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(212, 175, 55, 1);
    }
}

/* Check-in History */
.checkin-history {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.history-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.history-header svg {
    color: var(--primary-gold);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 150px;
    overflow-y: auto;
}

.history-list::-webkit-scrollbar {
    width: 6px;
}

.history-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.history-list::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

.history-empty {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 1rem;
    opacity: 0.6;
}

.history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(3px);
}

.history-item-date {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.history-item-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #4CAF50;
}

.history-item-badge svg {
    width: 14px;
    height: 14px;
}

/* Allocation Summary */
.allocation-summary {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.summary-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.summary-value.complete {
    color: #4CAF50;
}

.summary-value.incomplete {
    color: #FFC107;
}

.summary-value.exceeded {
    color: #f44336;
}

.summary-status {
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.summary-status.complete {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.summary-status.incomplete {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #FFC107;
}

.summary-status.exceeded {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* Beneficiary List in Card */
.beneficiary-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.beneficiary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.beneficiary-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.beneficiary-item-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    overflow: hidden;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.beneficiary-item-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beneficiary-item-info {
    flex: 1;
    min-width: 0;
}

.beneficiary-item-name {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.beneficiary-item-address {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.beneficiary-item-allocation {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 100px;
}

.beneficiary-item-percent {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.beneficiary-item-bar {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.beneficiary-item-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Responsive Design for Cards */
@media (max-width: 768px) {
    .management-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .management-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .card-header {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .btn-modify,
    .btn-check-in {
        width: 100%;
    }
    
    .checkin-dates {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .checkin-date-divider {
        transform: rotate(90deg);
    }
    
    .date-value {
        font-size: 1rem;
    }
    
    .checkin-visual {
        padding: 1.5rem 1rem;
    }
    
    .checkin-icon svg {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .management-cards-container {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .management-card {
        padding: 1.25rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .info-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .checkin-dates {
        padding: 1rem;
    }
    
    .date-label {
        font-size: 0.75rem;
    }
    
    .date-value {
        font-size: 0.9rem;
    }
    
    .checkin-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .checkin-status {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .history-header {
        font-size: 0.85rem;
    }
    
    .history-item-date {
        font-size: 0.8rem;
    }
    
    .history-item-badge {
        font-size: 0.7rem;
    }
    
    .wallet-connect-prompt {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
    }
    
    .wallet-connect-prompt h4 {
        font-size: 1.3rem;
    }
    
    .wallet-connect-prompt p {
        font-size: 0.85rem;
    }
    
    .btn-connect-wallet-main {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .beneficiary-item-address,
    .wallet-address {
        font-size: 0.75rem;
        word-break: break-all;
        max-width: 100%;
    }
    
    .beneficiary-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .beneficiary-item-allocation {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.toast {
    min-width: 320px;
    max-width: 420px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 15, 30, 0.98) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    pointer-events: auto;
    animation: toastSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-light) 100%);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(150%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.toast-exit {
    animation: toastSlideOut 0.3s ease-out forwards;
}

@keyframes toastSlideOut {
    to {
        transform: translateX(150%);
        opacity: 0;
    }
}

.toast-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    animation: toastIconPulse 0.6s ease-out;
}

@keyframes toastIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.toast-success .toast-icon {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
    color: #4CAF50;
}

.toast-error .toast-icon {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
}

.toast-warning .toast-icon {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #FFC107;
    color: #FFC107;
}

.toast-info .toast-icon {
    background: rgba(33, 150, 243, 0.2);
    border: 2px solid #2196F3;
    color: #2196F3;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.toast-close {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    line-height: 1;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: rotate(90deg);
}

/* Toast Progress Bar */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.toast-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    animation: toastProgress 5s linear forwards;
}

@keyframes toastProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .toast {
        padding: 1rem;
    }
    
    .toast-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .toast-title {
        font-size: 0.95rem;
    }
    
    .toast-message {
        font-size: 0.85rem;
    }
}

/* Newsletter Subscription Section */
.newsletter-section {
    margin-top: 6rem;
    padding: 0 2rem;
}

.newsletter-card {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.newsletter-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.4;
}

.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 15, 0.85) 0%, 
        rgba(26, 26, 30, 0.75) 50%,
        rgba(10, 10, 15, 0.85) 100%);
    z-index: 1;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    z-index: 3;
}

.newsletter-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.newsletter-logo-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.newsletter-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    animation: newsletterLogoFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes newsletterLogoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.newsletter-logo-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: newsletterGlowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes newsletterGlowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
}

.newsletter-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 10;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 10;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.newsletter-input-group > svg {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-right: 1rem;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0.75rem 0;
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.newsletter-btn {
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.newsletter-btn svg {
    transition: transform 0.3s ease;
}

.newsletter-btn:hover svg {
    transform: translateX(3px);
}

.newsletter-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.newsletter-feature svg {
    color: var(--primary-gold);
    flex-shrink: 0;
}

/* Circular Footer */
.circular-footer {
    margin-top: 6rem;
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.footer-orbit-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Logo */
.footer-logo-center {
    position: relative;
    width: 180px;
    height: 180px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
    animation: footerLogoFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes footerLogoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.footer-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Orbiting Crypto Logos */
.crypto-orbit {
    position: absolute;
    inset: 0;
    animation: rotateOrbit 60s linear infinite;
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.orbit-item {
    position: absolute;
    width: 70px;
    height: 70px;
    left: 50%;
    top: 50%;
    margin-left: -35px;
    margin-top: -35px;
    transform-origin: center center;
    cursor: pointer;
}

/* Position each item in a circle */
.orbit-item:nth-child(1) { 
    transform: rotate(0deg) translateX(250px) rotate(0deg); 
}
.orbit-item:nth-child(2) { 
    transform: rotate(30deg) translateX(250px) rotate(-30deg); 
}
.orbit-item:nth-child(3) { 
    transform: rotate(60deg) translateX(250px) rotate(-60deg); 
}
.orbit-item:nth-child(4) { 
    transform: rotate(90deg) translateX(250px) rotate(-90deg); 
}
.orbit-item:nth-child(5) { 
    transform: rotate(120deg) translateX(250px) rotate(-120deg); 
}
.orbit-item:nth-child(6) { 
    transform: rotate(150deg) translateX(250px) rotate(-150deg); 
}
.orbit-item:nth-child(7) { 
    transform: rotate(180deg) translateX(250px) rotate(-180deg); 
}
.orbit-item:nth-child(8) { 
    transform: rotate(210deg) translateX(250px) rotate(-210deg); 
}
.orbit-item:nth-child(9) { 
    transform: rotate(240deg) translateX(250px) rotate(-240deg); 
}
.orbit-item:nth-child(10) { 
    transform: rotate(270deg) translateX(250px) rotate(-270deg); 
}
.orbit-item:nth-child(11) { 
    transform: rotate(300deg) translateX(250px) rotate(-300deg); 
}
.orbit-item:nth-child(12) { 
    transform: rotate(330deg) translateX(250px) rotate(-330deg); 
}

.orbit-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 20px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.orbit-item:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 8px 30px rgba(212, 175, 55, 0.8));
}

@keyframes rippleEffect {
    from {
        opacity: 1;
        transform: scale(0);
    }
    to {
        opacity: 0;
        transform: scale(2);
    }
}

/* Footer Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-5px) scale(1.1);
}

.social-link svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Footer Copyright */
.footer-copyright {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0.3rem 0;
    opacity: 0.7;
}

.footer-tagline {
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    opacity: 1 !important;
}

/* Newsletter Responsive */
@media (max-width: 768px) {
    .newsletter-section {
        margin-top: 4rem;
        padding: 0 1rem;
    }
    
    .newsletter-card {
        padding: 2.5rem 2rem;
    }
    
    .newsletter-logo-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .newsletter-input-group > svg {
        margin-right: 0;
    }
    
    .newsletter-input {
        width: 100%;
        text-align: center;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .newsletter-card {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-logo-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .newsletter-title {
        font-size: 1.3rem;
    }
    
    .newsletter-subtitle {
        font-size: 0.85rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .circular-footer {
        padding: 3rem 2rem 2rem;
    }
    
    .footer-orbit-container {
        max-width: 400px;
        height: 400px;
    }
    
    .footer-logo-center {
        width: 120px;
        height: 120px;
    }
    
    .orbit-item {
        width: 50px;
        height: 50px;
        margin-left: -25px;
        margin-top: -25px;
    }
    
    .orbit-item:nth-child(1) { transform: rotate(0deg) translateX(170px) rotate(0deg); }
    .orbit-item:nth-child(2) { transform: rotate(30deg) translateX(170px) rotate(-30deg); }
    .orbit-item:nth-child(3) { transform: rotate(60deg) translateX(170px) rotate(-60deg); }
    .orbit-item:nth-child(4) { transform: rotate(90deg) translateX(170px) rotate(-90deg); }
    .orbit-item:nth-child(5) { transform: rotate(120deg) translateX(170px) rotate(-120deg); }
    .orbit-item:nth-child(6) { transform: rotate(150deg) translateX(170px) rotate(-150deg); }
    .orbit-item:nth-child(7) { transform: rotate(180deg) translateX(170px) rotate(-180deg); }
    .orbit-item:nth-child(8) { transform: rotate(210deg) translateX(170px) rotate(-210deg); }
    .orbit-item:nth-child(9) { transform: rotate(240deg) translateX(170px) rotate(-240deg); }
    .orbit-item:nth-child(10) { transform: rotate(270deg) translateX(170px) rotate(-270deg); }
    .orbit-item:nth-child(11) { transform: rotate(300deg) translateX(170px) rotate(-300deg); }
    .orbit-item:nth-child(12) { transform: rotate(330deg) translateX(170px) rotate(-330deg); }
    
    .footer-social {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .circular-footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-orbit-container {
        max-width: 300px;
        height: 300px;
    }
    
    .footer-logo-center {
        width: 90px;
        height: 90px;
    }
    
    .orbit-item {
        width: 40px;
        height: 40px;
        margin-left: -20px;
        margin-top: -20px;
    }
    
    .orbit-item:nth-child(1) { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    .orbit-item:nth-child(2) { transform: rotate(30deg) translateX(120px) rotate(-30deg); }
    .orbit-item:nth-child(3) { transform: rotate(60deg) translateX(120px) rotate(-60deg); }
    .orbit-item:nth-child(4) { transform: rotate(90deg) translateX(120px) rotate(-90deg); }
    .orbit-item:nth-child(5) { transform: rotate(120deg) translateX(120px) rotate(-120deg); }
    .orbit-item:nth-child(6) { transform: rotate(150deg) translateX(120px) rotate(-150deg); }
    .orbit-item:nth-child(7) { transform: rotate(180deg) translateX(120px) rotate(-180deg); }
    .orbit-item:nth-child(8) { transform: rotate(210deg) translateX(120px) rotate(-210deg); }
    .orbit-item:nth-child(9) { transform: rotate(240deg) translateX(120px) rotate(-240deg); }
    .orbit-item:nth-child(10) { transform: rotate(270deg) translateX(120px) rotate(-270deg); }
    .orbit-item:nth-child(11) { transform: rotate(300deg) translateX(120px) rotate(-300deg); }
    .orbit-item:nth-child(12) { transform: rotate(330deg) translateX(120px) rotate(-330deg); }
    
    .footer-social {
        gap: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-copyright p {
        font-size: 0.85rem;
    }
}

