* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #14f195;
    --primary-dark: #0ec77e;
    --secondary: #9333ea;
    --accent: #f97316;
    --background: #0a0e1a;
    --background-secondary: #0f1520;
    --surface: #1a2332;
    --card: #1e2938;
    --card-hover: #242d3f;
    --card-border: #2a3f5f;
    --text: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --success: #14f195;
    --error: #ef4444;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0f1520 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 241, 149, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 63, 95, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-gradient {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(20, 241, 149, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(20, 241, 149, 0.6);
    }
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--background);
    border-radius: 10px;
    padding: 8px;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stat-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Space Grotesk', monospace;
}

.stat-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--card-border);
}

.main-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

/* Hero Banner */
.claim-banner {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 3rem 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(20, 241, 149, 0.05) 100%);
    border-radius: 24px;
    border: 1px solid rgba(42, 63, 95, 0.5);
    position: relative;
    overflow: hidden;
}

.claim-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 241, 149, 0.03) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gift-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.gift-icon {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(20, 241, 149, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(20, 241, 149, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.claim-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.claim-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.sol-icon-title {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    vertical-align: middle;
    animation: rotate 4s linear infinite;
    filter: drop-shadow(0 0 10px rgba(20, 241, 149, 0.5));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.claim-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--background);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 30px rgba(20, 241, 149, 0.3);
    position: relative;
    z-index: 2;
}

.badge-text {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 600;
}

.badge-amount {
    font-size: 1.125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-label {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 600;
}

.sol-icon-badge {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    vertical-align: middle;
    display: inline-block;
}

.sol-icon-inline {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 3px;
}

.sol-icon-stat {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 5px;
    display: inline-block;
}

.ref-stat:first-child .sol-icon-stat {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 8px rgba(20, 241, 149, 0.6));
}

/* Progress Section */
.progress-section {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.progress-section:hover {
    border-color: rgba(20, 241, 149, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.progress-percentage {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--surface);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.wallet-count {
    color: var(--text);
    font-weight: 600;
}

.wallet-total {
    color: var(--text-secondary);
}

/* Wallet Section */
.wallet-section {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.wallet-section:hover {
    border-color: rgba(20, 241, 149, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.wallet-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.wallet-input-group {
    display: flex;
    gap: 0.75rem;
}

.wallet-saved-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 241, 149, 0.1);
    border: 2px solid var(--success);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.wallet-saved-display {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    background: var(--success);
    color: var(--background);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.saved-text {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.saved-address {
    color: var(--success);
    font-family: monospace;
    font-weight: 700;
    font-size: 0.9rem;
}

.wallet-input-field {
    flex: 1;
    background: var(--surface);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
    font-family: monospace;
    transition: all 0.3s;
}

.wallet-input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 241, 149, 0.1);
}

.wallet-input-field.saved {
    border-color: var(--success);
}

.save-btn {
    background: var(--primary);
    color: var(--background);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.save-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(20, 241, 149, 0.3);
}

.save-btn:active {
    transform: translateY(0);
}

.save-btn.saved {
    background: var(--success);
    cursor: default;
}

.save-btn.saved:hover {
    background: var(--success);
    transform: none;
    box-shadow: 0 0 20px rgba(20, 241, 149, 0.2);
}

.change-btn {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--card-border);
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.change-btn:hover {
    border-color: var(--primary);
    background: rgba(20, 241, 149, 0.1);
    transform: translateY(-2px);
}

/* Referral Section */
.referral-section {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(20, 241, 149, 0.1) 100%);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.referral-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.referral-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.referral-info {
    flex: 1;
}

.referral-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.referral-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.referral-link-container {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.referral-input {
    flex: 1;
    background: var(--surface);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-family: monospace;
    font-weight: 600;
}

.referral-input:focus {
    outline: none;
    border-color: var(--primary);
}

.copy-btn {
    background: var(--primary);
    color: var(--background);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(20, 241, 149, 0.3);
}

.copy-btn.copied {
    background: var(--success);
}

.copy-icon {
    font-size: 1rem;
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    margin-top: 0;
}

.ref-stat {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ref-stat:first-child {
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.1), rgba(147, 51, 234, 0.1));
    border-color: var(--primary);
}

.ref-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(20, 241, 149, 0.2);
}

.ref-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Space Grotesk', monospace;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.ref-stat:first-child .ref-number {
    font-size: 1.75rem;
    color: var(--success);
}

.ref-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1.2;
}

.wallet-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Tasks Section */
.tasks-section {
    margin-bottom: 2rem;
}

.tasks-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.task-item {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.task-item:hover {
    background: var(--card-hover);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(20, 241, 149, 0.15);
    transform: translateY(-3px);
}

.task-item.completed {
    opacity: 0.7;
    border-color: var(--success);
}

.task-icon {
    width: 40px;
    height: 40px;
    background: rgba(20, 241, 149, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.task-content {
    flex: 1;
    min-width: 0;
}

.task-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.task-reward {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.task-btn {
    background: var(--primary);
    color: var(--background);
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.task-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(20, 241, 149, 0.3);
}

.task-btn:disabled {
    background: var(--success);
    cursor: not-allowed;
    opacity: 0.8;
}

.task-btn:disabled:hover {
    transform: none;
}

.completed-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Verification Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.modal-container {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.modal-body {
    padding: 1.75rem;
}

.modal-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.verification-input {
    width: 100%;
    background: var(--surface);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-bottom: 0.75rem;
}

.verification-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 241, 149, 0.1);
}

.modal-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.modal-footer {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.modal-btn-primary,
.modal-btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.modal-btn-primary {
    background: var(--primary);
    color: var(--background);
}

.modal-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(20, 241, 149, 0.3);
}

.modal-btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--card-border);
}

.modal-btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(20, 241, 149, 0.1);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--card);
    color: var(--text);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateX(400px);
    transition: transform 0.3s;
    z-index: 2000;
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-color: var(--success);
    background: rgba(20, 241, 149, 0.1);
}

.toast.error {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .logo-section {
        width: 100%;
        justify-content: center;
    }

    .header-stats {
        width: 100%;
        justify-content: space-around;
    }

    .main-container {
        padding: 1.5rem 0.75rem;
    }

    .claim-banner {
        padding: 2rem 1rem 1.5rem;
    }

    .claim-title {
        font-size: 2rem;
    }

    .claim-description {
        font-size: 0.875rem;
    }

    .wallet-input-group {
        flex-direction: column;
    }

    .save-btn,
    .change-btn {
        width: 100%;
        padding: 1rem;
    }

    .wallet-saved-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .wallet-saved-display {
        width: 100%;
    }

    .change-btn {
        width: 100%;
    }

    .referral-link-container {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }

    .referral-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .ref-stat:first-child {
        grid-column: 1;
    }
    
    .ref-stat {
        min-height: 90px;
    }

    .task-item {
        padding: 1.125rem;
    }

    .modal-container {
        margin: 1rem;
    }

    .modal-footer {
        flex-direction: column;
    }

    .modal-btn-primary,
    .modal-btn-secondary {
        width: 100%;
    }

    .task-name {
        font-size: 0.875rem;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }
}

@media (max-width: 480px) {
    .logo-gradient {
        width: 45px;
        height: 45px;
    }

    .logo-icon {
        width: 41px;
        height: 41px;
    }

    .logo-title {
        font-size: 1.125rem;
    }

    .logo-subtitle {
        font-size: 0.65rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-text {
        font-size: 0.65rem;
    }

    .claim-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .sol-icon-title {
        width: 32px;
        height: 32px;
    }

    .gift-icon {
        font-size: 3rem;
    }

    .claim-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .badge-amount {
        font-size: 1rem;
    }

    .task-item {
        gap: 0.875rem;
        padding: 1rem;
    }

    .task-icon {
        width: 38px;
        height: 38px;
        font-size: 1.125rem;
    }

    .task-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.8rem;
    }
}
