* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.logo svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.logo-text h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text .creator {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
    display: block;
    margin-top: -5px;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.4;
}



.upload-section {
    margin-bottom: 30px;
}

.drop-zone {
    border: 3px dashed #fff;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: #4CAF50;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.drop-content h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
}

.drop-content p {
    margin: 5px 0;
    opacity: 0.8;
}

.upload-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: block;
}

.controls {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.pdf-options {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pdf-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.pdf-options select,
.pdf-options input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.pdf-options input[type="text"] {
    min-width: 200px;
    flex: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e9ecef;
    color: #495057;
}

.progress-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.preview-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preview-section h3 {
    margin-bottom: 20px;
    color: #333;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.image-preview {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview .image-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .logo {
        flex-direction: column;
        gap: 10px;
    }

    .logo svg {
        width: 48px;
        height: 48px;
    }

    .logo-text h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1rem;
        padding: 0 10px;
    }

    .pdf-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .file-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* Le
gal Pages Styles */
.legal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content h2 {
    color: #333;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.legal-content h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-section {
    margin-bottom: 25px;
}

.legal-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-info p {
    margin-bottom: 10px;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

.back-to-home {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 25px 20px;
        margin: 15px;
    }

    .legal-content h2 {
        font-size: 1.8rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* 
Footer Styles */
.site-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.footer-info p {
    margin: 5px 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        text-align: center;
    }

    .footer-links a {
        margin: 0;
        display: block;
        padding: 10px 8px;
        font-size: 0.9rem;
    }

    .footer-info p {
        font-size: 0.8rem;
    }
}

/* About Page Styles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.feature-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.steps-container {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* FAQ Styles */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.faq-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
}

.faq-item h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsiveness for New Pages */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        padding: 15px;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .faq-item {
        padding: 15px;
    }
}

/* SEO Cont
ent Styles */
.seo-content {
    background: white;
    margin-top: 40px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seo-section {
    margin-bottom: 35px;
}

.seo-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.seo-section h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.seo-section h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.seo-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.format-list {
    list-style: none;
    padding: 0;
}

.format-list li {
    background: #f8f9fa;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 4px solid #667eea;
}

.format-list strong {
    color: #667eea;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.benefit-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.benefit-item h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.benefit-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.steps-list {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.steps-list li {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #555;
}

.steps-list strong {
    color: #667eea;
}

.faq-quick {
    margin-top: 20px;
}

.faq-item-quick {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.faq-item-quick h4 {
    color: #333;
    margin-bottom: 8px;
}

.faq-item-quick p {
    margin: 0;
    color: #555;
}

/* Mobile Responsiveness for SEO Content */
@media (max-width: 768px) {
    .seo-content {
        padding: 25px 20px;
        margin: 20px 15px 0;
    }

    .seo-section h2 {
        font-size: 1.6rem;
    }

    .seo-section h3 {
        font-size: 1.3rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-item {
        padding: 15px;
    }

    .steps-list {
        padding: 20px;
    }
}

/* Su
pport Section Styles */
.support-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.support-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.support-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-buttons {
    margin: 25px 0;
}

.patreon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff424d;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 66, 77, 0.3);
}

.patreon-btn:hover {
    background: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 66, 77, 0.4);
    text-decoration: none;
    color: white;
}

.patreon-btn svg {
    width: 20px;
    height: 20px;
}

.support-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    margin-top: 15px;
}

/* Mobile Support Section */
@media (max-width: 768px) {
    .support-section {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .support-section h3 {
        font-size: 1.4rem;
    }

    .patreon-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .support-content p {
        font-size: 0.9rem;
    }
}

/* Top Supp
ort Button */
.top-support {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.top-patreon-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff424d;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 66, 77, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.top-patreon-btn:hover {
    background: #e63946;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 66, 77, 0.4);
    text-decoration: none;
    color: white;
    scale: 1.05;
}

.top-patreon-btn svg {
    width: 16px;
    height: 16px;
}

/* Pulse animation for attention */
.top-patreon-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 66, 77, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 66, 77, 0.5);
    }

    100% {
        box-shadow: 0 4px 15px rgba(255, 66, 77, 0.3);
    }
}

/* Mobile Top Support Button */
@media (max-width: 768px) {
    .top-support {
        top: 15px;
        right: 15px;
    }

    .top-patreon-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .top-patreon-btn svg {
        width: 14px;
        height: 14px;
    }
}