
@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'OpenSans';
    src: url('fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

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

body {
    font-family: 'OpenSans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Animations */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    80% {
        transform: translateY(-10px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Animation Classes */
.zoom-in-animation {
    animation: zoomIn 1s ease-out;
}

.scale-in-animation {
    animation: scaleIn 1s ease-out 0.3s both;
}

.fade-in-up-animation {
    animation: fadeInUp 1s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.bounce-animation {
    animation: bounce 2s infinite;
}

.shake-animation {
    animation: shake 1s infinite;
}

.scale-animation {
    animation: scale 2s infinite;
}

/* Hover Animations */
.scale-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.zoom-hover {
    transition: transform 0.3s ease;
}

.zoom-hover:hover {
    transform: scale(1.1);
}

/* Scroll Animations */
.zoom-in-scroll {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zoom-in-scroll.animate {
    opacity: 1;
    transform: scale(1);
}

/* Social Media Floating Icons */
.social-floating {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.social-icon.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
}

.social-icon.facebook {
    background: linear-gradient(45deg, #3b5998, #4267B2);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: #ffdd44;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #e53935);
}

.primary-cta {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.primary-cta:hover {
    background: linear-gradient(45deg, #45a049, #388e3c);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
}

.final-cta-button {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    font-size: 1.3rem;
    padding: 25px 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.final-cta-button:hover {
    background: linear-gradient(45deg, #E55100, #FF8F00);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffdd44;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quote-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.quote-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
    margin-top: 15px;
}

.author {
    font-weight: 600;
    color: #666;
}

/* Content Wrapper */
.content-wrapper {
    background: white;
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.content-intro {
    text-align: center;
    margin-bottom: 80px;
}

.content-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.intro-description {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
}

/* Highlight Boxes */
.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.danger-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

.accent-box {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
}

.big-text {
    font-size: 1.6rem;
}

.icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.icon-small {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.benefit-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffdd44;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 5px solid #667eea;
}

.audience-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.audience-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #f0f0f0;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #667eea;
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bonus-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.bonus-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffdd44;
}

.bonus-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.bonus-value {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffdd44;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.styled-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li i {
    position: absolute;
    left: 0;
    top: 18px;
    color: #667eea;
    font-size: 1.2rem;
}

/* Section Paragraphs */
.section-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 30px 0;
    color: #444;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px;
    border-radius: 30px;
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: #ccc;
    margin-bottom: 10px;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.price {
    color: #ffdd44;
    font-size: 2.5rem;
}

.discount {
    font-size: 1.1rem;
    color: #4CAF50;
    font-weight: 600;
}

.guarantee {
    margin-top: 30px;
    font-size: 1rem;
    color: #ccc;
}

.guarantee i {
    color: #4CAF50;
    margin-right: 10px;
}

/* Remember Section */
.remember-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    z-index: 2;
}

.remember-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.remember-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.remember-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffdd44;
}

.remember-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.remember-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .social-floating {
        right: 10px;
        gap: 10px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .feature-item {
        padding: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .remember-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-intro h2 {
        font-size: 2.2rem;
    }

    .highlight-box {
        padding: 30px 20px;
    }

    .highlight-text {
        font-size: 1.1rem;
    }

    .big-text {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-section {
        padding: 50px 30px;
        margin: 50px 0;
    }

    .final-cta-button {
        font-size: 1.1rem;
        padding: 20px 40px;
    }

    .footer-links {
        gap: 20px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .remember-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .final-cta-button {
        font-size: 1rem;
        padding: 18px 35px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #667eea 100%);
}
