:root {
    /* Dark theme (default) */
    --primary-color: #64b5f6;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --bg-dark: #1a1a1a;
    --bg-darker: #1e1e1e;
    --bg-darkest: #2c2c2c;
    --text-light: #e0e0e0;
    --text-lighter: #b0bec5;
    --border-color: #444;
    --border-light: rgba(255, 255, 255, 0.1);
    --card-dark: #2a2a2a;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] {
    --primary-color: #2196f3;
    --success-color: #2e7d32;
    --danger-color: #c62828;
    --warning-color: #f57c00;
    --info-color: #1565c0;
    --bg-dark: #f5f5f5;
    --bg-darker: #e0e0e0;
    --bg-darkest: #ffffff;
    --text-light: #212121;
    --text-lighter: #424242;
    --border-color: #bdbdbd;
    --border-light: rgba(0, 0, 0, 0.1);
    --card-dark: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Roboto Mono', monospace;
    min-height: 100vh;
    opacity: 1;
    transition: opacity 0.6s ease, background-color 0.3s ease, color 0.3s ease;
    position: relative;
    margin: 0;
    padding: 0;
}

body.loaded {
    opacity: 1;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.3;
}

[data-theme="light"] .background-pattern {
    background: radial-gradient(circle, rgba(25, 118, 210, 0.05) 1px, transparent 1px);
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    text-decoration: none;
}

nav {
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    margin-right: auto;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 0.6s ease-out;
    margin-top: -80px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-lighter);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto Mono', monospace;
}

.primary-button {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.primary-button:hover, .secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4);
}

section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 100px;
}

.step {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4);
}

footer {
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    border-top: 1px solid var(--border-light);
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section a {
    color: var(--text-lighter);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-lighter);
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: color 0.3s ease, transform 0.2s ease;
    margin-left: 1rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.theme-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.moon-icon {
    display: none;
}

[data-theme="light"] .sun-icon {
    display: none;
}

[data-theme="light"] .moon-icon {
    display: block;
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

[data-theme="light"] .logo-text {
    color: #2196f3;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
}

[data-theme="light"] h1 {
    color: #2196f3;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.3);
}

[data-theme="light"] h2 {
    color: #2196f3;
}

[data-theme="light"] .feature-icon {
    color: #2196f3;
}

[data-theme="light"] .primary-button {
    background: #2196f3;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

[data-theme="light"] .primary-button:hover {
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

[data-theme="light"] .step-number {
    background: #2196f3;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

[data-theme="light"] .step-number:hover {
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

[data-theme="light"] .footer-section h4 {
    color: #2196f3;
}

[data-theme="light"] .nav-links a:hover {
    color: #2196f3;
}

[data-theme="light"] .nav-links a::after {
    background: #2196f3;
}

[data-theme="light"] .theme-toggle:hover {
    color: #2196f3;
}

/* Tools Grid Styles */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
    margin-top: -100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

h3 {
    color: var(--primary-color);
}

.tool-card {
    background: var(--card-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    text-decoration: none;
    color: var(--text-light);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--text-light);
}

.tool-card h3 {
    color: var(--text-light);
}

.tool-card p {
    color: var(--text-light);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tool-card .page-tools-card h2 {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0;
    font-size: 1.5rem;
}

.tool-card .page-tools-card p {
    color: var(--text-lighter);
    margin: 0;
    text-decoration: none;
    line-height: 1.5;
    flex-grow: 1;
}

.tool-card .primary-button,
.tool-card .secondary-button {
    margin-top: 1rem;
    width: 100%;
    max-width: 200px;
}

.tool-card .secondary-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .tool-card .page-tools-card {
        padding: 1.5rem;
    }
}
.page-tools-card {
    background: var(--card-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    position: relative;
    margin-bottom: 300px;
    text-decoration: none;
    color: inherit;
}
.page-tools-card:hover {
    text-decoration: none;
    color: inherit;
}
.page-tools-footer { 
    text-align: center;
    padding: 18px;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    border-top: 1px solid var(--border-light);
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
}
.tools-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.tools-footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tools-footer-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.tools-footer-text {
    color: var(--text-lighter);
    margin: 0;
}

.tools-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    margin-top: 20px;
}

.tools-copyright {
    color: var(--text-lighter);
    margin: 0;
    font-size: 0.9rem;
}

/* Landing Page Footer Styles */
.landing-footer {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    border-top: 1px solid var(--border-light);
    margin-top: 4rem;
}

.docs-section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
    min-height: 100vh;
    position: relative;
    padding-bottom: 0;
    font-weight: 500;
}
.docs-section h1{
    text-align: center;
    text-decoration: underline;
    font-size: 3.5rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
}
.docs-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 0;
    font-weight: 800;
}

.docs-entry {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.docs-entry h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Add specific style for the "What's New" heading */
.docs-entry h2:first-of-type {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
}

.docs-entry ul {
    list-style-type: none;
    padding: 0;
}

.docs-entry li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.docs-entry li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .docs-section {
        padding: 1rem;
    }
    
    .docs-entry {
        padding: 1rem;
    }
}

.landing-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.landing-footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.landing-footer-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.landing-footer-text {
    color: var(--text-lighter);
    margin: 0;
}

.landing-footer-link {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-footer-link:hover {
    color: var(--primary-color);
}

.landing-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    margin-top: 20px;
}

.landing-copyright {
    color: var(--text-lighter);
    margin: 0;
    font-size: 0.9rem;
}

/* Documentation/Changelog Styles */
.docs-section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
    min-height: 100vh;
    position: relative;
    padding-bottom: 0;
}

.docs-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 0;
}

.docs-entry {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.docs-entry h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.docs-entry ul {
    list-style-type: none;
    padding: 0;
}

.docs-entry li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.docs-entry li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .docs-section {
        padding: 1rem;
    }
    
    .docs-entry {
        padding: 1rem;
    }
}

/* Changelog Footer Styles */
.changelog-footer { 
    position: relative;
    bottom: auto;
    width: 100%;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    z-index: 10;
    padding: 1rem 0;
    margin-top: 2rem;
}

.changelog-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.changelog-footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.changelog-footer-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.changelog-footer-text {
    color: var(--text-lighter);
    margin: 0;
}

.changelog-footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    margin-top: 20px;
}

.changelog-copyright {
    color: var(--text-lighter);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: var(--text-color);
}

.contact-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.contact-info li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.contact-info li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-form {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--input-bg);
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-hover);
}

