* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    min-height: 100vh;
    color: white;
    line-height: 1.6;
}

.scarcity-bar {
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f); }
    50% { background: linear-gradient(90deg, #6bcf7f, #ff6b6b, #ffd93d); }
}

.live-indicator {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

.presale-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.crown-header {
    text-align: center;
    margin-bottom: 40px;
}

.crown-logo {
    font-size: 4rem;
    margin-bottom: 10px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.crown-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff59d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #1da1f2, #0084b4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.checkmark {
    background: white;
    color: #1da1f2;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.main-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 40px;
    font-weight: 500;
}

.video-social-proof {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.video-container {
    max-width: 350px;
    width: 100%;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 3px;
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.4);
}

.jamal-video {
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 17px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 215, 0, 1);
    transform: scale(1.1);
}

.play-icon {
    color: #1a1a2e;
    font-size: 24px;
    font-weight: bold;
    margin-left: 3px;
}

.video-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 107, 107, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.live-badge {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-caption {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.video-caption h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

.video-caption p {
    font-size: 1rem;
    color: #b8b8b8;
    font-style: italic;
    line-height: 1.4;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8b8b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-prop {
    margin-bottom: 50px;
    text-align: center;
}

.value-prop h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-prop p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 40px;
}

.tier-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tier {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier:hover::before {
    opacity: 1;
}

.tier-bronze { border-color: #cd7f32; }
.tier-silver { border-color: #c0c0c0; }
.tier-gold { border-color: #ffd700; }
.tier-diamond { border-color: #b9f2ff; }

.popular {
    transform: scale(1.05);
    border-color: #ffd700 !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    color: #1a1a2e;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-header {
    text-align: center;
    margin-bottom: 20px;
}

.tier-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tier-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.tier-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd700;
}

.tier-benefits {
    list-style: none;
    padding: 0;
}

.tier-benefits li {
    padding: 8px 0;
    color: #b8b8b8;
    position: relative;
    padding-left: 25px;
}

.tier-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6bcf7f;
    font-weight: bold;
}

.value-explanation {
    margin-bottom: 50px;
    text-align: center;
}

.value-explanation h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-point {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-point:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    margin-bottom: 15px;
}

.value-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.value-content p {
    font-size: 1rem;
    color: #b8b8b8;
    line-height: 1.6;
    margin: 0;
}

.tokenomics-highlight {
    margin-bottom: 50px;
}

.tokenomics-card {
    background: linear-gradient(135deg, #6bcf7f, #4caf50);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.multiplier {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tokenomics-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tokenomics-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.wallet-section {
    margin-bottom: 40px;
}

.wallet-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-info p:first-child {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #ffd700;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 15px;
}

.balance-info {
    background: rgba(107, 207, 127, 0.1);
    border: 1px solid rgba(107, 207, 127, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.balance-info p {
    margin: 5px 0;
    font-weight: 500;
    color: #6bcf7f;
}

#balanceAmount {
    color: #6bcf7f;
    font-weight: bold;
}

.refresh-balance-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
    color: #6bcf7f;
}

.refresh-balance-btn:hover {
    background: rgba(107, 207, 127, 0.2);
}

.amount-selection {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.amount-selection h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 8px;
    font-weight: 700;
}

.amount-subtitle {
    color: #b8b8b8;
    font-size: 1rem;
    margin-bottom: 30px;
}

.amount-controls {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.slider-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-section label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.sol-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.sol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.sol-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #b8b8b8;
    margin-top: 8px;
}

.input-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-section label {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    flex: 1;
    padding: 16px 60px 16px 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.input-suffix {
    position: absolute;
    right: 20px;
    color: #ffd700;
    font-weight: 700;
    font-size: 1rem;
}

.tier-preview {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.current-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tier-label {
    font-weight: 600;
    color: #b8b8b8;
}

.tier-name {
    font-weight: 700;
    color: #ffd700;
    font-size: 1.1rem;
}

.amount-info {
    background: rgba(107, 207, 127, 0.1);
    border: 1px solid rgba(107, 207, 127, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.amount-info p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.amount-info p:first-child {
    color: #6bcf7f;
}

.amount-info p:nth-child(2) {
    color: #ffd700;
    font-weight: 600;
}

.amount-info p:last-child {
    color: #ff6b6b;
    font-weight: 700;
}

.main-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    min-width: 280px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #ffed4e, #fff59d);
}

.main-button:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.royal-activation-button {
    background: linear-gradient(45deg, #ff6b6b, #ff5252, #e74c3c);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
    min-width: 280px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.royal-activation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.6);
    background: linear-gradient(45deg, #ff5252, #e74c3c, #c0392b);
}

.royal-activation-button:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    animation: none;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 15px 30px rgba(255, 107, 107, 0.8), 0 0 20px rgba(255, 107, 107, 0.6);
    }
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #ffd700;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 215, 0, 0.3);
    border-top: 4px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.message {
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
    font-weight: 500;
}

.message.info {
    background: rgba(29, 161, 242, 0.1);
    border: 1px solid rgba(29, 161, 242, 0.3);
    color: #1da1f2;
}

.message.success {
    background: rgba(107, 207, 127, 0.1);
    border: 1px solid rgba(107, 207, 127, 0.3);
    color: #6bcf7f;
}

.message.error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.urgency-section {
    margin-bottom: 40px;
}

.urgency-card {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.urgency-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.urgency-card p {
    font-size: 1rem;
    margin-bottom: 8px;
}

.testimonial-section {
    text-align: center;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid #ffd700;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: #ffd700;
}

.phantom-status {
    background: rgba(29, 161, 242, 0.1);
    border: 1px solid rgba(29, 161, 242, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    color: #1da1f2;
    font-size: 0.95rem;
}

.refresh-button {
    background: #1da1f2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 12px;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.refresh-button:hover {
    background: #0084b4;
}

@media (max-width: 768px) {
    .presale-card {
        padding: 30px 25px;
    }
    
    .crown-header h1 {
        font-size: 2.5rem;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .video-container {
        max-width: 280px;
    }
    
    .video-caption h4 {
        font-size: 1.1rem;
    }
    
    .video-caption p {
        font-size: 0.9rem;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .tier-system {
        grid-template-columns: 1fr;
    }
    
    .value-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-point {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px;
    }
    
    .value-icon {
        align-self: center;
        margin-bottom: 0;
    }
    
    .tokenomics-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .amount-info {
        grid-template-columns: 1fr;
    }
    
    .current-tier {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .scarcity-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 12px;
    }
    
    .container {
        padding: 20px 15px;
    }
    
    .presale-card {
        padding: 25px 20px;
    }
    
    .crown-header h1 {
        font-size: 2rem;
    }
    
    .main-headline {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}