/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Loading Page Styles */
.loading-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.loading-container {
    text-align: center;
}

.coin-animation {
    font-size: 64px;
    color: #ffd700;
    animation: spin 2s linear infinite;
}

.loading-text {
    margin-top: 20px;
    font-size: 24px;
    color: #ffffff;
}

.dots {
    animation: dots 1.5s infinite;
}

/* Landing Page Styles */
.landing-page {
    padding: 40px 20px;
}

.title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700;
}

.description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}

.input-section {
    max-width: 500px;
    margin: 0 auto 40px;
}

.username-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
}

.cta-button {
    width: 100%;
    padding: 15px;
    background: #ffd700;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.02);
}

.scarcity-element {
    text-align: center;
    color: #ff4444;
    margin-bottom: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.live-feed {
    max-width: 500px;
    margin: 0 auto;
}

.live-feed h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffd700;
}

.earnings-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
}

.feed-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-item:last-child {
    border-bottom: none;
}

.user-avatar {
    font-size: 32px;
    margin-right: 15px;
    color: #ffd700;
}

.feed-content {
    flex: 1;
}

.username {
    font-weight: 600;
    margin-bottom: 5px;
}

.coins {
    color: #ffd700;
    font-weight: 600;
}

.time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Verification Page Styles */
.verification-page {
    padding: 40px 20px;
}

.verification-container {
    max-width: 600px;
    margin: 0 auto;
}

.processing-section {
    margin-bottom: 40px;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: #ffd700;
    width: 0;
    transition: width 0.5s ease;
}

.status-messages {
    text-align: center;
    min-height: 24px;
    margin-top: 20px;
}

.status-message {
    display: none;
    color: #ffffff;
    font-size: 18px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.status-message i {
    margin-right: 10px;
}

.error-icon {
    color: #ff4444;
    animation: shake 0.5s ease-in-out;
}

.countdown-section {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.countdown-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.countdown-timer {
    font-size: 48px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.countdown-message {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.verify-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: #ffd700;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.verify-button:hover {
    transform: scale(1.02);
}

.verify-button i {
    font-size: 20px;
}

/* Animations */
@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    80%, 100% { content: ''; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* New Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }

    .countdown-timer {
        font-size: 36px;
    }

    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
    }

    .countdown-timer {
        font-size: 32px;
    }

    .username-input,
    .cta-button,
    .verify-button {
        padding: 12px;
        font-size: 16px;
    }
}

/* Coin Selection Styles */
.coin-selection {
    margin: 20px 0;
    text-align: center;
}

.coin-selection h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.coin-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.coin-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: #111;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.coin-option i {
    font-size: 24px;
    color: #ffd700;
    animation: coinSpin 3s linear infinite;
}

.coin-option span {
    font-size: 16px;
}

.coin-option:hover {
    transform: translateY(-2px);
    border-color: #00f2ea;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.3);
}

.coin-option.active {
    border-color: #ffd700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.coin-option.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffd700, #00f2ea);
    border-radius: 14px;
    z-index: -1;
    opacity: 0.3;
}

/* Suggested button styles */
.coin-option.suggested {
    border-color: #ff0050;
    background: linear-gradient(135deg, #111, #1a1a1a);
}

.coin-option.suggested:hover {
    border-color: #ff0050;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}

.coin-option.suggested .suggested-label {
    font-size: 12px;
    color: #ff0050;
    margin-top: 4px;
    animation: pulse 2s infinite;
}

.coin-option.suggested::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff0050, #ffd700);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    animation: borderPulse 3s infinite;
}

@keyframes borderPulse {
    0% { opacity: 0; }
    50% { opacity: 0.3; }
    100% { opacity: 0; }
}

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Responsive styles for coin selection */
@media (max-width: 768px) {
    .coin-options {
        gap: 10px;
    }
    
    .coin-option {
        padding: 12px 20px;
        min-width: 100px;
    }
    
    .coin-option i {
        font-size: 20px;
    }
    
    .coin-option span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .coin-options {
        flex-direction: column;
        align-items: center;
    }
    
    .coin-option {
        width: 100%;
        max-width: 250px;
    }
} 