
/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== NAVIGATION ===== */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #333333;
    margin-bottom: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff1493;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== HERO SECTION ===== */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.buy-credits-btn {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #ff1493 0%, #e6127a 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
    margin-bottom: 0.5rem;
}

.buy-credits-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
}

.pricing-subheader {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0.9;
    text-align: center;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    margin-bottom: 5rem;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #171717 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.2);
    border-color: #ff1493;
}

.gallery-tag {
    background: #ff1493;
    color: #ffffff;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-placeholder {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 2rem;
}

.gallery-icon {
    width: 64px;
    height: 64px;
    stroke: #666666;
    stroke-width: 1.5;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ===== SUBTLE CTA SECTION ===== */
.subtle-cta-section {
    margin: 5rem 0;
    padding: 3rem 0;
    background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.subtle-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.subtle-cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.subtle-cta-description {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.subtle-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subtle-cta-btn:hover {
    border-color: #ff1493;
    color: #ff1493;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.15);
}

.subtle-cta-btn:hover .subtle-cta-arrow {
    transform: translateX(4px);
    stroke: #ff1493;
}

.subtle-cta-arrow {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(255, 20, 147, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ff1493;
}

.lightbox-caption {
    color: #ffffff;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    margin-bottom: 4rem;
}

.how-it-works-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #171717 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #ff1493;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff1493 0%, #e6127a 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-description {
    color: #cccccc;
    line-height: 1.5;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    margin-bottom: 4rem;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #1a1a1a 0%, #171717 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: #ff1493;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.1);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff1493;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #999999;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    color: #ff1493;
    transform: rotate(180deg);
}

.faq-answer {
    color: #cccccc;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 1rem;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #171717 100%);
    margin: auto;
    padding: 3rem;
    border: 1px solid #333333;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.close {
    color: #999999;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff1493;
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-description {
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

.early-access-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-input {
    padding: 1rem;
    border: 2px solid #333333;
    border-radius: 12px;
    background: #0f0f0f;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #ff1493;
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.notify-btn {
    padding: 1rem 2rem;
    background: #ff1493;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.notify-btn:hover {
    background: #e6127a;
    transform: translateY(-1px);
}

.notify-btn:disabled {
    background: #666666;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.success-message {
    text-align: center;
    color: #4ade80;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: auto;
    padding: 3rem 0;
    border-top: 1px solid #333333;
    text-align: center;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.badge {
    background: linear-gradient(145deg, #333333 0%, #2a2a2a 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.premium-toggle {
    background: linear-gradient(145deg, #1a1a1a 0%, #171717 100%);
    padding: 1rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #333333;
    display: inline-block;
    font-weight: 600;
}

.disclaimer {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* ===== SEO CONTENT SECTION ===== */
.seo-content-section {
    background: linear-gradient(145deg, #1a1a1a 0%, #171717 100%);
    border-radius: 24px;
    margin: 4rem 0;
    border: 1px solid #333333;
    overflow: hidden;
}

.read-more-wrapper {
    width: 100%;
}

.read-more-btn {
    width: 100%;
    background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
    border: none;
    padding: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #333333;
}

.read-more-btn:hover {
    background: linear-gradient(145deg, #333333 0%, #2a2a2a 100%);
    color: #ff1493;
}

.read-more-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.read-more-btn.expanded .read-more-arrow {
    transform: rotate(180deg);
}

.seo-content {
    padding: 3rem;
    animation: slideDown 0.3s ease-out;
}

.seo-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

.seo-content h2 {
    color: #ff1493;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.seo-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.seo-content p strong {
    color: #ffffff;
    font-weight: 600;
}

.seo-cta-btn {
    background: linear-gradient(145deg, #ff1493 0%, #e6127a 100%);
    color: #ffffff;
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.seo-cta-btn:hover {
    background: linear-gradient(145deg, #e6127a 0%, #cc1169 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: none;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* COMMENTED OUT: Original generator styles - preserved for future re-enablement */
/*
.header {
    text-align: center;
    margin-bottom: 4rem;
}

.headline {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.1rem;
    color: #999999;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.generator-section {
    background: linear-gradient(145deg, #1a1a1a 0%, #171717 100%);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    border: 1px solid #333333;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

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

.prompt-input {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid #ff1493;
    border-radius: 16px;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #0f0f0f;
    color: #ffffff;
    font-weight: 500;
    min-height: 120px;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
}

.prompt-input:focus {
    outline: none;
    border-color: #ff1493;
    background-color: #1a1a1a;
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
    transform: translateY(-1px);
}

.prompt-input::placeholder {
    color: #666666;
    font-weight: 400;
}

.suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.suggestion-tag {
    background: linear-gradient(145deg, #333333 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #444444;
    font-weight: 500;
}

.suggestion-tag:hover {
    background: linear-gradient(145deg, #ff1493 0%, #e6127a 100%);
    border-color: #ff1493;
    transform: translateY(-1px);
}

.style-section, .tags-section, .image-count-section {
    margin: 2rem 0;
}

.style-label, .tags-label, .image-count-label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.style-dropdown, .image-count-dropdown {
    width: 100%;
    padding: 1rem;
    border: 2px solid #333333;
    border-radius: 12px;
    background-color: #0f0f0f;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.style-dropdown:focus, .image-count-dropdown:focus {
    outline: none;
    border-color: #ff1493;
    background-color: #1a1a1a;
}

.style-dropdown:hover, .image-count-dropdown:hover {
    border-color: #666666;
    background-color: #222222;
}

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

.tag-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #1a1a1a 0%, #171717 100%);
    border: 1px solid #333333;
    position: relative;
}

.tag-checkbox:hover {
    background: linear-gradient(145deg, #2a2a2a 0%, #1f1f1f 100%);
    border-color: #ff1493;
}

.tag-checkbox.selected {
    background: linear-gradient(145deg, #ff1493 0%, #e6127a 100%);
    border-color: #ff1493;
    color: #ffffff;
}

.tag-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
    accent-color: #ff1493;
}

.image-count-dropdown:hover {
    border-color: #666666;
    background-color: #222222;
}

.generate-btn {
    width: 100%;
    padding: 1.25rem;
    background-color: #ff1493;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.generate-btn:hover {
    background-color: #e6127a;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
}

.generate-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.generate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #cccccc;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.image-section {
    margin-top: 2rem;
}

.image-placeholder {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px dashed #333333;
    border-radius: 18px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666666;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.placeholder-content p {
    font-weight: 500;
    font-size: 1rem;
    margin-top: 1rem;
}

.placeholder-icon {
    width: 64px;
    height: 64px;
    opacity: 0.4;
    stroke: #666666;
    stroke-width: 1.5;
}

.generated-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    animation: fadeIn 0.5s ease-out;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-height: 70vh;
    overflow-y: auto;
    padding: 1rem;
    border-radius: 16px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #333333;
}

.image-grid::-webkit-scrollbar {
    width: 8px;
}

.image-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.image-grid::-webkit-scrollbar-thumb {
    background: #ff1493;
    border-radius: 4px;
}

.image-grid::-webkit-scrollbar-thumb:hover {
    background: #e6127a;
}

.grid-image-container {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #ff1493;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
}

.grid-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 20, 147, 0.3);
    border-color: #ff1493;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

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