/* Home Page Specific Styles */

/* Product icon wrapper */
.product-icon-wrapper {
    height: 180px;
    width: 100%;
}

/* Product icon image */
.product-icon {
    filter: drop-shadow(0 0 48px rgba(37,99,235,0.95)) drop-shadow(0 40px 80px rgba(0,0,0,0.55));
}

/* Product description max width */
.product-description {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* Product badge stamp style */
.product-badge-stamp {
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

/* Hero scroll indicator - 100px from bottom with bounce animation */
.hero-scroll-indicator {
    bottom: -90px;
    transform: translateX(-50%);
    animation: bounce-vertical 2s ease-in-out infinite;
}

@keyframes bounce-vertical {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Crypto icon styles */
.crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.crypto-icon.bitcoin {
    background: #f7931a;
}

.crypto-icon.litecoin {
    background: #bfbbbb;
}

.crypto-icon.ethereum {
    background: #627eea;
}

.crypto-icon.solana {
    background: #232323;
    border: 2px solid #232323;
}

/* Modal Overlay and Content - Matching WEBSITE */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.105s ease;
    overflow: hidden;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-overlay.active .modal-content {
    animation: modalSlideIn 0.105s ease-out forwards;
}

.modal-content {
    background: #060606;
    border: 0px solid #111111;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    opacity: 0;
    font-family: 'Outfit', Arial, sans-serif;
}

@keyframes modalSlideIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Payment Screen Styles */
.payment-screen {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.payment-instructions h3 {
    color: #fff;
    font-size: 1.9rem;
    font-weight: 900;
    text-align: left;
    margin: 0;
    line-height: 1.2;
}

.payment-details {
    display: flex;
    flex-direction: column;
    
    margin-top: 50px;
}

.payment-amount,
.payment-address {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-amount label,
.payment-address label {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

.amount-value {
    background: #000;
    border: 1px solid #111111;
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    font-family: monospace;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 2rem;
    min-height: 24px;
}

.address-value {
    background: #000;
    border: 1px solid #111111;
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-size: 0.8rem;
    font-family: monospace;
    word-break: break-all;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 2rem;
    min-height: 24px;
}

.payment-id-inline {
    color: #939393;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: -5px;
}

.copy-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    z-index: 10;
}

.copy-icon:hover {
    opacity: 1;
}

.copy-icon-small {
    width: 14px;
    height: 13px;
    opacity: 0.6;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.copy-icon-small:hover {
    opacity: 1;
}

.payment-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 2rem;
}

.payment-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.step-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    transition: all 0.3s ease;
}

.payment-step.active .step-icon {
    border-color: #06b6d4;
}

.payment-step.active .step-circle {
    background: #06b6d4;
    animation: pulse 1.5s ease-in-out infinite;
}

.payment-step.completed .step-icon {
    border-color: #06b6d4;
}

.payment-step.completed .step-circle {
    background: #fff;
}

/* Remove the old ::after checkmark, we use SVG now */
.payment-step.completed .step-icon::after {
    display: none;
}

/* Permanent glow effect for completed checkmarks */
.payment-step.completed .step-icon svg {
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.8)) 
            drop-shadow(0 0 12px rgba(6, 182, 212, 0.6))
            drop-shadow(0 0 16px rgba(6, 182, 212, 0.4));
    animation: checkmarkGlow 2s ease-in-out infinite;
}

@keyframes checkmarkGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.8)) 
                drop-shadow(0 0 12px rgba(6, 182, 212, 0.6))
                drop-shadow(0 0 16px rgba(6, 182, 212, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(6, 182, 212, 1)) 
                drop-shadow(0 0 18px rgba(6, 182, 212, 0.8))
                drop-shadow(0 0 24px rgba(6, 182, 212, 0.6));
    }
}

.step-label {
    color: #b0b0b0;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.payment-step.active .step-label,
.payment-step.completed .step-label {
    color: #06b6d4;
}

.payment-line {
    flex: 1;
    height: 2px;
    background: #333;
    margin: 0 1rem;
    position: relative;
    top: -20px;
    transition: background 0.3s ease;
}

.payment-line.active,
.payment-line.completed {
    background: #06b6d4;
}

.instruction-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.instruction-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}



