/* PromoVideo.Studio Custom Styles - Dark Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-text a {
    text-decoration: none;
    color: inherit;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #a0a0a0;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #0066ff;
}

.gradient-primary {
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.gradient-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-secondary-header {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-secondary-header:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #0066ff;
    color: #0066ff;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-padding {
    padding: 140px 0 80px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
}

.hero-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-video {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-video-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-intro-text {
    text-align: center;
    margin-bottom: 32px;
}

.video-intro-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.video-intro-text p {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hero-bottom-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge.blue {
    background: rgba(0, 102, 255, 0.1);
    color: #52a9ff;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.badge.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge.yellow {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #0066ff 0%, #52a9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #0066ff;
    color: #0066ff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border: 2px solid #0066ff;
    border-radius: 16px;
    padding: 32px 24px;
    background: rgba(0, 102, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.stat-icon {
    width: 24px;
    height: 24px;
}

.stat-text {
    font-size: 0.875rem;
    color: #a0a0a0;
}

.hero-video {
    position: relative;
}

.video-hero-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
}

.video-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-hero-image:hover img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-hero-image:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-button-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.video-play-button-large:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.video-play-button-custom {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.video-play-button-custom:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 8px;
}

.video-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 60px 40px 40px;
    color: white;
}

.video-hero-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.video-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.video-hero-content .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards */
.card-soft {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-soft:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card-header {
    margin-bottom: 24px;
}

.card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    color: #0066ff;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.card-description {
    font-size: 0.875rem;
    color: #a0a0a0;
    line-height: 1.6;
}

.card-features {
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.875rem;
    color: #a0a0a0;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

/* Video Types Grid */
.video-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.video-type-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
}

.video-type-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
}

.video-type-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.video-type-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #ffffff;
    flex: 1;
}

