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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 252, 0, 0.3));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 252, 0, 0.5));
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FFFC00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Header Stats */
.stats-header {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.online-count, .waiting-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFC00;
    text-shadow: 0 0 20px rgba(255, 252, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1rem;
    color: #cccccc;
    margin-top: 8px;
}

/* Main Content */
.main-content {
    margin: 80px 0;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFC00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 252, 0, 0.2);
}

.subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 50px;
}

.start-btn {
    background: linear-gradient(45deg, #FFFC00, #FFD700);
    color: #000000;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.start-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 252, 0, 0.4);
}

.start-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.privacy-text {
    margin-top: 30px;
    color: #888888;
    font-size: 0.9rem;
}

/* Last Checked Users */
.last-checked {
    margin-top: 80px;
    padding: 30px;
    background: rgba(255, 252, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 252, 0, 0.1);
}

.last-checked h3 {
    color: #FFFC00;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.user-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.user {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 252, 0, 0.2);
}

.user.new-check {
    animation: newCheck 0.5s ease;
}

@keyframes newCheck {
    0% { transform: scale(1); background: rgba(255, 252, 0, 0.2); }
    50% { transform: scale(1.1); background: rgba(255, 252, 0, 0.4); }
    100% { transform: scale(1); background: rgba(255, 255, 255, 0.1); }
}

/* Pages */
.page {
    display: none;
    min-height: 100vh;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFFC00, #FFD700);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 252, 0, 0.5);
}

/* Username Page */
.form-container {
    text-align: center;
    margin-top: 100px;
}

.form-container h2 {
    color: #FFFC00;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.input-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

#usernameInput {
    padding: 15px 25px;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 252, 0, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    min-width: 300px;
    transition: all 0.3s ease;
}

#usernameInput:focus {
    outline: none;
    border-color: #FFFC00;
    box-shadow: 0 0 20px rgba(255, 252, 0, 0.3);
}

.connect-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #FFFC00, #FFD700);
    color: #000000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.connect-btn:disabled {
    background: #666666;
    cursor: not-allowed;
    color: #999999;
}

.connect-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 252, 0, 0.4);
}

/* Package Page */
.packages-container {
    text-align: center;
    margin-top: 60px;
}

.packages-container h2 {
    color: #FFFC00;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.packages {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.package {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 252, 0, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    min-width: 250px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package:hover {
    border-color: #FFFC00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 252, 0, 0.2);
}

.package h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.package .price {
    color: #FFFC00;
    font-size: 2rem;
    font-weight: 700;
}

/* Process Page */
.process-container {
    text-align: center;
    margin-top: 60px;
}

.verified-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.process-container h2 {
    color: #FFFC00;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.process-steps {
    max-width: 600px;
    margin: 0 auto;
}

.step {
    margin-bottom: 30px;
    text-align: left;
}

.step-text {
    display: block;
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 1.1rem;
}

