/* MAIN BLUE THEME */
:root {
    --primary-blue: #0A0A1A;
    --blue-accent: #1a1a3c;
    --blue-glow: #0ea5e9;
    --blue-light: #d0e8ff;
    --text-light: #e8f1ff;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, rgba(10,10,26,0.9), rgba(10,10,26,0.95)),
                url('https://thewinconnect.world/assets/images/3d-cryptocurrency-rendering-design.jpg') center/cover no-repeat;
    height: 100vh;
    color: var(--text-light);
}

/* Text Colors */
h1, h2, h5, p, .text-muted, .lead {
    color: var(--text-light);
}

/* Buttons */
.btn-success {
    background: var(--blue-glow) !important;
    border: none;
    color: white;
}
.btn-success:hover {
    background: #0284c7 !important;
}

/* How Box */
.how-box {
    background: var(--blue-accent);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}
.how-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 18px rgba(14,165,233,0.4);
}

/* Prize Section */
.prize-section {
    background: linear-gradient(140deg, #0A0A1A, #12122a);
}
.prize-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(14,165,233,0.2);
    color: var(--blue-light);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}
.prize-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 18px rgba(14,165,233,0.35);
}

/* Connect Section */
#connect {
    background: #0A0A1A;
    color: var(--text-light);
}

/* Footer */
footer {
    background: #000814;
    color: var(--text-light);
    border-top: 1px solid rgba(255,255,255,0.1);
}
