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

:root {
    --bg: #0A0F1C;
    --primary: #151C2F;
    --accent: #00D8FF;
    --text: #E2E8F0;
    --text-light: #94A3B8;
    --hover-accent: #0891B2;
    --shadow: rgba(0, 216, 255, 0.1);
    --card-bg: #1A2338;
}

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

body {
    background: linear-gradient(135deg, var(--bg), #0F172A);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    padding: 35px 15px 20px;
    color: var(--text);
}

.container {
    max-width: 500px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 10px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid var(--accent);
    padding: 2px;
}

.site-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent);
    font-size: 32px;
    margin-top: 12px;
    text-transform: uppercase;
}

.welcome-message {
    font-weight: 500;
    text-align: center;
    color: var(--text);
    font-size: 22px;
    margin: 12px 0 20px;
}

.sub-message {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    margin-top: 5px;
    opacity: 0.9;
}

.card {
    background: var(--card-bg);
    color: var(--text);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 216, 255, 0.1);
    box-shadow: 0 8px 32px var(--shadow);
    backdrop-filter: blur(4px);
}

.card h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--accent);
    text-transform: uppercase;
}

.steps {
    list-style: none;
}

.steps li {
    margin-bottom: 12px;
    font-size: 17px;
    display: flex;
    gap: 8px;
    line-height: 1.5;
    color: var(--text);
}

.step-note {
    color: var(--text-light);
    font-size: 15px;
    margin-top: 4px;
    margin-left: 20px;
    font-style: italic;
    opacity: 0.85;
}

.notice {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 216, 255, 0.1);
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
}

.link {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--card-bg);
    color: var(--text);
    text-decoration: none;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 216, 255, 0.1);
    box-shadow: 0 4px 16px var(--shadow);
}

.link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 216, 255, 0.2);
    border-color: var(--accent);
    background: var(--primary);
}

.link img {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px;
    transition: transform 0.2s ease;
}

.link:hover img {
    transform: scale(1.1);
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 12px;
    text-align: center;
    text-transform: uppercase;
}

.hot-picks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.hot-pick-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 216, 255, 0.1);
    background: var(--primary);
    color: var(--text);
}

.hot-pick-count {
    color: var(--accent);
    font-weight: 600;
    margin-right: 10px;
    font-size: 16px;
}

.hot-picks-header {
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    margin-bottom: 8px;
    opacity: 0.8;
}

.hot-picks-update {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 12px;
    text-align: center;
    opacity: 0.8;
}

.footer {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    margin-top: 25px;
    margin-bottom: 15px;
    line-height: 1.5;
    padding: 0 10px;
}

.notification {
    position: fixed;
    bottom: -100px;
    left: 20px;
    background: var(--card-bg);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow);
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    width: auto;
    max-width: 600px;
    white-space: nowrap;
    text-align: left;
    border: 1px solid rgba(0, 216, 255, 0.1);
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .notification {
        width: 85%;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px;
        text-align: center;
        white-space: normal;
    }
}

.notification.show {
    bottom: 20px;
    opacity: 1;
}

.claims-counter {
    background: var(--card-bg);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    border: 1px solid rgba(0, 216, 255, 0.1);
}

.counter-number {
    color: var(--accent);
    font-weight: 600;
}

.rewards-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
    text-align: center;
    margin: 2rem 0 1rem;
    font-size: 24px;
    text-transform: uppercase;
}

.offers-note {
    color: var(--text-light);
    text-align: center;
    font-size: 14px;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .notification {
        width: 85%;
        left: 50%;
        transform: translateX(-50%);
        padding: 15px;
        text-align: center;
    }
}

@media (min-width: 768px) {
    body {
        padding: 40px 20px;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .site-title {
        font-size: 36px;
    }
    
    .welcome-message {
        font-size: 24px;
    }
    
    .card {
        padding: 30px;
    }
    
    .steps li {
        font-size: 19px;
    }
    
    .link {
        padding: 22px;
    }
    
    .link img {
        width: 45px;
        height: 45px;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .footer {
        font-size: 14px;
        margin-top: 30px;
    }
}