@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

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

.how-to-use {
    scale: 0;
    display: none;
}

.faq {
    scale: 0;
    display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #eb6395, #ff8fab);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #d55a87, #ff7a9a);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #eb6395 rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(235, 99, 149, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #eb6395, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #eb6395;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #eb6395, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-subtitle {
        margin-bottom: 0;
    }

    .hero-section {
        margin-bottom: 0;
    }
}

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

/* Donate Section (themed like the download form) */
.donate-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 99, 149, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 30px auto 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.donate-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.donate-section p {
    color: #cccccc;
    line-height: 1.5;
}

.donate-note {
    font-size: 13px !important;
}

/* Keep gradient only on text, not on emoji */
.donate-section .gradient-text {
    background: linear-gradient(45deg, #eb6395, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donate-section .emoji {
    color: inherit;
    /* keep default emoji color */
}

/* Larger lead for opening phrase */
.donate-section .donate-lead {
    font-size: 18px;
    font-weight: 700;
}

#deliverySection {
    align-self: center !important;

}

#premiumSection {
    background: #1f1e1ef0 !important;
}

#deliverySection {
    background: #1f1e1ef0 !important;
}

.processing-modal {
    background: #1f1e1ef0 !important;
}

.results-modal {
    background: #1f1e1ef0 !important;
    max-height: 84vh;
    overflow-y: auto;
}

.donate-section .donate-button {
    display: inline-block;
    margin-top: 20px;
}

.donate-section .donate-note {
    margin-top: 18px;
    color: #bdbdbd;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

/* Crypto Addresses Section */
.crypto-addresses {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(235, 99, 149, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.crypto-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(235, 99, 149, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 99, 149, 0.2);
}

.crypto-icon {
    font-size: 28px;
    color: #eb6395;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-icon img {
    width: 28px;
    height: 28px;
}

.crypto-info {
    flex: 1;
    min-width: 0;
}

.crypto-name {
    font-weight: 600;
    color: #eb6395;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.crypto-address {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #cccccc;
    word-break: break-all;
    user-select: all;
    cursor: pointer;
}

.crypto-address:hover {
    color: #ffffff;
}

.copy-btn {
    background: rgba(235, 99, 149, 0.2);
    border: 1px solid rgba(235, 99, 149, 0.3);
    border-radius: 8px;
    color: #eb6395;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
}

.copy-btn:hover {
    background: rgba(235, 99, 149, 0.3);
    border-color: #eb6395;
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn i {
    font-size: 16px;
}

.copy-btn.copied {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.copy-feedback {
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    border-radius: 8px;
    color: #4caf50;
    font-weight: 600;
    text-align: center;
    display: none;
    animation: fadeInOut 2s ease;
    font-family: 'Courier New', monospace;
}

.copy-feedback.show {
    display: block;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Responsive adjustments for crypto section */
@media (max-width: 768px) {
    .crypto-item {
        padding: 12px 15px;
        gap: 12px;
    }

    .crypto-icon {
        font-size: 24px;
        min-width: 35px;
    }

    .crypto-icon img {
        width: 24px;
        height: 24px;
    }

    .crypto-name {
        font-size: 13px;
    }

    .crypto-address {
        font-size: 11px;
    }

    .copy-btn {
        min-width: 40px;
        height: 40px;
        padding: 8px 12px;
    }
}

.form-group {
    margin-bottom: 20px;
}

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

.url-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(235, 99, 149, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.url-input:focus {
    outline: none;
    border-color: #eb6395;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(235, 99, 149, 0.3);
}

.url-input::placeholder {
    color: #888888;
}

.download-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #eb6395, #ff8fab);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(235, 99, 149, 0.4);
}

.download-btn:active {
    transform: translateY(0);
}

.download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Features Section */
.features {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(235, 99, 149, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #eb6395;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: inherit;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #eb6395;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(235, 99, 149, 0.2);
    padding: 40px 0 20px;
    margin-top: 80px;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.copyright {
    color: #888888;
    font-size: 14px;
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}

.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #f44336;
}

.duration-label {
    display: inline-block;
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    font-weight: 600;
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    margin-right: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Payment Modal Styles */
.payment-modal {
    background: #1f1e1ef0;
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.payment-modal h3 {
    margin: 0 0 24px;
    color: #eb6395;
    font-size: 22px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(235, 99, 149, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option-btn:hover {
    background: rgba(235, 99, 149, 0.2);
    border-color: #eb6395;
}

.payment-option-btn i {
    font-size: 20px;
    color: #eb6395;
}

/* Card Payment Form Styles */
#cardPaymentModal .processing-modal {
    max-width: 480px;
    width: 90%;
    text-align: left;
}

#cardPaymentModal .form-group {
    margin-bottom: 16px;
}

#cardPaymentModal .form-label,
#cardPaymentModal label {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eb6395;
    font-weight: 600;
}

#cardPaymentModal label i {
    font-size: 16px;
}

#cardPaymentModal .url-input {
    padding: 12px 16px;
    font-size: 15px;
}

#cardPaymentModal .pay-now-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #eb6395, #ff8fab);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

#cardPaymentModal .pay-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(235, 99, 149, 0.4);
}

#cardPaymentModal .pay-now-btn:active {
    transform: translateY(0);
}

#cardPaymentModal .pay-now-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.card-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.card-input-wrapper .url-input {
    padding-right: 50px;
}

.card-icon {
    position: absolute;
    right: 15px;
    width: 32px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-details-row {
    display: flex;
    gap: 20px;
}

.card-details-row .form-group {
    flex: 1;
}

.card-instructions {
    p {
        text-align: left;
    }
    .step-text {
        text-align: left;
    }
}