/* Common CSS styles for all PHP files */

/* Gradient background used across all pages */
.gradient-bg {
    background: linear-gradient(135deg, #0a1a1f 0%, #1a2f3a 50%, #1e3a4a 100%);
}


/* Text shadow styles for hero sections */
.hero-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Screenshot container hover effects */
.screenshot-container {
    transition: transform 0.3s ease;
}

.screenshot-container:hover {
    transform: translateY(-5px);
}

/* Mobile responsive hero text */
@media (max-width: 640px) {
    .hero-text {
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Form input focus styles */
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
}

/* File upload area styles */
.file-upload-area {
    border: 2px dashed #d1d5db;
    transition: all 0.3s ease;
}

.file-upload-area.dragover {
    border-color: #06b6d4;
    background-color: #f3f4f6;
}

.file-list {
    max-height: 200px;
    overflow-y: auto;
}

/* Contact info card hover effects */
.contact-info-card {
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
}

/* Content styling for privacy and terms pages */
.privacy-content, .terms-content {
    line-height: 1.7;
}

.privacy-content h2, .terms-content h2 {
    color: #0891b2;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content h3, .terms-content h3 {
    color: #0e7490;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-content ul, .privacy-content ol,
.terms-content ul, .terms-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li, .terms-content li {
    margin-bottom: 0.5rem;
}

/* Privacy page specific styles */
#privacy-accept-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    #privacy-accept-btn {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
    }
}