/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0c0c23 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 149, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.3);
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.logo i {
    margin-right: 10px;
    animation: rocket-pulse 2s infinite;
}

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

header h1 {
    font-size: 28px;
    margin: 10px 0;
    background: linear-gradient(45deg, #00d4ff, #00ff95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Guarantee Section */
.guarantee-section {
    background: rgba(22, 33, 62, 0.9);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(0, 255, 149, 0.3);
}

.guarantee-section h3 {
    color: #00ff95;
    margin-bottom: 20px;
    font-size: 22px;
}

.guarantee-list {
    list-style: none;
    padding: 0;
}

.guarantee-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.guarantee-list li:last-child {
    border-bottom: none;
}

.guarantee-list li i {
    color: #00ff95;
    margin-right: 15px;
    font-size: 14px;
}

.subtitle {
    font-size: 18px;
    color: #00ff95;
    font-weight: 500;
}

/* Main Content */
main {
    padding: 40px 0;
}

/* Intro Section */
.intro {
    background: rgba(22, 33, 62, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #00d4ff;
    text-align: center;
}

.lead {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.8;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(43, 45, 66, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.feature i {
    font-size: 48px;
    color: #00ff95;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 20px;
}

.wallet-help-btn {
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid #00d4ff;
    color: #00d4ff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wallet-help-btn:hover {
    background: #00d4ff;
    color: #0c0c23;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Testimonial */
.testimonial {
    margin: 30px 0;
    text-align: center;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 18px;
    background: rgba(0, 255, 149, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #00ff95;
    position: relative;
}

.testimonial i {
    color: #00ff95;
    font-size: 24px;
    margin-right: 10px;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    color: #00d4ff;
    font-size: 14px;
}

/* Urgency */
.urgency {
    text-align: center;
    margin: 20px 0;
}

.urgency em {
    color: #ff6b6b;
    font-size: 18px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Form Section */
.form-section {
    background: rgba(22, 33, 62, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #00d4ff;
    text-align: center;
}

/* Messages */
.messages {
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 18px;
}

.alert-error {
    background: rgba(255, 77, 77, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.alert-success {
    background: rgba(0, 255, 149, 0.2);
    color: #00ff95;
    border: 1px solid #00ff95;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

/* Form Styles */
.token-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin: 25px 0;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(43, 45, 66, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(43, 45, 66, 1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-help {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(43, 45, 66, 0.8);
    border: 2px dashed rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 16px;
}

.file-upload-label:hover,
.file-input:focus + .file-upload-label {
    border-color: #00d4ff;
    background: rgba(43, 45, 66, 1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.file-upload-label i {
    font-size: 20px;
    color: #00d4ff;
}

/* Submit Section */
.submit-group {
    text-align: center;
    margin-top: 40px;
}

.pay-button {
    background: linear-gradient(135deg, #00ff95, #00d4ff);
    border: none;
    padding: 18px 40px;
    color: #0c0c23;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 255, 149, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.pay-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 149, 0.6);
}

.pay-button:active {
    transform: translateY(-1px);
}

.secure-payment {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-payment i {
    color: #00ff95;
}

/* Modal */
.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-content {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.modal-header h3 {
    color: #00d4ff;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #00d4ff;
}

.modal-body {
    padding: 30px;
}

/* Wallet Steps */
.wallet-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(43, 45, 66, 0.5);
    border-radius: 15px;
    border-left: 4px solid #00ff95;
}

.step-number {
    background: #00ff95;
    color: #0c0c23;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 18px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.step-content a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

.step-content a:hover {
    text-decoration: underline;
}

/* Success Page */
.success-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-content {
    background: rgba(22, 33, 62, 0.9);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.success-icon {
    font-size: 80px;
    color: #00ff95;
    margin-bottom: 30px;
    animation: success-bounce 1s ease-out;
}

@keyframes success-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00d4ff;
}

.success-details h2 {
    font-size: 24px;
    margin-bottom: 40px;
    color: #ffffff;
}

/* Timeline */
.timeline {
    text-align: left;
    margin: 40px 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(43, 45, 66, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-item.completed {
    background: rgba(0, 255, 149, 0.1);
    border-color: #00ff95;
}

.timeline-item.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: #00d4ff; }
    50% { border-color: rgba(0, 212, 255, 0.5); }
}

.timeline-item i {
    font-size: 24px;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.timeline-item.completed i {
    color: #00ff95;
}

.timeline-item.active i {
    color: #00d4ff;
}

.timeline-item:not(.completed):not(.active) i {
    color: rgba(255, 255, 255, 0.5);
}

.timeline-item h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Next Steps */
.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #00d4ff;
    text-align: center;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background: rgba(43, 45, 66, 0.3);
    border-radius: 10px;
}

.steps-list li i {
    color: #00ff95;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Info Cards */
.important-info {
    margin: 40px 0;
}

.important-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #00d4ff;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background: rgba(43, 45, 66, 0.5);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 40px;
    color: #00ff95;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #00ff95);
    color: #0c0c23;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #0c0c23;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Footer */
footer {
    background: rgba(12, 12, 35, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 212, 255, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #00d4ff;
    color: #0c0c23;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.5);
}

.disclaimer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.disclaimer i {
    color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .intro, .form-section, .success-content {
        padding: 30px 20px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 20px 15px;
    }
    
    .feature i {
        font-size: 40px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header, .modal-body {
        padding: 20px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-item i {
        align-self: center;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .success-icon {
        font-size: 60px;
    }
    
    .success-content h1 {
        font-size: 28px;
    }
    
    .steps-list li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .disclaimer p {
        text-align: center;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }
    
    header h1 {
        font-size: 20px;
    }
    
    .intro h2 {
        font-size: 24px;
    }
    
    .form-section h2 {
        font-size: 22px;
    }
    
    .pay-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .success-content {
        padding: 20px 15px;
    }
    
    .success-content h1 {
        font-size: 24px;
    }
    
    .success-details h2 {
        font-size: 20px;
    }
}

/* Use Cases Styling */
.use-cases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.use-case {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 14px;
    color: #00d4ff;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.use-case:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.trading-info {
    background: linear-gradient(135deg, rgba(0, 255, 149, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(0, 255, 149, 0.3);
}

.trading-info h3 {
    color: #00ff95;
    margin-bottom: 15px;
    font-size: 20px;
}

.trading-info p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Package Selection Visual Improvements */
.package-intro {
    text-align: center;
    font-size: 18px;
    margin: 20px 0 40px 0;
    background: linear-gradient(135deg, #00d4ff, #00ff95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Pricing Packages */
.pricing-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
    padding: 40px 20px;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.08), rgba(0, 255, 149, 0.08));
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

.pricing-packages::before {
    content: "Kies je gewenste pakket";
    display: block;
    text-align: center;
    font-size: 14px;
    color: #00d4ff;
    font-weight: 600;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 12, 35, 0.9);
    padding: 8px 16px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* Removed pulse animation for calmer experience */

/* Selection Notice */
.selection-notice {
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 149, 0.1));
    border: 2px dashed rgba(0, 212, 255, 0.4);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    animation: gentle-glow 3s infinite;
}

.notice-content i {
    font-size: 48px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.notice-content h3 {
    color: #00d4ff;
    font-size: 24px;
    margin-bottom: 15px;
}

.notice-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
}

@keyframes gentle-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.4); }
}

/* Removed bounce animation for calmer experience */

.package {
    background: linear-gradient(145deg, rgba(22, 33, 62, 0.8), rgba(26, 26, 46, 0.8));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.package:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.package-popular {
    border-color: #00ff95;
    transform: scale(1.05);
}

.package-popular:hover {
    border-color: #00ff95;
    box-shadow: 0 15px 40px rgba(0, 255, 149, 0.4);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ff95, #00d4ff);
    color: #0c0c23;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.package-header h3 {
    color: #00d4ff;
    font-size: 24px;
    margin-bottom: 10px;
}

.package-popular .package-header h3 {
    color: #00ff95;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.supply {
    color: #00d4ff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.package-popular .supply {
    color: #00ff95;
}

.package-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.package-features i {
    color: #00d4ff;
    margin-right: 10px;
    width: 16px;
}

.package-popular .package-features i {
    color: #00ff95;
}

.package-select {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
}

.package-select:hover {
    background: linear-gradient(45deg, #0099cc, #00d4ff);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.package-popular .package-select {
    background: linear-gradient(45deg, #00ff95, #00cc77);
}

.package-popular .package-select:hover {
    background: linear-gradient(45deg, #00cc77, #00ff95);
    box-shadow: 0 5px 20px rgba(0, 255, 149, 0.4);
}

.package.selected {
    border-color: #00ff95;
    background: linear-gradient(145deg, rgba(0, 255, 149, 0.1), rgba(0, 212, 255, 0.1));
}

.package.selected .package-select {
    background: linear-gradient(45deg, #00ff95, #00cc77);
}

.package.selected .package-select::after {
    content: ' ✓';
    margin-left: 5px;
}

.selected-package-info {
    background: rgba(0, 255, 149, 0.1);
    border: 1px solid rgba(0, 255, 149, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.selected-package-info h4 {
    color: #00ff95;
    margin-bottom: 10px;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Focus Styles for Accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    body {
        background: #000000;
        color: #ffffff;
    }
    
    .intro, .form-section, .success-content, .modal-content {
        background: #1a1a1a;
        border: 2px solid #ffffff;
    }
    
    .form-control {
        background: #000000;
        border: 2px solid #ffffff;
        color: #ffffff;
    }
    
    .pay-button {
        background: #ffffff;
        color: #000000;
        border: 2px solid #ffffff;
    }
}

/* Mobile Responsive for Pricing Packages */
@media (max-width: 768px) {
    .pricing-packages {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-popular {
        transform: none;
    }
    
    .package {
        margin-bottom: 20px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Disable smooth scrolling for users who prefer reduced motion */
    html {
        scroll-behavior: auto !important;
    }
}
