/* Free Trial Button Styles */
.btn-blocked {
    background-color: #da3633 !important;
    color: #ffffff !important;
    border-color: #da3633 !important;
    cursor: not-allowed !important;
}

.btn-loading {
    background-color: #7d8590 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
}

/* Mobile responsive text for free trial button */
@media (max-width: 600px) {
    .form-container h2 {
        text-align: left;
        margin-right: 130px;
    }
    
    #freeTrial {
        font-size: 0;
        min-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    #freeTrial::before {
        content: "Free Trial";
        font-size: 0.85rem;
    }
    
    .btn-blocked::before {
        content: "Disable VPN" !important;
        font-size: 0.8rem !important;
    }
    
    .btn-blocked {
        font-size: 0 !important;
    }
}

@media (max-width: 480px) {
    .form-container h2 {
        font-size: 1.3rem;
        margin-right: 110px;
    }
    
    #freeTrial::before {
        content: "Trial";
        font-size: 0.8rem;
    }
    
    .btn-blocked::before {
        content: "No VPN" !important;
        font-size: 0.75rem !important;
    }
}

/* Free Trial Notifications */
.free-trial-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    max-width: 300px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.free-trial-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.free-trial-notification.info {
    background-color: rgba(31, 111, 235, 0.15);
    color: #58a6ff;
    border: 1px solid rgba(31, 111, 235, 0.4);
}

.free-trial-notification.success {
    background-color: rgba(63, 185, 80, 0.15);
    color: #3fb950;
    border: 1px solid rgba(63, 185, 80, 0.4);
}

.free-trial-notification.warning {
    background-color: rgba(255, 191, 0, 0.15);
    color: #ffbf00;
    border: 1px solid rgba(255, 191, 0, 0.4);
}

.free-trial-notification.error {
    background-color: rgba(248, 81, 73, 0.15);
    color: #f85149;
    border: 1px solid rgba(248, 81, 73, 0.4);
}

/* Cookie Consent Modal Specific Styles */
.cookie-consent-details {
    background-color: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.cookie-consent-details h4 {
    color: #f0f6fc;
    margin-bottom: 0.5rem;
}

.cookie-consent-details ul {
    list-style: none;
    padding-left: 0;
}

.cookie-consent-details li {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Trial Key Display Modal */
.success-message {
    color: #3fb950;
    font-weight: 500;
}

.key-display-container {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.key-display-container input {
    flex: 1;
    padding: 0.75rem;
    background-color: #0d1117;
    border: 1px solid #30363d;
    border-radius: 6px;
    color: #e6edf3;
    font-family: monospace;
}

.key-note {
    font-size: 0.875rem;
    color: #7d8590;
    font-style: italic;
}

.email-validation {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    min-height: 1.2rem;
}

.email-validation.valid {
    color: #3fb950;
}

.email-validation.invalid {
    color: #f85149;
}

/* Mobile Responsive Notifications */
@media (max-width: 480px) {
    .free-trial-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
