/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    border-right: 2px solid #4d4d4d;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.sidebar-header {
    padding: 2rem;
    border-bottom: 1px solid #000000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-accent {
    color: #000000;
    font-weight: 300;
}

.sidebar-nav {
    flex: 1;
    padding: 2rem 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #000000;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.nav-item:hover {
    background: #f8f8f8;
    color: #000000;
    border-left-color: #000000;
}

.nav-item.active {
    background: #000000;
    color: #ffffff;
    border-left-color: #000000;
}

.nav-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.nav-text {
    font-weight: 400;
    font-size: 0.9rem;
}

.sidebar-footer {
    padding: 1.5rem 1rem;
    border-top: 1px solid #000000;
}

.sidebar-footer p {
    color: #000000;
    font-size: .9rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

.legal-links a {
    color: #666666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-links a:hover {
    color: #000000;
}

/* Main Container */
.main-container {
    margin-left: 280px;
    min-height: 100vh;
    background: #ffffff;
}

/* Header */
.main-header {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    background: #000000;
    border-bottom: 2px solid #000000;
}

.header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-subtitle {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 300;
    font-style: italic;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    border-radius: 0;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    border-radius: 50%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    border-radius: 0;
    transform: rotate(45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Generator Section */
.generator-section {
    padding: 2rem;
}

.generator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Input Panel */
.input-panel {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    height: fit-content;
}

.panel-header {
    margin-bottom: 2rem;
    text-align: center;
}

.panel-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.panel-header p {
    color: #666666;
    font-style: italic;
    font-weight: 300;
    font-size: 0.9rem;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-label {
    font-weight: 400;
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.prompt-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #000000;
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    color: #000000;
    background: #ffffff;
    resize: vertical;
    min-height: 120px;
    transition: all 0.2s ease;
}

.prompt-textarea:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #000000;
}

.prompt-textarea::placeholder {
    color: #999999;
    font-style: italic;
}

/* Style Selector */
.style-selector {
    display: flex;
    flex-direction: column;
}

.style-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.style-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #000000;
    background: #ffffff;
    color: #000000;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.style-btn:hover {
    background: #f8f8f8;
}

.style-btn.active {
    background: #000000;
    color: #ffffff;
}

/* Generate Button */
.generate-button {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    min-height: 58px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.generate-button:hover {
    background: #333333;
    transform: none;
}

.generate-button:active {
    background: #000000;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon {
    font-size: 1.2rem;
}

.loading-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-dots {
    display: flex;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Message Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Output Panel */
.output-panel {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
}

.canvas-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-display {
    width: 100%;
    min-height: 400px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border: 1px solid #000000;
}

.canvas-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.placeholder-content {
    text-align: center;
    color: #666666;
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    opacity: 0.6;
    stroke: #666666;
}

.placeholder-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.placeholder-content p {
    font-style: italic;
    color: #666666;
    font-size: 0.9rem;
    font-weight: 300;
}

.generated-artwork {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.generated-artwork:hover {
    transform: none;
}

/* Image Actions */
.image-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #000000;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.action-btn.primary {
    background: #000000;
    color: #ffffff;
}

.action-btn.primary:hover {
    background: #333333;
    transform: none;
}

.action-btn.secondary {
    background: #ffffff;
    color: #000000;
}

.action-btn.secondary:hover {
    background: #f8f8f8;
    transform: none;
}

/* Inspiration Section */
.inspiration-section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8f8f8;
    border-top: 2px solid #000000;
}

.inspiration-header {
    text-align: center;
    margin-bottom: 2rem;
}

.inspiration-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.inspiration-header p {
    color: #666666;
    font-style: italic;
    font-weight: 300;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.inspiration-card {
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 0;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-right: none;
    border-bottom: none;
}

.inspiration-card:nth-child(4n) {
    border-right: 1px solid #000000;
}

.inspiration-card:nth-last-child(-n+4) {
    border-bottom: 1px solid #000000;
}

.inspiration-card:hover {
    background: #f8f8f8;
    transform: none;
}

.card-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content p {
    color: #666666;
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }

    .main-container {
        margin-left: 240px;
    }

    .generator-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 280px;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-container {
        margin-left: 0;
    }

    .main-header {
        padding: 2rem 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .generator-section {
        padding: 1rem;
    }

    .input-panel,
    .output-panel {
        padding: 1.5rem;
        border: 1px solid #000000;
    }

    .inspiration-section {
        padding: 2rem 1rem;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .inspiration-card {
        border-right: 1px solid #000000;
        border-bottom: 1px solid #000000;
    }
}

@media (max-width: 480px) {
    .sidebar-header {
        padding: 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-item {
        padding: 0.75rem 1.5rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .input-panel,
    .output-panel {
        padding: 1rem;
        border: 1px solid #000000;
    }

    .panel-header h3 {
        font-size: 1.3rem;
    }

    .prompt-textarea {
        min-height: 100px;
        font-size: 0.9rem;
    }

    .style-options {
        gap: 0.25rem;
    }

    .style-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .generate-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }

    .image-display {
        min-height: 300px;
    }

    .canvas-placeholder {
        min-height: 300px;
    }

    .placeholder-icon {
        width: 50px;
        height: 50px;
    }

    .placeholder-content h4 {
        font-size: 1rem;
    }

    .image-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .action-btn {
        justify-content: center;
    }

    .inspiration-header h3 {
        font-size: 1.5rem;
    }

    .inspiration-card {
        padding: 1rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #f8f8f8;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #000000;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Sidebar Close Button */
.sidebar-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #000000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background: #f8f8f8;
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        width: 100vw;
        z-index: 1003;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close {
        display: flex;
    }

    .main-container {
        margin-left: 0;
    }
}

/* Generator Section */
.generator {
    padding: 6rem 0;
    background: #ffffff;
}

.generator-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 4rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: none;
}

.input-section {
    margin-bottom: 3rem;
}

.input-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.prompt-input {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #000000;
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.2s ease;
    background: #ffffff;
    min-height: 140px;
    color: #000000;
}

.prompt-input:focus {
    outline: none;
    border-color: #000000;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #000000;
}

.prompt-input::placeholder {
    color: #666666;
    font-style: italic;
}

.generate-btn {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.generate-btn:hover {
    background: #333333;
    transform: none;
}

.generate-btn:active {
    background: #000000;
}

.generate-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.output-section {
    margin-top: 3rem;
}

.image-container {
    width: 100%;
    min-height: 500px;
    border: 1px solid #000000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.image-container.has-image {
    border: 1px solid #000000;
    background: #ffffff;
}

.placeholder {
    text-align: center;
    color: #666666;
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.6;
    stroke: #666666;
}

.placeholder p {
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.generated-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.generated-image:hover {
    transform: none;
}

.download-section {
    margin-top: 2rem;
    text-align: center;
}

.download-btn {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 0.8rem 2rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.download-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8f8f8;
    border-top: 1px solid #000000;
}

.features-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    margin-top: 3rem;
}

.feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border: 1px solid #000000;
    text-align: center;
    box-shadow: none;
    transition: none;
    border-right: none;
}

.feature-card:last-child {
    border-right: 1px solid #000000;
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
    background: #f8f8f8;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 2rem;
    display: block;
    color: #000000;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-card p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 1px solid #000000;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    font-weight: 300;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .generator-card {
        padding: 3rem 2rem;
        margin: 0 15px;
        border: 1px solid #000000;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-card {
        padding: 2.5rem 2rem;
        border-right: 1px solid #000000;
        border-bottom: none;
    }

    .feature-card:last-child {
        border-bottom: 1px solid #000000;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        height: 50px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.7rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .generator-card {
        padding: 2rem 1.5rem;
    }

    .prompt-input {
        padding: 1rem;
        min-height: 120px;
        font-size: 0.9rem;
    }

    .generate-btn {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }

    .image-container {
        min-height: 300px;
    }

    .features {
        padding: 4rem 0;
    }

    .features-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}