.timer-circle {
    position: relative;
    width: 125px;
    height: 125px;
    flex-shrink: 0;
    margin-top: -5px;
}

.timer-svg {
    width: 100%;
    height: 100%;
}

.timer-bg {
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
}

.timer-overlay {
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
}

.timer-progress {
    stroke-dasharray: 0 283; 
    stroke-dashoffset: 0; 
    transition: stroke-dasharray 1s linear;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #06b6d4;
    text-align: center;
    line-height: 1;
}

.timer-text span {
    display: inline-block;
    min-width: 20px;
}

.modal-header {
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
}

.modal-header-buttons {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 100;
}

.modal-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', Arial, sans-serif;
}

.modal-header p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Outfit', Arial, sans-serif;
}

.modal-close {
    background: #111111;    
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 0;
    padding: 0;
    z-index: 101;
    box-sizing: border-box;
    order: 2;
}

/* Ensure payment modal close button doesn't use absolute positioning */
#paymentModal .modal-close {
    position: static;
}

.modal-minimize {
    background: #111111;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 101;
    margin: 0 0.75rem 0 0;
    padding: 0;
    box-sizing: border-box;
    order: 1;
}

.modal-minimize svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
}

.modal-minimize:hover {
    background: #06b6d4;
}

.modal-close:hover {
    background: #06b6d4;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-form label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Outfit', Arial, sans-serif;
}

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

.input-container i,
.input-container svg {
    position: absolute;
    left: 12px;
    color: #666;
    font-size: 1rem;
    z-index: 1;
    pointer-events: none;
}

.input-container:has(textarea) svg {
    display: none;
}

.modal-form input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Outfit', Arial, sans-serif;
}

.modal-form input:focus {
    border-color: #06b6d4;
}

.modal-form input::placeholder {
    color: #666;
}

.payment-method-selector {
    display: flex;
    background: #000;
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
}

.payment-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Outfit', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-tab.active {
    background: #111111;
    color: #fff;
}

.payment-tab:hover:not(.active) {
    color: #fff;
}

.crypto-options {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.crypto-card {
    flex: 1;
    background: #000;
    border: 1px solid #111111;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.crypto-card:hover {
    border-color: #555;
}

.crypto-card.active {
    border-color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

.crypto-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.crypto-card.disabled:hover {
    border-color: #111111;
}

.crypto-name {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Outfit', Arial, sans-serif;
}

.fiat-options {
    padding: 2rem;
    text-align: center;
}

.unavailable-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-family: 'Outfit', Arial, sans-serif;
}

.unavailable-container i {
    font-size: 2rem;
    color: #06b6d4;
}

.unavailable-container p {
    margin: 0;
    font-size: 1rem;
}

.purchase-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #06b6d4 0%, #0284c7 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
    font-family: 'Outfit', Arial, sans-serif;
}

.purchase-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.purchase-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 5px #06b6d4, 0 0 10px #06b6d4, 0 0 15px #06b6d4;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px #06b6d4, 0 0 25px #06b6d4, 0 0 35px #06b6d4;
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 5px #06b6d4, 0 0 10px #06b6d4, 0 0 15px #06b6d4;
        transform: scale(1);
    }
}

/* Completion state styles */
.completion-checkmark {
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.8)) 
            drop-shadow(0 0 12px rgba(6, 182, 212, 0.6))
            drop-shadow(0 0 16px rgba(6, 182, 212, 0.4));
    animation: checkmarkGlow 2s ease-in-out infinite;
}

@keyframes checkmarkGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.8)) 
                drop-shadow(0 0 12px rgba(6, 182, 212, 0.6))
                drop-shadow(0 0 16px rgba(6, 182, 212, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(6, 182, 212, 1)) 
                drop-shadow(0 0 18px rgba(6, 182, 212, 0.8))
                drop-shadow(0 0 24px rgba(6, 182, 212, 0.6));
    }
}

