:root {
    --primary: #10b981;
    /* Emerald 500 */
    --primary-hover: #059669;
    /* Emerald 600 */
    --bg: #111827;
    /* Gray 900 */
    --card-bg: #1f2937;
    /* Gray 800 */
    --text: #f3f4f6;
    /* Gray 100 */
    --text-muted: #9ca3af;
    /* Gray 400 */
    --danger: #ef4444;
    --success: #10b981;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.text-center {
    text-align: center !important;
}



h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #34d399, #6ee7b7);
    /* Emerald gradients */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Pricing Grid */


.pricing-card {
    background-color: var(--card-bg);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
}

.pricing-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 800;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #34d399;
    /* Emerald 400 */
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
}

.price span {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

li i,
li svg {
    color: #10b981 !important;
    margin-right: 1rem;
    margin-top: 0.2rem;
    padding-right: 0.5rem;
    width: 25px;
    text-align: center;
    fill: #10b981 !important;
    /* Ensure fill is also set for SVG */
}

/* Buttons */
.btn-buy {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    font-size: 1rem;
    padding: 1rem 1.5rem;
}

.btn-buy:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
}

.btn-download {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--primary);
    transition: background 0.2s;
    text-align: center;
}

.btn-download:hover {
    background: rgba(16, 185, 129, 0.1);
}

/* Footer */
footer {
    background: #1f2937;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    margin-top: 5rem;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Page Content (T&C, Refund) */
.page-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 1rem;
    text-align: left;
    max-width: 800px;
    margin: 2rem auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-content h1,
.page-content h2,
.page-content h3 {
    color: #818cf8;
    margin-top: 2rem;
}

.page-content p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.page-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.page-content li {
    display: list-item;
    margin-bottom: 0.5rem;
}

.page-content li i {
    display: none;
}

/* Refund Page */
.container-refund {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 2rem auto;
}

.upload-area {
    border: 2px dashed #475569;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
    transition: border-color 0.2s;
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--primary);
}

.file-input {
    display: none;
}

.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: left;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: #6ee7b7;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: #fca5a5;
}

.details-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: left;
}

.hwid-cmd-container {
    position: relative;
    margin-top: 0.5rem;
}

.hwid-cmd {
    background: #000;
    color: #10b981;
    padding: 0.75rem;
    border-radius: 0.25rem;
    font-family: 'Consolas', 'Monaco', monospace;
    display: block;
    word-break: break-all;
    padding-right: 45px;
    font-size: 0.8rem;
}

.copy-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #334155;
    color: #94a3b8;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
}

/* Checkout & Generic Forms */
.form-container {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    margin: 2rem auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}





.btn-pay {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.1rem;
}

.btn-pay:hover {
    background: var(--primary-hover);
}

.btn-paypal {
    background: #ffc439;
    color: #111;
}

.btn-paypal:hover {
    background: #f4b400;
}

.refund-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
    background: rgba(239, 68, 68, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--danger);
}

/* Download Sections */
.download-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.download-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.download-info {
    text-align: left;
}

.download-info h3 {
    margin: 0;
    color: #818cf8;
    font-size: 1.1rem;
}

.download-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Download Page Specific */
.card-download {
    background-color: var(--card-bg);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem auto;
}

.license-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(192, 132, 252, 0.1));
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
    margin-bottom: 2rem;
}

.license-box h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}