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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    color: #fff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b29 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ff6b6b" opacity="0.1"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 10px #ff6b6b; }
    to { text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 20px #ff6b6b, 0 0 30px #ff6b6b; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffd93d;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.hero-warning {
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #ff6b6b;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

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

.hero-warning p {
    margin: 0;
    color: #fff;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.harvey-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float-harvey 3s ease-in-out infinite;
    border: 3px solid rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.harvey-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4);
    border-color: #ff6b6b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #ff7b7b);
}

.btn-secondary {
    background: transparent;
    color: #ffd93d;
    border: 2px solid #ffd93d;
}

.btn-secondary:hover {
    background: #ffd93d;
    color: #000;
    transform: translateY(-2px);
}

.btn-download {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff6b6b;
    font-weight: 700;
}

/* Download Section */
.download-section {
    background: linear-gradient(135deg, #2d1b29 0%, #1a1a1a 100%);
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.download-card.single {
    max-width: 500px;
    padding: 3rem 2rem;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.download-card h3 {
    font-size: 1.5rem;
    color: #ffd93d;
    margin-bottom: 1rem;
}

.download-card.single h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.file-size {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.download-note {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
}

.download-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Video Section */
.video-section {
    background: #1a1a1a;
}

.videos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.video-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 107, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
}

.video-wrapper h3 {
    color: #ffd93d;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(255, 107, 107, 0.1);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

/* What Is Section */
.what-is-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b29 100%);
}

.what-is-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.what-is-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b6b;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateX(10px);
}

.feature-card h3 {
    color: #ffd93d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* How To Section */
.how-to-section {
    background: #1a1a1a;
}

.how-to-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #ff6b6b, transparent);
}

.step-number {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    margin-right: 2rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.step-content h3 {
    color: #ffd93d;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, #2d1b29 0%, #1a1a1a 100%);
}

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.reason-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 300px;
}

.reason-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.reason-item.reverse .reason-text {
    order: 2;
}

.reason-item.reverse .reason-image {
    order: 1;
}

.reason-text {
    padding: 2rem;
}

.reason-text h3 {
    color: #ffd93d;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.reason-text p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.reason-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.reason-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 107, 107, 0.2);
    min-height: 200px;
    object-fit: cover;
}

.reason-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

/* Placeholder for missing images */
.reason-image img[src$=".png"]:not([src*="data:"]) {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    position: relative;
}

.reason-image img[src$=".png"]:not([src*="data:"]):after {
    content: "Image Coming Soon";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: #1a1a1a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 107, 0.1);
}

.faq-question h3 {
    color: #ffd93d;
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-family: 'Creepster', cursive;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a:hover {
    color: #ff6b6b;
}

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

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 107, 107, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .what-is-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-options {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .download-card.single {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    
    .download-card.single h3 {
        font-size: 1.5rem;
    }
    
    /* Video Section Mobile */
    .videos-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 0 1rem 0;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    /* Why Section Mobile */
    .reason-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .reason-item.reverse .reason-text,
    .reason-item.reverse .reason-image {
        order: initial;
    }
    
    .reason-text {
        padding: 1.5rem;
        text-align: center;
    }
    
    .reason-text h3 {
        font-size: 1.5rem;
    }
    
    .reason-text p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .download-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}