* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    color: #e0e0e0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 20px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 215, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

h1 {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8em;
    margin: 0;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

#connect-btn {
    font-size: 1em;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 10px;
    white-space: nowrap;
}

/* Buttons */
button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

button:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: bold;
}

.btn-claim {
    background: linear-gradient(135deg, #10b981, #059669);
    width: 100%;
    margin-top: 15px;
    font-size: 1.1em;
    padding: 15px;
}

.btn-claim:hover {
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

/* Section Cards */
.section-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 40px rgba(255, 215, 0, 0.1);
    margin-bottom: 25px;
}

.section-card h2 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 1.6em;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 12px;
}

/* Text Colors */
.info-text {
    color: #c0c0c0;
    margin: 10px 0;
}

.stat-label {
    color: #999;
    font-size: 0.9em;
}

.stat-value {
    color: #FFD700;
    font-size: 1.3em;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-item {
    background: rgba(255, 215, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item span {
    display: block;
}

/* Investment Items */
.investment-item {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.investment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #FFD700;
}

.investment-amount {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFA500;
}

.progress-bar {
    background: rgba(0,0,0,0.5);
    border-radius: 20px;
    overflow: hidden;
    height: 30px;
    margin: 15px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.progress-fill {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    transition: width 0.5s;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.investment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.investment-stat {
    text-align: center;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.investment-stat span:first-child {
    display: block;
    color: #999;
    font-size: 0.85em;
    margin-bottom: 5px;
}

.investment-stat span:last-child {
    display: block;
    color: #FFD700;
    font-weight: bold;
}

.no-data {
    text-align: center;
    color: #666;
    padding: 40px;
    font-size: 1.1em;
}

/* Referral Link Section */
.referral-link-section {
    margin-top: 20px;
}

.referral-link-section p {
    color: #c0c0c0;
    margin: 10px 0;
}

.link-box {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.link-box input {
    flex: 1;
    padding: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 0.9em;
    background: rgba(0,0,0,0.3);
    color: #FFD700;
}

.link-box button {
    padding: 12px 20px;
    margin-left: 10px;
}

/* Platform Stats */
.platform-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.platform-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.platform-label {
    display: block;
    color: #999;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.platform-value {
    display: block;
    color: #FFD700;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Status Messages */
.status-success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10b981;
    color: #10b981;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
}

.status-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
}

.status-info {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
}

/* ============================================
   LANDING PAGE STYLES
   ============================================ */


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5em;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.section-header p {
    font-size: 1.2em;
    color: #c0c0c0;
}

/* Plan Section */
.plan-section {
    margin-bottom: 80px;
}

.plan-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 50px rgba(255, 215, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    margin-bottom: 10px;
}

.plan-header p {
    color: #c0c0c0;
    font-size: 1.1em;
}

.plan-details {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.plan-label {
    font-weight: 600;
    color: #c0c0c0;
}

.plan-value {
    font-weight: bold;
    color: #FFD700;
    font-size: 1.1em;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.plan-examples {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 15px;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.plan-examples h4 {
    margin: 0 0 15px 0;
    font-size: 1.3em;
    text-align: center;
    font-weight: bold;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.example-item {
    text-align: center;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.example-item strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.example-item .highlight {
    color: #000;
    font-size: 1.4em;
    font-weight: bold;
    display: block;
    margin: 5px 0;
}

.example-item small {
    display: block;
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 5px;
}

/* How It Works Section */
.how-it-works-section {
    margin-bottom: 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 30px rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 50px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.step-card h3 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.step-card p {
    color: #c0c0c0;
    line-height: 1.6;
    font-size: 1.05em;
}

/* Features Section */
.features-section {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 30px rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.7), 0 0 50px rgba(255, 215, 0, 0.25);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.feature-card h3 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-card p {
    color: #c0c0c0;
    line-height: 1.6;
    font-size: 1.05em;
}

/* Stats Section */
.stats-section {
    margin-bottom: 80px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 30px rgba(255, 215, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7), 0 0 50px rgba(255, 215, 0, 0.25);
}

.stat-icon {
    font-size: 3.5em;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
    flex-shrink: 0;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    text-align: right;
}

.stat-label {
    color: #c0c0c0;
    font-size: 1em;
    font-weight: 600;
    text-align: left;
    flex: 1;
    padding-left: 25px;
}

/* Info Note */
.info-note {
    font-size: 0.95em;
    line-height: 1.6;
    color: #c0c0c0;
}

/* Input Fields */
input[type="text"],
input[type="number"] {
    background: rgba(0,0,0,0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 12px;
    border-radius: 8px;
    font-size: 1em;
}

input[type="text"]:focus,
input[type="number"]:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

input::placeholder {
    color: #666;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-top: 3px solid rgba(255, 215, 0, 0.4);
    margin-top: 50px;
    padding: 40px 20px 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 40px rgba(255, 215, 0, 0.15);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.footer-section p {
    color: #c0c0c0;
    line-height: 1.6;
    font-size: 0.95em;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.social-icon {
    font-size: 1.5em;
}

.audit-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid #10b981;
    border-radius: 25px;
    color: #10b981;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.audit-icon {
    font-size: 1.5em;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 8px 0;
    font-size: 0.9em;
}

.footer-disclaimer {
    font-size: 0.85em !important;
    color: #666 !important;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .section-header h2 {
        font-size: 2em;
    }
    
    .plan-card {
        padding: 20px;
    }
    
    .plan-header h3 {
        font-size: 1.5em;
    }
    
    .plan-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }
    
    .plan-label {
        font-size: 0.95em;
    }
    
    .plan-value {
        font-size: 1.2em;
        width: 100%;
        text-align: left;
    }
    
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 2.8em;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 0.95em;
        padding-left: 0;
        text-align: center;
        order: 2;
        margin-bottom: 8px;
    }
    
    .stat-number {
        font-size: 1.8em;
        text-align: center;
        order: 3;
    }
    
    .button-group {
        grid-template-columns: 1fr;
    }
    
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .header-left {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    #connect-btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Loading State */
#loading-state {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: #FFD700;
    font-size: 1.3em;
    font-weight: 600;
}

#loading-state p {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}
