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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* CSS to hide watermark */
div[style*="position: fixed"][style*="bottom"][style*="right"][style*="z-index: 2147483647"],
div[style*="position: absolute"][style*="bottom"][style*="right"][style*="pointer-events: none"],
div[style*="position: fixed"][style*="bottom: 1rem"][style*="right: 1rem"],
.smartplayer-watermark,
[class*="watermark"],
[id*="watermark"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Countdown Timer */
.countdown-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #dc2626;
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: bold;
    font-size: 1.125rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

.countdown-timer {
    font-size: 1.25rem;
    font-weight: 900;
    margin-left: 0.5rem;
    color: #fef2f2;
}

@media (max-width: 768px) {
    .countdown-banner {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .countdown-timer {
        font-size: 1.125rem;
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #fef7cd 0%, #fed7aa 50%, #fef3c7 100%);
}

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(139, 69, 19, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(184, 134, 11, 0.05) 25%, transparent 25%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Main Headline */
.main-headline {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.headline-line-1 {
    display: block;
    margin-bottom: 0.5rem;
    color: #92400e;
    font-weight: 900;
    font-size: 3rem;
}

.headline-line-2 {
    display: block;
    background: linear-gradient(to right, #d97706, #eab308, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 900;
}

.headline-line-3 {
    display: block;
    color: #92400e;
    font-weight: 900;
    font-size: 3rem;
}

/* Responsive headline sizes */
@media (min-width: 768px) {
    .headline-line-1,
    .headline-line-2,
    .headline-line-3 {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .headline-line-1,
    .headline-line-2,
    .headline-line-3 {
        font-size: 6rem;
    }
}

/* Subheadline */
.subheadline {
    font-size: 1.125rem;
    color: #92400e;
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

@media (min-width: 768px) {
    .subheadline {
        font-size: 1.25rem;
    }
}

.highlight {
    font-weight: 700;
    color: #78350f;
}

/* Video Container */
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.video-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}

.video-aspect {
    position: relative;
    padding: 56.25% 0 0 0;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Buy Button */
.buy-button-container {
    margin-bottom: 3rem;
}

.buy-button {
    display: inline-block;
    background-color: #eab308;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 3rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.buy-button:hover {
    background-color: #ca8a04;
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Notice */
.notice {
    margin-top: 1.5rem;
}

.notice-text {
    color: #92400e;
    font-size: 1rem;
    font-weight: 500;
    max-width: 32rem;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 1rem;
    background-color: white;
}

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

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #92400e;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-title {
        font-size: 3rem;
    }
}

.testimonials-list {
    max-width: 32rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Individual Testimonial */
.testimonial {
    background-color: white;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.testimonial:last-child {
    border-bottom: none;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
    cursor: pointer;
}

.user-name:hover {
    text-decoration: underline;
}

.user-time {
    color: #6b7280;
    font-size: 0.75rem;
}

.more-button {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.more-button:hover {
    color: #6b7280;
    background-color: #f3f4f6;
}

/* Testimonial Content */
.testimonial-content {
    margin-bottom: 0.75rem;
}

.testimonial-text {
    color: #111827;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Testimonial Actions */
.testimonial-actions {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.25rem;
}

.like-count {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #6b7280;
}

.reaction-icons {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.reaction-icon {
    width: 1rem;
    height: 1rem;
    background-color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-buttons {
    display: flex;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.25rem;
}

.action-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
    gap: 0.5rem;
}

.action-button:hover {
    background-color: #f9fafb;
}

.action-button span {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .headline-line-1,
    .headline-line-2,
    .headline-line-3 {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .buy-button {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}