:root {
    --primary-color: #3a86ff;
    --secondary-color: #4d4d4d;
    --success-color: #4bb543;
    --error-color: #ff3333;
    --background-color: #f8fafc;
    --card-background: #ffffff;
    --border-color: #e2e8f0;
    --text-primary: #1a202c;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
    --highlight-color: #ffa500;
    --highlight-alt-color: #3a86ff;
    --cta-color: #ff6b35;
    --cta-hover-color: #ff5722;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    font-family: 'Red Hat Display';
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.checkout-container {
    display: flex;
    background-color: var(--card-background);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 100%;
    max-width: 1350px;
    transform: scale(1.1);
}

.left-side {
    flex: 1;
    padding: 2rem;
    border-right: 1px solid var(--border-color);
}

.right-side {
    flex: 1;
    background-color: #f5f7fa;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.checkout-header {
    margin-bottom: 2rem;
    text-align: center;
    max-width: 500px;
}

.checkout-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--highlight-color);
    font-weight: 800;
}

.highlight-alt {
    color: var(--highlight-alt-color);
    font-weight: 800;
}

.highlight-text {
    font-weight: 600;
    color: var(--highlight-color);
    text-decoration: underline;
}

/* Price box styles */
.price-box {
    background-color: #f8fafc;
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 450px;
}

.pricing-text {
    text-align: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.release-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.current-price {
    font-size: 1.1rem;
    color: #4bb543;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.next-price {
    font-size: 0.9rem;
    color: #ff3333;
    font-weight: 500;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.8;
}

.price-tag {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.price-note {
    font-size: 1rem;
    color: var(--text-secondary);
}

.price-info {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.price-info div span {
    font-weight: 700;
}

.price-info s {
    opacity: 0.8;
}

.price-info div:nth-child(2) {
    color: #4bb543;
    font-weight: 500;
}

.price-info div:nth-child(3) {
    color: #e05252;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta {
    background-color: #09affc;
    color: white;
    font-size: 1.1rem;
    font-weight: 650 !important;
    font-family: 'Inter' !important;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(9, 175, 252, 0.3);
    transition: opacity 0.2s ease;
    cursor: pointer;
    outline: none;
    border: none;
}

.btn-cta:hover {
    opacity: 0.9;
    background-color: #08a0e7;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Payment methods banner */
.payment-methods-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 450px;
}

.payment-methods-banner span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.methods-list {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-align: center;
}

/* Security banner */
.security-banner {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 450px;
}

.security-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.security-item i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.security-item span {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.security-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* What's included section */
.whats-included {
    background-color: white;
    border-radius: var(--radius);
    padding: .5rem;
    width: 100%;
}

.whats-included h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    color: var(--success-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials {
    background-color: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial {
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: gold;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.testimonial p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author span {
    font-weight: 600;
}

.verified {
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: normal;
}

/* Guarantee box styles (renamed to disclaimer) */
.guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #e8f4fd;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px dashed #3a86ff;
}

.guarantee-icon {
    color: #3a86ff;
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #e8f4fd;
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 1.5rem;
    border: 1px dashed #3a86ff;
}

.guarantee-box i {
    color: #3a86ff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-box p {
    font-size: 0.9rem;
    margin: 0;
}

/* Form styles */
.form-section {
    margin-bottom: 2rem;
}

.form-section.hidden {
    display: none;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

input, select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.2);
}

input::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    background-color: var(--cta-color);
    color: white;
    font-weight: 600;
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--cta-hover-color);
}

.btn-secondary {
    background-color: var(--text-primary);
    color: white;
}

.btn-secondary:hover {
    background-color: #2d3748;
}

.form-nav {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Payment options */
.payment-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.payment-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(58, 134, 255, 0.05);
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.payment-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.card-details {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-icons {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.form-group .card-icons {
    position: absolute;
    right: 1rem;
    top: calc(0.5rem + 40px);
}

.form-group {
    position: relative;
}

/* Order summary mini */
.order-summary-mini {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-color: #f8fafc;
}

.order-summary-mini h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Field notes styles */
.field-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--card-background);
    margin: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: scale-up 0.3s ease;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
}

.close-modal {
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.success-animation {
    font-size: 3.5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    animation: scale-up 0.5s ease;
}

.message-animation {
    font-size: 3.5rem;
    color: #09affc;
    margin-bottom: 1.5rem;
    animation: scale-up 0.5s ease;
}

@keyframes scale-up {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.download-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-links .btn {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Message notification styles */
.message {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    z-index: 1001;
    animation: slide-in 0.3s ease;
}

.message.success {
    background-color: var(--success-color);
}

.message.error {
    background-color: var(--error-color);
}

@keyframes slide-in {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .checkout-container {
        flex-direction: column;
    }
    
    .left-side {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .checkout-header h1 {
        font-size: 1.6rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .payment-options {
        flex-direction: column;
    }
    
    .security-banner {
        flex-direction: column;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .btn-cta {
        font-size: 1rem;
    }
}

/* Compatibility box */
.compatibility-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #e8f4fd;
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 1.5rem;
    border: 1px dashed #3a86ff;
}

.compatibility-box i {
    color: #3a86ff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.compatibility-box p {
    font-size: 0.9rem;
    margin: 0;
}

.underline {
    text-decoration: underline;
    font-weight: 700;
}

/* Pricing tiers */
.pricing-tiers {
    margin-bottom: 1.5rem;
    text-align: center;
    background-color: #1a202c;
    border-radius: var(--radius);
    padding: 1rem;
    width: 100%;
    max-width: 450px;
}

.tier-item {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.tier-item.release {
    color: #e2e8f0;
}

.tier-item.current {
    color: #4bb543;
    font-size: 1.25rem;
}

.tier-item.next {
    color: #ff3333;
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.8;
}

/* Price timeline */
.price-timeline {
    background-color: #f8fafc;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 450px;
}

.timeline-header {
    text-align: center;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timeline-item.current {
    font-weight: 600;
    color: var(--text-primary);
}

.timeline-item.current .timeline-price {
    color: #4bb543;
}

.timeline-item:last-child .timeline-price {
    color: #ff3333;
}

@media (min-width: 1200px) {
    .checkout-container {
        transform: scale(1.15);
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .checkout-container {
        transform: scale(1);
        width: 100%;
    }
}

/* Contact modal specific styles */
#contact-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

#contact-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-modal .modal-content {
    background-color: #36393f;
    color: #dcddde;
    border-radius: 8px;
    max-width: 450px;
    width: 90%;
    border: 1px solid #202225;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#contact-modal .modal-header {
    background-color: #2f3136;
    padding: 16px 20px;
    border-bottom: 1px solid #202225;
}

#contact-modal .modal-header h2 {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
}

#contact-modal .close-modal {
    color: #dcddde;
    font-size: 24px;
    transition: color 0.2s;
}

#contact-modal .close-modal:hover {
    color: #ffffff;
    cursor: pointer;
}

#contact-modal .modal-body {
    padding: 24px;
}

#contact-modal .message-animation {
    color: #5865f2;
    font-size: 48px;
    margin-bottom: 20px;
}

#contact-modal .modal-body p {
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 16px;
}

#contact-modal .modal-body p:last-child {
    color: #b9bbbe;
    font-size: 14px;
}

/* Discord handle styling */
.discord-handle {
    background-color: #2f3136;
    padding: 10px 16px;
    border-radius: 4px;
    font-family: 'Consolas', monospace;
    margin: 16px auto;
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #202225;
}

.discord-handle i {
    color: #5865f2;
    margin-right: 8px;
}

/* Message styles */ 