.step-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.step-progress {
    height: 100%;
    background: linear-gradient(90deg, #FFFC00, #FFD700);
    border-radius: 4px;
    width: 0%;
    transition: width 1s ease;
}

/* Payment Page */
.payment-container {
    text-align: center;
    margin-top: 60px;
}

.payment-container h2 {
    color: #FFFC00;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.payment-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 252, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    min-width: 400px;
}

.payment-option h3 {
    color: #FFFC00;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.crypto-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: left;
}

.crypto-name {
    display: block;
    color: #FFFC00;
    font-weight: 600;
    margin-bottom: 10px;
}

.crypto-address {
    font-family: monospace;
    font-size: 0.9rem;
    color: #cccccc;
    word-break: break-all;
    margin-bottom: 10px;
}

.copy-btn {
    background: #FFFC00;
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #FFD700;
    transform: translateY(-1px);
}

.giftcard-package {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.giftcard-package h4 {
    color: #FFFC00;
    margin-bottom: 15px;
}

.giftcard-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.giftcard-links a {
    background: #FFFC00;
    color: #000000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.giftcard-links a:hover {
    background: #FFD700;
    transform: translateY(-1px);
}

.giftcard-input {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

#giftcardCode {
    padding: 12px 20px;
    border: 2px solid rgba(255, 252, 0, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    min-width: 250px;
}

.redeem-btn {
    background: #FFFC00;
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.redeem-btn:hover {
    background: #FFD700;
    transform: translateY(-1px);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 2px solid rgba(255, 252, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    position: relative;
}

.package-modal-content {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.modal-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 15px;
    border: 2px solid rgba(255, 252, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.modal-image-bg {
    width: 100%;
    height: 400px;
    max-width: 600px;
    border-radius: 15px;
    border: 2px solid rgba(255, 252, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.modal-text-content {
    text-align: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    color: #cccccc;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #FFFC00;
}

.modal-content h3 {
    color: #FFFC00;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.modal-content p {
    color: #cccccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.start-process-btn, .complete-order-btn {
    background: linear-gradient(45deg, #FFFC00, #FFD700);
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-process-btn:hover, .complete-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 252, 0, 0.4);
}

/* Upload Progress Modal */
.upload-modal-content {
    max-width: 600px;
    text-align: center;
}

.upload-status {
    padding: 20px 0;
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.upload-message {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.upload-progress-container {
    margin: 30px 0;
}

.upload-progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 252, 0, 0.3);
}

.upload-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFFC00, #FFD700);
    border-radius: 8px;
    width: 0%;
    transition: width 1s ease;
    box-shadow: 0 0 15px rgba(255, 252, 0, 0.5);
    position: relative;
}

.upload-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.upload-progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #cccccc;
}

#uploadProgressPercent {
    color: #FFFC00;
    font-weight: 600;
    font-size: 1.1rem;
}

.upload-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    text-align: left;
}

.upload-details p {
    margin: 10px 0;
    color: #cccccc;
}

.upload-details strong {
    color: #FFFC00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .stats-header {
        gap: 30px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .packages {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-options {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-option {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
    
    .package-modal-content {
        max-width: 90vw;
        margin: 10px;
        padding: 20px;
    }
    
    .modal-image {
        max-height: 300px;
    }
    
    .input-group {
        flex-direction: column;
        align-items: center;
    }
    
    #usernameInput {
        min-width: 250px;
    }
}

/* Payment Method Buttons */
.payment-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-method-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 252, 0, 0.3);
    border-radius: 15px;
    padding: 20px 40px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.payment-method-btn:hover {
    border-color: #FFFC00;
    background: rgba(255, 252, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 252, 0, 0.2);
}

.crypto-btn {
    background: rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.3);
}

.crypto-btn:hover {
    border-color: #ff9800;
    background: rgba(255, 152, 0, 0.2);
}

.giftcard-btn {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
}

.giftcard-btn:hover {
    border-color: #2196f3;
    background: rgba(33, 150, 243, 0.2);
}

/* Modal Styles for Gift Card and Crypto */
.giftcard-modal-content {
    max-width: 600px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(33, 150, 243, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.crypto-modal-content {
    max-width: 600px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 152, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Error Modal Styles */
.error-modal-content {
    max-width: 500px;
    background: rgba(139, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(220, 20, 60, 0.5);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.6);
    text-align: center;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
}

.error-modal-content h3 {
    color: #ff4757;
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(255, 71, 87, 0.3);
}

.error-message {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.error-message p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.error-message a {
    color: #FFFC00;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.error-message a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 252, 0, 0.5);
}

/* Crypto Payment Note */
.crypto-payment-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 10px;
}

.crypto-payment-note p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.crypto-payment-note strong {
    color: #ff9800;
}

/* Discord Help Text */
.discord-help {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    opacity: 0.9;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(128, 128, 128, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.discord-help:hover {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(128, 128, 128, 0.15));
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.discord-link {
    color: #FFFC00;
    font-weight: 600;
}

.discord-help:hover .discord-link {
    color: #FFD700;
}

/* Loading Animation */
@keyframes loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading {
    border: 3px solid rgba(255, 252, 0, 0.3);
    border-top: 3px solid #FFFC00;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: loading 1s linear infinite;
    margin: 0 auto;
}
