/* Synonym Stack specific styles - completely isolated */
.ss-features {
    padding: 6rem 0;
    background: #fff;
}

.ss-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ss-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ss-features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ss-features-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.ss-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ss-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ss-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(65, 105, 255, 0.1);
}

.ss-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(65, 105, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ss-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #4169FF;
}

.ss-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.ss-feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* App Image Styles */
.app-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.app-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.app-image:hover {
    transform: scale(1.02);
}

/* App Preview Styles (keeping for reference) */
.app-preview {
    background: #1A1A1A;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 320px;
    margin: 0 auto;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.app-title {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.status-badge.new {
    background: #10B981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.app-content {
    background: #2A2A2A;
    border-radius: 16px;
    padding: 1rem;
}

.game-screen {
    background: #333;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.game-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #CCC;
}

.word-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.word-card {
    background: #444;
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.2s ease;
}

.word-card.active {
    background: #4169FF;
    color: white;
}

.word-card:not(.active) {
    color: #CCC;
}

.word {
    font-weight: 600;
    font-size: 0.875rem;
}

.game-controls {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.control-btn {
    background: #555;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #CCC;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.control-btn:hover {
    background: #666;
}

.progress-bar {
    background: #444;
    border-radius: 4px;
    height: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress {
    background: #4169FF;
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #CCC;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    color: #999;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-weight: 600;
    color: #CCC;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(65, 105, 255, 0.1);
    color: #4169FF;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Quick Start Section */
.ss-quickstart {
    padding: 6rem 0;
    background: var(--background-light, #F8F9FF);
}

.ss-quickstart .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ss-quickstart-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ss-quickstart-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ss-quickstart-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.ss-quickstart-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ss-guide-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ss-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(65, 105, 255, 0.1);
}

.ss-guide-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    letter-spacing: -0.01em;
}

.ss-guide-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.ss-learn-more {
    color: #4169FF;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 0.5rem;
}

/* Download Section */
.ss-download {
    padding: 6rem 0;
    background: white;
}

.ss-download .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ss-download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(65, 105, 255, 0.08);
    color: #4169FF;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.ss-badge-dot {
    width: 8px;
    height: 8px;
    background: #4169FF;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.ss-download-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ss-download-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ss-download-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.ss-download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.ss-download-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.ss-download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(65, 105, 255, 0.1);
}

.ss-download-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.ss-download-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.ss-download-cta {
    text-align: center;
}

.ss-download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4169FF;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(65, 105, 255, 0.3);
}

.ss-download-button:hover {
    background: #3151E0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(65, 105, 255, 0.4);
}

.ss-download-button svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.ss-download-button:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ss-features-grid,
    .ss-download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ss-quickstart-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ss-features,
    .ss-quickstart,
    .ss-download {
        padding: 4rem 1.5rem;
    }

    .ss-features-header h2,
    .ss-quickstart-header h2,
    .ss-download-header h2 {
        font-size: 2rem;
    }

    .ss-features-grid,
    .ss-quickstart-grid,
    .ss-download-grid {
        grid-template-columns: 1fr;
    }

    .ss-download-button {
        width: 100%;
        justify-content: center;
    }
}

/* Photo Restore Professional Header Styling */
.product-header {
    margin-bottom: 2rem;
}

.product-name {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    color: #1A1A1A;
    letter-spacing: -0.04em;
}

.product-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #526DFF;
    margin: 0.5rem 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #666;
    margin: 0;
    max-width: 500px;
}

.product-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

/* Responsive adjustments for the new header */
@media (max-width: 1024px) {
    .product-name {
        font-size: 3.5rem;
    }
    
    .product-tagline {
        font-size: 1.25rem;
    }
    
    .product-subtitle {
        font-size: 1.25rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .product-name {
        font-size: 2.5rem;
    }
    
    .product-tagline {
        font-size: 1rem;
    }
    
    .product-subtitle {
        font-size: 1.125rem;
    }
    
    .product-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .product-header {
        text-align: center;
    }
} 