/* Ultra-Modern Gamer / Influencer Landing Page Styling */
:root {
    --bg-dark: #080c14;
    --bg-card: rgba(17, 24, 39, 0.85);
    --border-card: rgba(255, 255, 255, 0.08);
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.4);
    --gold: #f59e0b;
    --gold-glow: rgba(245, 158, 11, 0.4);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --radius-card: 20px;
    --radius-btn: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: radial-gradient(circle at 50% 10%, #1e1b4b 0%, #090d16 60%, #05070c 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 48px;
    overflow-x: hidden;
}

/* Background animated glow orbs */
.glow-orb-1 {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.landing-container {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 10;
}

/* Creator Profile Header */
.creator-header {
    text-align: center;
    margin-bottom: 28px;
}

.creator-avatar-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
}

.creator-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 0 24px var(--primary-glow);
}

.verified-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #3b82f6;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 2px solid var(--bg-dark);
}

.creator-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.creator-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.creator-bio-box {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.4;
}

/* Video Player Preview (if YouTube is provided) */
.video-preview-wrap {
    margin-top: 16px;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border-card);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-preview-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Section Title */
.section-headline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    margin: 28px 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* App Cards */
.apps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-card);
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, border-color 0.2s;
}

.app-card:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.4);
}

.app-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-title-group {
    flex: 1;
}

.app-name {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.app-headline {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.3;
}

/* Reward Badge */
.reward-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fde68a;
    margin-bottom: 16px;
}

/* Refer Code Box */
.refer-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.refer-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.refer-code {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: monospace;
    color: #a78bfa;
}

.btn-copy {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #ddd6fe;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-copy:hover, .btn-copy.copied {
    background: #8b5cf6;
    color: #ffffff;
}

/* Big Download Button */
.btn-download {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-btn);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
}

.btn-download:active {
    transform: translateY(0);
}

/* Floating Toast Notification */
.toast-notice {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e1b4b;
    border: 1px solid #8b5cf6;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.toast-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Footer */
.landing-footer {
    margin-top: 36px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}