/* Contact Footer Styles */
.contact-footer {
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    color: var(--text-light);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-light);
    position: relative;
    width: 100%;
}

.contact-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-footer-section {
    text-align: left;
}

.contact-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-footer-text {
    margin-bottom: 1rem;
    color: var(--text-lighter);
}

.contact-footer-link {
    display: block;
    color: var(--text-lighter);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-footer-link:hover {
    color: var(--primary-color);
}

.contact-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.contact-copyright {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-footer-section {
        text-align: center;
    }
}

/* Legal Page Styles */
.legal-section {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 100px;
    padding: 2rem;
    color: var(--text-light);
}

.legal-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.legal-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

.legal-content {
    background: var(--card-dark);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-lighter);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-left: 1.5rem;
}

.legal-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--text-light);
    padding-left: 1.5rem;
}

.legal-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-lighter);
}

.legal-content li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Legal Footer Styles */
.legal-footer {
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    color: var(--text-light);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-light);
    position: relative;
    width: 100%;
}

.legal-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.legal-footer-section {
    text-align: left;
}

.legal-footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-footer-text {
    margin-bottom: 1rem;
    color: var(--text-lighter);
}

.legal-footer-link {
    display: block;
    color: var(--text-lighter);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.legal-footer-link:hover {
    color: var(--primary-color);
}

.legal-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.legal-copyright {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 1rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .legal-footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .legal-footer-section {
        text-align: center;
    }
}

/* Coming Soon Page Styles */
.coming-soon-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    border-bottom: 1px solid var(--border-light);
}

.coming-soon-content {
    max-width: 800px;
    animation: fadeInUp 0.6s ease-out;
}

.coming-soon-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
    margin-bottom: 1rem;
}

.upcoming-features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.feature-timeline {
    position: relative;
    padding: 2rem 0;
}

.feature-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--card-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0 0;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-lighter);
}

.feature-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.stay-updated {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    border-top: 1px solid var(--border-light);
}

.stay-updated h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stay-updated p {
    color: var(--text-lighter);
    margin-bottom: 2rem;
}

.update-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Coming Soon Footer Styles */
.coming-soon-footer {
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-darkest));
    color: var(--text-light);
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
}

.coming-soon-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.coming-soon-footer-section {
    text-align: center;
}

.coming-soon-footer-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.coming-soon-footer-text {
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

.coming-soon-footer-link {
    display: block;
    color: var(--text-lighter);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.coming-soon-footer-link:hover {
    color: var(--primary-color);
}

.coming-soon-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.coming-soon-copyright {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .coming-soon-hero h1 {
        font-size: 2.5rem;
    }

    .feature-timeline::before {
        left: 0;
    }

    .timeline-item {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-icon {
        margin: 0 0 1rem 0;
    }

    .update-options {
        flex-direction: column;
        align-items: center;
    }

    .update-options .primary-button,
    .update-options .secondary-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Ensure smooth theme transitions */
body, .main-header, .legal-section, .legal-content, .legal-footer,
.about-section, .about-content, .about-footer,
.contact-section, .contact-content, .contact-footer,
.docs-section, .docs-container, .docs-footer,
.changelog-section, .changelog-container, .changelog-footer,
.coming-soon-hero, .coming-soon-content, .coming-soon-footer {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Ensure text colors transition smoothly */
h1, h2, h3, h4, p, a, li, span {
    transition: color 0.3s ease;
}

/* Ensure card backgrounds transition smoothly */
.feature-card, .tool-card, .timeline-item, .page-tools-card {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
} 