.completion-text-block {
    width: 100%;
    padding: 1rem;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 100px;
    font-family: monospace;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.completion-text-block p {
    margin: 0;
    color: #666;
}

.completion-discord-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 2px solid #06b6d4;
    background: transparent;
    border-radius: 12px;
    font-family: 'Outfit', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #06b6d4;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
    cursor: pointer;
}

.completion-discord-btn:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
    transform: scale(1.02);
}

.payment-order-id {
    margin-top: 0;
    
}

.order-id-value {
    background: #000;
    border: 1px solid #111111;
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    font-size: 0.9rem;
    font-family: monospace;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 2rem;
    min-height: 24px;
    word-break: break-all;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .instruction-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .countdown-timer {
        margin-left: 0;
        align-self: center;
    }
    
    .timer-circle {
        width: 50px;
        height: 50px;
    }
    
    .timer-text {
        font-size: 10px;
    }
    
    .crypto-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .crypto-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.75rem;
    }
    
    .crypto-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .payment-progress {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-line {
        width: 2px;
        height: 40px;
        margin: 0;
        top: 0;
    }
    
    .payment-step {
        flex-direction: row;
        gap: 1rem;
    }
    
    .step-label {
        text-align: left;
    }
}

/* Feature Cards Styling (matching WEBSITE but with blue theme) */
.features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .features-cards {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.7));
    border-radius: 12px;
    
    padding: 1.7rem 1.7rem 1.7rem 1.7rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(56, 189, 248, 0.18);
    transition: all 0.38s cubic-bezier(.4,1.2,.6,1), box-shadow 0.2s, border 0.2s, background 0.2s, transform 0.38s cubic-bezier(.4,1.2,.6,1);
    margin-left: 0;
    margin-right: 0;
    min-height: 180px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: left;
    backdrop-filter: blur(0.5px);
    cursor: default;
}

.feature-card:hover,
.feature-card:focus {
    border: 1px solid rgba(56, 189, 248, 0.28);
    
    transform: translateY(-6px);
}


.feature-icon-box {
    width: 57px;
    height: 57px;
    border-radius: 8px;
    background: rgba(6, 182, 212, 0.15);
    border: 1.5px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 2px 16px 0 rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    margin-top: 0.2rem;
    backdrop-filter: blur(10px);
}

.feature-icon-box svg {
    stroke: #06b6d4;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6)) drop-shadow(0 0 12px rgba(6, 182, 212, 0.4));
}

.feature-icon-box svg path[fill] {
    fill: #06b6d4;
}

.feature-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    text-align: left;
    font-family: 'Outfit', Arial, sans-serif;
}

.feature-card-description {
    color: #b0b0b0;
    font-size: 0.875rem;
    margin: 0;
    text-align: left;
    line-height: 1.5;
    opacity: 0.85;
    padding: 0 0.9rem 0 0;
    font-family: 'Outfit', Arial, sans-serif;
    flex-grow: 1;
}

/* FAQ Answer Panel Smooth Transitions - Matching WEBSITE */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4,1.2,.6,1), padding-top 0.35s cubic-bezier(.4,1.2,.6,1), padding-bottom 0.35s cubic-bezier(.4,1.2,.6,1);
}

.faq-answer p {
    max-width: 87ch;
}

/* FAQ Icon Rotation - Matching WEBSITE */
.faq-button svg {
    transition: transform 0.3s;
}

/* Cookie Consent Popup */
#cookieConsent {
    animation: slideUp 0.3s ease-out;
}

#cookieConsent.hidden {
    display: none;
}

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

/* FAQ Filter Pills - Prevent hover on active */
.faq-filter-pill.active:hover {
    background-color: rgba(6, 182, 212, 0.2) !important;
    border-color: rgba(6, 182, 212, 0.3) !important;
}

/* Review Card Slide Up Animation */
@keyframes slideUpFromBottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFromBottom 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

