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

:root {
    --primary: #4C1D95;
    --primary-dark: #1E0A47;
    --accent-teal: #2dd4bf;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 200;
}

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

/* Navigation */
.navbar {
    background-color: var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: 42px;
    border-radius: 10px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 100;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-teal);
    font-weight: 300;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtext {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.store-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--accent-teal);
    font-weight: 300;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.store-link:hover {
    transform: translateY(-3px);
}

.store-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

/* Buttons (used for contact section) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 3rem 0;
}

.create-section {
    background-color: var(--bg-light);
}

.create-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.create-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.create-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.create-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.buzz-section {
    background-color: white;
}

.buzz-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.mag-name {
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.mag-quote {
    font-size: 0.95rem;
    color: var(--text-light);
}

.features-section {
    background-color: white;
}

.features-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.features-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

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

.features-side-image {
    flex-shrink: 0;
    width: 220px;
}

.features-side-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-4px);
}

.feature img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.feature p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Content Pages */
.page-title {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.breadcrumb {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.content-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.content-item h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.content-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.content-item ul {
    color: var(--text-light);
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.content-item li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.video-list {
    list-style: none;
}

.video-list li {
    margin-bottom: 1rem;
}

.video-list a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 300;
}

.video-list a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

footer p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.social-links a i {
    font-size: 22px;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .create-content {
        grid-template-columns: 1fr;
    }

    .features-content {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        width: 100%;
    }

    .features-side-image {
        width: 160px;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }
}