.video-play-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.video-play-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.video-type-thumbnail {
    margin: 16px 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.video-type-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.video-type-thumbnail:hover img {
    transform: scale(1.05);
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.video-type-thumbnail:hover .video-thumbnail-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.video-thumbnail-play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.video-thumbnail-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
}

.play-triangle-small {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
}

.video-type-description {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Video Intro Section */
.video-intro-section {
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-intro-section::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="1" fill="white" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    animation: twinkle 6s linear infinite;
}

.video-intro-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
    letter-spacing: -0.02em;
}

.video-intro-section p {
    font-size: 1.5rem;
    margin-bottom: 0;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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="1" fill="white" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    animation: twinkle 6s linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.cta-button {
    background: rgba(255, 255, 255, 0.95);
    color: #0066ff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button:hover {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #a0a0a0;
    margin-bottom: 4px;
}

.testimonial-website {
    font-size: 0.75rem;
    color: #0066ff;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.star {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d1d5db;
    font-style: italic;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.pricing-card.popular {
    border-color: #0066ff;
    transform: scale(1.05);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0066ff;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: #52a9ff;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: #a0a0a0;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: #a0a0a0;
}

.pricing-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    color: white;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #0066ff;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.close-modal:hover {
    opacity: 0.7;
}

/* Blog Post Styles */
.blog-post-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
}

.blog-post-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-post-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-post-article {
    color: #ffffff;
}

.blog-post-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 16px;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.post-meta-item svg {
    color: #0066ff;
    flex-shrink: 0;
}

.post-meta-item a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.post-meta-item a:hover {
    color: #0066ff;
}

.blog-post-featured-image {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.blog-post-featured-image:hover .featured-image {
    transform: scale(1.02);
}

.blog-post-content-wrapper {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.blog-post-content-wrapper h1,
.blog-post-content-wrapper h2,
.blog-post-content-wrapper h3,
.blog-post-content-wrapper h4,
.blog-post-content-wrapper h5,
.blog-post-content-wrapper h6 {
    color: #ffffff;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.blog-post-content-wrapper h2 {
    font-size: 1.8rem;
}

.blog-post-content-wrapper h3 {
    font-size: 1.5rem;
}

.blog-post-content-wrapper p {
    margin-bottom: 20px;
}

.blog-post-content-wrapper a {
    color: #52a9ff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.blog-post-content-wrapper a:hover {
    color: #0066ff;
    border-bottom-color: #0066ff;
}

.blog-post-content-wrapper blockquote {
    background: rgba(0, 102, 255, 0.1);
    border-left: 4px solid #0066ff;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #ffffff;
}

.blog-post-content-wrapper ul,
.blog-post-content-wrapper ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.blog-post-content-wrapper li {
    margin-bottom: 8px;
}

.blog-post-content-wrapper code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9em;
    color: #52a9ff;
}

.blog-post-content-wrapper pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post-content-wrapper pre code {
    background: none;
    padding: 0;
    color: #e0e0e0;
}

.blog-post-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.post-tags svg {
    color: #0066ff;
    flex-shrink: 0;
}

.tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags-list a {
    background: rgba(0, 102, 255, 0.1);
    color: #52a9ff;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.tags-list a:hover {
    background: rgba(0, 102, 255, 0.2);
    color: #ffffff;
    border-color: #0066ff;
}

/* Post Navigation */
.post-navigation-wrapper {
    margin: 48px 0;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.nav-previous,
.nav-next {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-previous:hover,
.nav-next:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-2px);
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Comments Section */
.comments-wrapper {
    margin-top: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-area {
    color: #ffffff;
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-form {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-form label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #0066ff;
    background: rgba(255, 255, 255, 0.15);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: #a0a0a0;
}

.comment-form .form-submit input {
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
}

.comment-form .form-submit input:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

/* Blog Sidebar */
.blog-sidebar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    height: fit-content;
    position: sticky;
    top: 140px;
    color: #e0e0e0;
}
.blog-sidebar * {
    color: #e0e0e0;
}

.blog-sidebar .widget {
    margin-bottom: 32px;
    color: #ffffff;
}

.blog-sidebar .widget:last-child {
    margin-bottom: 0;
}

.blog-sidebar .widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    padding-bottom: 8px;
    border-bottom: 2px solid #0066ff;
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar li {
    margin-bottom: 8px;
}

.blog-sidebar a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-sidebar a:hover {
    color: #0066ff;
}

.blog-sidebar .widget_recent_entries a {
    color: #0066ff;
}

/* WooCommerce Product Page Styling */
.woocommerce .woocommerce-notices-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
}

.woocommerce-breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 20px;
    margin: 20px 0;
    color: #a0a0a0;
    font-size: 0.9rem;
}

.woocommerce-breadcrumb a {
    color: #52a9ff;
    text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
    color: #0066ff;
}

.woocommerce div.product {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin: 32px 0;
    color: #ffffff;
}

.woocommerce div.product .product-title,
.woocommerce div.product h1.entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.woocommerce div.product .price {
    font-size: 2rem;
    font-weight: 800;
    color: #52a9ff;
    margin: 20px 0;
}

.woocommerce div.product .price del {
    color: #a0a0a0;
    font-size: 1.5rem;
}

.woocommerce div.product .stock {
    color: #10b981;
    font-weight: 600;
    font-size: 1rem;
    margin: 16px 0;
}

.woocommerce div.product .out-of-stock {
    color: #f97316;
}

.woocommerce div.product .product_meta {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    margin: 32px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce div.product .product_meta span {
    display: block;
    margin-bottom: 8px;
    color: #a0a0a0;
}

.woocommerce div.product .product_meta a {
    color: #52a9ff;
    text-decoration: none;
}

.woocommerce div.product .product_meta a:hover {
    color: #0066ff;
}

/* Product Images */
.woocommerce div.product .woocommerce-product-gallery {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.woocommerce div.product .woocommerce-product-gallery img {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image:hover img {
    transform: scale(1.02);
}

/* Add to Cart Form */
.woocommerce div.product form.cart {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce div.product form.cart .quantity {
    margin-bottom: 16px;
}

.woocommerce div.product form.cart .quantity input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 1rem;
    width: 80px;
    text-align: center;
}

.woocommerce div.product form.cart .quantity input:focus {
    border-color: #0066ff;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 16px;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

/* Variations */
.woocommerce div.product .variations {
    margin: 20px 0;
}

.woocommerce div.product .variations td,
.woocommerce div.product .variations th {
    padding: 12px 0;
    color: #ffffff;
    border: none;
}

.woocommerce div.product .variations th {
    font-weight: 600;
    color: #a0a0a0;
    width: 30%;
}

.woocommerce div.product .variations select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
}

.woocommerce div.product .variations select:focus {
    border-color: #0066ff;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 48px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 8px;
    border: none;
    margin: 0 0 32px 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.3s;
    flex: 1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #a0a0a0;
    padding: 16px 24px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #ffffff;
}

.woocommerce div.product .woocommerce-tabs .panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    color: #e0e0e0;
    line-height: 1.7;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.woocommerce div.product .woocommerce-tabs .panel p {
    margin-bottom: 16px;
}

/* Reviews */
.woocommerce div.product .woocommerce-tabs #tab-reviews {
    color: #ffffff;
}

.woocommerce div.product .woocommerce-tabs #reviews .commentlist {
    list-style: none;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs #reviews .commentlist li {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce div.product .woocommerce-tabs #reviews .star-rating {
    color: #fbbf24;
}

.woocommerce div.product .woocommerce-tabs #reviews .comment-text {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Review Form */
.woocommerce div.product .woocommerce-tabs #review_form_wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce div.product .woocommerce-tabs #respond input,
.woocommerce div.product .woocommerce-tabs #respond textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
}

.woocommerce div.product .woocommerce-tabs #respond input:focus,
.woocommerce div.product .woocommerce-tabs #respond textarea:focus {
    border-color: #0066ff;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.woocommerce div.product .woocommerce-tabs #respond label {
    color: #ffffff;
    font-weight: 500;
}

.woocommerce div.product .woocommerce-tabs #respond input[type="submit"] {
    background: linear-gradient(135deg, #0066ff 0%, #0054ad 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
}

.woocommerce div.product .woocommerce-tabs #respond input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

/* Related Products */
.woocommerce .single-product-wrapper .related.products {
    margin-top: 64px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.woocommerce .single-product-wrapper .related.products h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.woocommerce .single-product-wrapper .related.products .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.woocommerce .single-product-wrapper .related.products .product {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce .single-product-wrapper .related.products .product:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.08);
}

.woocommerce .single-product-wrapper .related.products .product h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.woocommerce .single-product-wrapper .related.products .product a {
    color: #ffffff;
    text-decoration: none;
}

.woocommerce .single-product-wrapper .related.products .product a:hover {
    color: #52a9ff;
}

.woocommerce .single-product-wrapper .related.products .product .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #52a9ff;
    margin: 16px 0;
}

/* Product Category Page */
.woocommerce-products-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin: 32px 0;
    text-align: center;
}

.woocommerce-products-header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.woocommerce-products-header .term-description {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .woocommerce div.product {
        padding: 24px 16px;
    }
    
    .woocommerce div.product .product-title,
    .woocommerce div.product h1.entry-title {
        font-size: 1.8rem;
    }
    
    .woocommerce div.product .price {
        font-size: 1.5rem;
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs {
        flex-direction: column;
        gap: 4px;
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 12px 16px;
    }
    
    .woocommerce div.product .woocommerce-tabs .panel {
        padding: 20px;
    }
    
    .woocommerce .single-product-wrapper .related.products {
        padding: 24px 16px;
    }
    
    .woocommerce .single-product-wrapper .related.products .products {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .card-grid,
    .video-types-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
    }

    /* Blog responsive */
    .blog-post-container {
        padding: 100px 0 60px;
    }

    .blog-post-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .blog-post-content {
        padding: 32px 24px;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 12px;
    }

    .post-navigation {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-sidebar {
        position: static;
        top: auto;
    }
}