/* Review Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-overlay.active .modal-content {
    animation: modalSlideIn 0.3s ease-out forwards;
}

.modal-content {
    background: #060606;
    border: 0px solid #111111;
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    opacity: 0;
}

#reviewModal .modal-content {
    overflow: hidden;
    max-height: none;
    height: auto;
}

@keyframes modalSlideIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
}

.modal-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #111111;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #06b6d4;
}

.review-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.review-rating-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.review-rating-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.star-rating-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.star-large {
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.star-large:hover {
    color: #06b6d4;
    transform: scale(1.1);
}

.star-large.star-filled {
    color: #06b6d4;
}

.star-large.star-empty {
    color: #666;
}

#reviewStep2 {
    align-items: flex-start;
    padding-top: 2rem;
}

#reviewStep2 .modal-header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

#reviewStep2 .modal-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-form label {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.input-container svg {
    position: absolute;
    left: 12px;
    color: #666;
    font-size: 1rem;
    z-index: 1;
    pointer-events: none;
}

.input-container:has(textarea) svg {
    display: none;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 12px 12px 12px 40px;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.modal-form textarea {
    padding: 12px;
    resize: vertical;
}

.modal-form input:focus,
.modal-form textarea:focus {
    border-color: #06b6d4;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
    color: #666;
}

.purchase-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.purchase-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.purchase-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.review-step-success {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.review-success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.success-icon {
    margin-bottom: 1rem;
}

.success-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.success-message {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.review-step-error {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.review-error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.error-icon {
    margin-bottom: 1rem;
}

.error-title {
    color: #ef4444;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.error-message {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
}

.purchase-btn-error {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.purchase-btn-error:hover {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Footer Styles */
.footer-section {
    width: 100%;
    padding: 0px 0px 8px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 0rem 1.5rem 0rem;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: nowrap;
}

.footer-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: 0;
    flex-shrink: 1;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 60px;
    height: auto;
}

.footer-site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    vertical-align: middle;
}

.footer-description {
    color: #e0e0e0;
    font-size: 1.05rem;
    font-family: 'Outfit', Arial, sans-serif;
    opacity: 0.5;
    max-width: 500px;
}

.footer-disclaimer {
    font-size: 0.98rem;
    margin: 0.5rem 0 0 0;
    font-family: 'Outfit', Arial, sans-serif;
    opacity: 0.85;
    background: linear-gradient(90deg, #06b6d4 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.7rem;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
    opacity: 0.7;
}

.footer-social-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.footer-social-btn:hover {
    opacity: 1;
}

.footer-social-btn:hover svg {
    transform: scale(1.04);
}

.footer-social-btn[aria-label="Discord"]:hover svg path {
    fill: url(#footer-social-gradient-discord);
}

.footer-social-btn[aria-label="YouTube"]:hover svg path {
    fill: url(#footer-social-gradient-youtube);
}

.footer-links-container {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    flex: 0 1 auto;
    align-items: flex-start;
}

.footer-right, .footer-policies {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    min-width: 0;
}

.footer-right {
    max-width: 120px;
}

.footer-policies {
    max-width: 140px;
}

.footer-links-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    font-family: 'Outfit', Arial, sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.05rem;
    font-family: 'Outfit', Arial, sans-serif;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li a:hover {
    color: #06b6d4;
}

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin: 1.2rem auto 0 auto;
    text-align: left;
    color: #b0b0b0;
    font-size: 1rem;
    border-top: 1px solid #232232;
    padding: 1.2rem 1rem 0.5rem 1rem;
    font-family: 'Outfit', Arial, sans-serif;
}

/* Payment Pill (Minimized State) */
.payment-pill {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    transition: all 0.3s ease;
    animation: pillSlideUp 0.3s ease-out;
}

.payment-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.6);
}

.payment-pill.active {
    display: block;
}

.payment-pill-content {
    display: flex;
    align-items: center;
}

.payment-pill-text {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Outfit', Arial, sans-serif;
}

@keyframes pillSlideUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Minimized modal state */
.modal-overlay.minimized {
    display: none;
}

.modal-overlay.minimized .modal-content {
    display: none;
}
