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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #666;
}

a.footer-link:link, a.footer-link:visited{
    
   color: #666 !important; 
    
}

a.content-link:link, a.content-link:visited{
    
   color: #666 !important; 
    
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #555;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.hero-bubbles {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.bubble:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bubble:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
}

.bubble:nth-child(2):hover {
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

.bubble:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.bubble:nth-child(3):hover {
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.bubble:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.bubble:nth-child(4):hover {
    box-shadow: 0 6px 20px rgba(67, 233, 123, 0.4);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

/* Product Hunt Badge */
.product-hunt-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: all 0.2s ease;
}

.product-hunt-badge:hover {
    border-color: #ff6b6b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ph-icon {
    width: 24px;
    height: 24px;
    background-color: #ff6b6b;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.ph-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ph-featured {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ph-name {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.ph-arrow {
    color: #ff6b6b;
    font-size: 12px;
    margin-left: 4px;
}

.ph-votes {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* App Screenshot */
.hero-screenshot {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Built For Animated Section */
.built-for-section {
    margin-top: 80px;
    text-align: center;
}

.built-for-container {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 24px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.built-for-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 32px;
    font-weight: 300;
    color: #333;
}

.built-for-static {
    font-weight: 400;
}

.built-for-rotating {
    position: relative;
    height: 1.2em;
    overflow: hidden;
    min-width: 350px;
}

.rotating-word {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: #D0510B;
}

.rotating-word.active {
    opacity: 1;
    transform: translateY(0);
}

.rotating-word.prev {
    opacity: 0;
    transform: translateY(-100%);
}



/* Features Section */
.features {
    padding: 120px 0;
    background-color: #fafafa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #333;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* SEO Content Section */
.seo-content {
    padding: 120px 0;
    background-color: #fff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #333;
}

.content-wrapper p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #666;
}

.content-wrapper ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.content-wrapper li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #666;
    padding-left: 24px;
    position: relative;
}

.content-wrapper li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D0510B;
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    text-align: center;
    background-color: #fff;
}

.footer .btn {
    margin-bottom: 40px;
}

.footer-text {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
}

.footer-text p {
    margin-bottom: 8px;
}

.footer-text p:last-child {
    margin-bottom: 0;
}

.maple-leaf {
    height: 1em;
    width: auto;
    margin: 0 4px;
    display: inline-block;
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-bubbles {
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .bubble {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
    
    .app-screenshot {
        transform: none;
    }
    
    .app-screenshot:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-bubbles {
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .bubble {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .built-for-container {
        padding: 20px 30px;
        max-width: 90%;
    }
    
    .built-for-text {
        font-size: 24px;
        flex-direction: column;
        gap: 8px;
    }
    
    .built-for-rotating {
        min-width: 250px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
