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

:root {
    --bg: #0a0e1a;
    --surface: #161b2e;
    --card: #1e2436;
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --success: #10b981;
    --text: #f8fafc;
    --text-dim: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========== BACKGROUND ========== */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.bg-logo {
    position: fixed;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: url('logo1.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    filter: blur(2px);
}

.bg-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background-image: url('logo2.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.10;
    z-index: 0;
    filter: blur(3px);
}

/* ========== CONTAINER ========== */
.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========== HEADER ========== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(239, 68, 68, 0.4));
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #10b981;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #10b981;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ========== MAIN CONTENT ========== */
.main-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 60px;
    flex: 1;
    align-items: center;
}

/* ========== INFO SECTION ========== */
.info-section {
    max-width: 600px;
}

.brand-logo-container {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.brand-logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.brand-logo {
    width: 130px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(239, 68, 68, 0.5)) brightness(1.05);
    animation: float 3s ease-in-out infinite;
}

.main-heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.heading-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.heading-amount {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.heading-subtitle {
    font-size: 24px;
    color: var(--text-dim);
    font-weight: 500;
}

/* ========== STATS GRID ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

.stat-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== FEATURES LIST ========== */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-dim);
}

/* ========== ENTRY SECTION ========== */
.entry-section {
    position: relative;
}

.entry-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.entry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ========== STEPS ========== */
.step {
    display: none;
    animation: fadeIn 0.4s ease;
    position: relative;
    z-index: 1;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
}

/* ========== FORM ========== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: var(--text-dim);
}

/* ========== KICK CONNECT ========== */
.kick-connect-container {
    text-align: center;
    padding: 24px 0;
    margin-bottom: 28px;
}

.kick-logo-container {
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
    animation: float 3s ease-in-out infinite;
}

.kick-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(83, 252, 24, 0.4));
}

.kick-connect-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.kick-connect-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 24px;
}

.kick-requirements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    max-width: 320px;
    margin: 0 auto;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dim);
}

.req-icon {
    width: 16px;
    height: 16px;
    color: #53FC18;
    flex-shrink: 0;
}

.btn-kick-connect {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #53FC18, #42c914);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(83, 252, 24, 0.3);
}

.btn-kick-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(83, 252, 24, 0.5);
}

.btn-kick-logo {
    width: 24px;
    height: 24px;
}

/* ========== BUTTONS ========== */
.btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

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

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========== VERIFICATION ========== */
.verification-animation {
    width: 120px;
    height: 120px;
    margin: 40px auto;
    position: relative;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-duration: 1.5s;
    border-top-color: var(--primary);
}

.spinner-ring:nth-child(2) {
    animation-duration: 2s;
    border-top-color: var(--secondary);
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    animation-duration: 2.5s;
    border-top-color: var(--accent);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.verification-status {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.status-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: relative;
}

.status-icon.pending {
    background: rgba(255, 255, 255, 0.1);
}

.status-icon.loading {
    background: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.status-icon.complete {
    background: var(--success);
}

.status-icon.complete::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 8px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    border-radius: 1px;
    transform: translate(-50%, -60%) rotate(-45deg);
}

.status-text {
    font-size: 15px;
    color: var(--text-dim);
}

.status-item.active .status-text {
    color: var(--text);
}

/* ========== WALLET INFO ========== */
.wallet-highlight {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    margin-bottom: 28px;
}

.wallet-icon-container {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.wallet-svg {
    width: 36px;
    height: 36px;
    color: white;
}

.wallet-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.wallet-description {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 24px;
}

.wallet-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    max-width: 300px;
    margin: 0 auto;
}

.wallet-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dim);
}

.feature-check {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.btn-wallet-connect {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--success), #059669);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-wallet-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-wallet-connect:hover::before {
    left: 100%;
}

.btn-wallet-connect:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn-wallet-connect:active {
    transform: translateY(-1px);
}

.btn-wallet-connect:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-wallet-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-wallet-connect:hover .btn-wallet-icon {
    transform: translateX(4px);
}

/* ========== WINNER ANNOUNCEMENT ========== */
.success-badge {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.success-badge .success-icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 3;
}

.winner-content {
    text-align: center;
    margin-bottom: 20px;
}

.winner-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.winner-subtitle {
    font-size: 15px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.prize-display {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
}

.prize-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.prize-amount {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.claim-instruction {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid #3b82f6;
    border-radius: 8px;
}

.instruction-icon {
    width: 24px;
    height: 24px;
    color: #3b82f6;
    flex-shrink: 0;
}

.claim-instruction p {
    font-size: 13px;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.4;
}

.btn-claim-prize {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-claim-prize::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-claim-prize:hover::before {
    left: 100%;
}

.btn-claim-prize:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-claim-prize .btn-wallet-icon {
    width: 22px;
    height: 22px;
}

.btn-claim-prize .btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-claim-prize:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========== WALLET INSTRUCTIONS ========== */
.instruction-header {
    text-align: center;
    margin-bottom: 32px;
}

.instruction-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
}

.instruction-icon-large svg {
    width: 44px;
    height: 44px;
    color: white;
}

.instruction-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.prize-amount-display {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.instruction-content {
    text-align: left;
}

.instruction-description {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 28px;
    text-align: center;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.instruction-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.step-content p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

.instruction-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.note-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: #FFA500;
    flex-shrink: 0;
}

.instruction-note strong {
    color: var(--text);
}

/* ========== SUCCESS ========== */
.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    border-radius: 50%;
}

.success-icon svg {
    width: 48px;
    height: 48px;
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.success-message {
    font-size: 16px;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 32px;
}

.entry-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.info-label {
    font-size: 14px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.status-ready {
    color: var(--success);
}

.status-processing {
    color: #FFA500;
}

.prize-highlight {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.next-steps-box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.next-steps-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.next-steps-text {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ========== PROGRESS DOTS ========== */
.progress-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    width: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

/* ========== PROMOTIONAL FOOTER ========== */
.promo-footer {
    margin-top: 60px;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.promo-banner {
    max-width: 100%;
    width: 600px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    border-radius: 16px;
    filter: drop-shadow(0 10px 40px rgba(239, 68, 68, 0.3));
    transition: all 0.3s ease;
}

.promo-banner:hover {
    opacity: 1;
    transform: scale(1.02);
    filter: drop-shadow(0 15px 50px rgba(239, 68, 68, 0.5));
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-section {
        max-width: 100%;
    }

    .heading-amount {
        font-size: 56px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .heading-amount {
        font-size: 48px;
    }

    .entry-card {
        padding: 24px;
    }

    .step-title {
        font-size: 20px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .promo-banner {
        width: 100%;
        padding: 0 20px;
    }

    .brand-logo {
        width: 100px;
    }

    .logo-img {
        height: 40px;
    }

    .kick-connect-title {
        font-size: 20px;
    }

    .btn-kick-connect {
        font-size: 15px;
        padding: 16px 24px;
    }

    .winner-title {
        font-size: 28px;
    }

    .prize-amount {
        font-size: 42px;
    }

    .success-badge {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .success-badge .success-icon {
        width: 28px;
        height: 28px;
    }

    .btn-claim-prize {
        font-size: 15px;
        padding: 18px 24px;
    }

    .instruction-title {
        font-size: 24px;
    }

    .prize-amount-display {
        font-size: 38px;
    }

    .instruction-icon-large {
        width: 70px;
        height: 70px;
    }

    .instruction-icon-large svg {
        width: 38px;
        height: 38px;
    }

    .step-num {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .step-content h4 {
        font-size: 15px;
    }

    .step-content p {
        font-size: 13px;
    }
}
