* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0a0e1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 10px 0;
    border-bottom: 1px solid #1a1f2e;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e91e63;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 110px;
    width: auto;
    margin-top: -35px;
    margin-bottom: -35px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e91e63;
}

.get-extension-btn {
    background: #ffffff;
    color: #0a0e1a;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.get-extension-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px) scale(1.03);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
    background: radial-gradient(circle at top, rgba(233, 30, 99, 0.8) 0%, rgba(156, 39, 176, 0.6) 30%, rgba(10, 14, 26, 1) 70%);
}

.badge {
    display: inline-block;
    background: rgba(233, 30, 99, 0.1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 32px;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
    margin-bottom: 32px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-description {
    font-size: 1.25rem;
    color: #b0b8c1;
    max-width: 600px;
    margin: 0 auto 32px;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b8c1;
}

.checkmark {
    color: #4caf50;
    font-weight: bold;
}

.download-btn {
    background: #ffffff;
    color: #0a0e1a;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
}

.download-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px) scale(1.02);
}

.install-note {
    margin-top: 16px;
    color: #6b7280;
    font-size: 14px;
}

/* Video Section */
.video-section {
    margin: 80px 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.play-button-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 80px;
    height: 80px;
    background: #8A2BE2;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 20px 0 20px 35px;
    border-color: transparent transparent transparent white;
}

.video-container video {
    width: 100%;
    display: block;
}

/* Hide play button when video is playing */
.video-container.playing .play-button-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-header {
    text-align: center;
}

.video-header h3 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.video-header p {
    color: #b0b8c1;
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.video-placeholder {
    background: #1a1f2e;
    border-radius: 8px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #374151;
}

.video-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.video-description {
    color: #b0b8c1;
    text-align: center;
    max-width: 400px;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.features-section > p {
    color: #b0b8c1;
    font-size: 1.125rem;
    margin-bottom: 80px;
}

.features-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.feature-card {
    background: #1a1f2e;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #374151;
    background: linear-gradient(180deg, #1a1f2e 0%, #1a1f2e 70%, rgba(233, 30, 99, 0.2) 100%);
    overflow: hidden;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card p {
    color: #b0b8c1;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.pricing-section > p {
    color: #b0b8c1;
    margin-bottom: 120px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
}

.pricing-card {
    background: #1a1f2e;
    border-radius: 12px;
    padding: 40px 32px;
    border: 1px solid #374151;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-card.pro {
    background: linear-gradient(135deg, #1a1f2e, #2d1b69);
    border: 1px solid #e91e63;
}

.plan-name {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.plan-price {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
}

.plan-price .currency {
    font-size: 1.5rem;
}

.plan-price .period {
    font-size: 1rem;
    color: #b0b8c1;
}

.plan-description {
    color: #b0b8c1;
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 8px 0;
    color: #b0b8c1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li::before {
    content: '✓';
    color: #4caf50;
    font-weight: bold;
}

.plan-button {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
}

.plan-button.free {
    background: transparent;
    color: #e91e63;
    border: 1px solid #e91e63;
}

.plan-button.pro {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border: none;
}

.plan-button:hover {
    transform: translateY(-2px) scale(1.03);
}

.pricing-note {
    margin-top: 32px;
    color: #6b7280;
    font-size: 14px;
}

/* Add a basic fade-in animation class */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: #0f1419;
    padding: 60px 0 32px;
    border-top: 1px solid #1a1f2e;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #b0b8c1;
    line-height: 1.6;
}

.footer-section h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b0b8c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e91e63;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #1a1f2e;
    color: #6b7280;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .features-list {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .features-section h2,
    .pricing-section h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* About Page Styles */
.about-hero {
    text-align: center;
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(233, 30, 99, 0.8) 0%, rgba(156, 39, 176, 0.6) 30%, rgba(10, 14, 26, 1) 70%);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #ffffff;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section p {
    color: #b0b8c1;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    color: #b0b8c1;
    font-size: 1.125rem;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: '✓';
    color: #4caf50;
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-section h2 {
        font-size: 1.75rem;
    }

    .about-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(233, 30, 99, 0.8) 0%, rgba(156, 39, 176, 0.6) 30%, rgba(10, 14, 26, 1) 70%);
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #ffffff;
}

.contact-content {
    padding: 80px 0;
}

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section p {
    color: #b0b8c1;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-method {
    background: #1a1f2e;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #374151;
    text-align: left;
}

.contact-method h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.contact-method p {
    color: #b0b8c1;
    margin-bottom: 16px;
}

.contact-link {
    color: #e91e63;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #9c27b0;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-section h2 {
        font-size: 1.75rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }
}

/* Terms Page Styles */
.terms-hero {
    text-align: center;
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(233, 30, 99, 0.8) 0%, rgba(156, 39, 176, 0.6) 30%, rgba(10, 14, 26, 1) 70%);
}

.terms-hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #ffffff;
}

.terms-content {
    padding: 80px 0;
}

.terms-section {
    max-width: 800px;
    margin: 0 auto;
}

.terms-intro {
    color: #b0b8c1;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.terms-block {
    margin-bottom: 40px;
}

.terms-block h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-block p {
    color: #b0b8c1;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.terms-block ul {
    list-style: none;
    margin: 16px 0;
    padding-left: 20px;
}

.terms-block ul li {
    color: #b0b8c1;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.terms-block ul li::before {
    content: "•";
    color: #e91e63;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.terms-block .contact-info {
    list-style: none;
    padding: 0;
}

.terms-block .contact-info li {
    margin-bottom: 12px;
}

.terms-block .contact-info a {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-block .contact-info a:hover {
    color: #9c27b0;
}

@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.5rem;
    }

    .terms-block h2 {
        font-size: 1.25rem;
    }

    .terms-block p,
    .terms-block ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }

    .terms-block h2 {
        font-size: 1.125rem;
    }
}