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

:root {
    --primary-color: #8b2be2; /* Purple color similar to game lights */
    --secondary-color: #420080; /* Darker purple */
    --accent-color: #7ffc00; /* Bright green similar to logo */
    --text-color: #e4e4e4; /* Light text for dark backgrounds */
    --dark-text: #121212; /* Dark text for light backgrounds */
    --light-text: #f8f8f8;
    --dark-bg: #121212; /* Very dark background */
    --light-bg: #1e1e1e; /* Slightly lighter dark background */
    --border-color: #333333; /* Dark borders */
    --border-radius: 6px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --card-bg: #242424; /* Dark card background */
    --input-bg: #333; /* Dark input background */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC'); /* Subtle noise texture */
}

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

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(127, 252, 0, 0.5);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--accent-color);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    box-shadow: 0 0 15px rgba(139, 43, 226, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(139, 43, 226, 0.8);
    transform: translateY(-2px);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(127, 252, 0, 0.3);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(127, 252, 0, 0.5);
}

.btn-preview {
    background: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 0 10px rgba(127, 252, 0, 0.3);
}

.btn-preview:hover {
    box-shadow: 0 0 15px rgba(127, 252, 0, 0.5);
    transform: translateY(-2px);
    color: var(--dark-bg);
}

/* Green text for SCHEDULE in logo */
.green-text {
    color: var(--accent-color);
    font-weight: 800;
}

/* Style for number 1 in logo */
.one-text {
    color: var(--accent-color);
    font-weight: 800;
    border: 2px solid var(--accent-color);
    padding: 0 4px;
    margin: 0 2px;
}

/* Header Styles */
.header {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 700;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
    color: var(--accent-color);
}

.main-nav ul li a.active::after,
.main-nav ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-color);
}

/* Hero Section Styles */
.hero {
    background-color: var(--dark-bg);
    color: white;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    background-image: url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEASABIAAD');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.purple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 0, 128, 0.8) 0%, rgba(18, 18, 18, 0.9) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 43, 226, 0.4), transparent 70%),
                radial-gradient(circle at 70% 30%, rgba(127, 252, 0, 0.2), transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    flex: none;
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin-bottom: 20px;
    margin-right: 0;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(139, 43, 226, 0.8);
}

.hero-content .subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    color: var(--accent-color);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Calculator Embed Styles */
.calculator-embed {
    flex: none;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.embed-container {
    background: rgba(18, 18, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 15px 10px;
    border-radius: 12px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(127, 252, 0, 0.3), inset 0 0 10px rgba(127, 252, 0, 0.1);
    transition: all 0.5s ease;
    animation: pulseShadow 3s infinite alternate;
    position: relative;
}

.embed-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    background: linear-gradient(45deg, transparent, rgba(127, 252, 0, 0.1), rgba(127, 252, 0, 0.4), rgba(127, 252, 0, 0.1), transparent);
    border-radius: 14px;
    animation: borderGlow 4s infinite linear;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.embed-container h3 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.3rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(127, 252, 0, 0.5);
}

@keyframes pulseShadow {
    0% {
        box-shadow: 0 0 15px rgba(127, 252, 0, 0.3), inset 0 0 10px rgba(127, 252, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 30px rgba(127, 252, 0, 0.5), inset 0 0 20px rgba(127, 252, 0, 0.2);
    }
}

.iframe-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 120%;
    height: 0;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    background-color: rgba(18, 18, 24, 0.8);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.iframe-wrapper:hover {
    transform: scale(1.01);
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.3s ease;
}

.iframe-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 43, 226, 0.1), transparent);
    z-index: 1;
    pointer-events: none;
}

.iframe-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    box-shadow: 0 0 10px var(--primary-color);
    z-index: 2;
}

/* Form Group Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light-text);
}

.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    background-color: var(--input-bg);
    color: var(--light-text);
    font-size: 1rem;
    cursor: pointer;
}

.form-group select option {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

/* Features Section Styles */
.features {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--card-bg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-item:hover::before {
    box-shadow: 0 0 10px var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.feature-item p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* SEO Content Section Styles */
.seo-content {
    background-color: var(--dark-bg);
    position: relative;
}

.content-block {
    margin-bottom: 40px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.content-block:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 10px;
}

.content-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
}

.content-block p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* List Styles for Content */
.ingredient-list, .strategies-list, .recipe-list {
    margin: 15px 0 20px 15px;
    padding-left: 15px;
}

.ingredient-list li, .strategies-list li, .recipe-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.ingredient-list li:before, .strategies-list li:before, .recipe-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
}

.recipe-list li:before {
    background-color: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
}

.strategies-list li:before {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    box-shadow: 0 0 8px var(--primary-color);
}

.ingredient-list li strong, .strategies-list li strong, .recipe-list li strong {
    display: inline-block;
    margin-right: 5px;
}

.recipe-list li {
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(139, 43, 226, 0.2);
}

.recipe-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.table-responsive {
    overflow-x: auto;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.product-table th,
.product-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.product-table thead th {
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.product-table tbody tr {
    background-color: var(--card-bg);
    transition: var(--transition);
}

.product-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

.product-table tbody tr:hover {
    background-color: rgba(139, 43, 226, 0.1);
}

/* Footer Section Styles */
.footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 70px 0 20px;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(139, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.footer-logo p {
    opacity: 0.8;
    color: var(--text-color);
}

.footer-links h3,
.footer-disclaimer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--accent-color);
}

.footer-links h3::after,
.footer-disclaimer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(127, 252, 0, 0.5);
    padding-left: 5px;
}

.footer-disclaimer p {
    opacity: 0.8;
    line-height: 1.8;
    color: var(--text-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .calculator-embed {
        max-width: 90%;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero {
        padding: 130px 0 60px;
    }
    
    .iframe-wrapper {
        padding-top: 110%;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

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

    .content-block h3 {
        font-size: 1.5rem;
    }

    section {
        padding: 60px 0;
    }
    
    .iframe-wrapper {
        padding-top: 150%;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .embed-container {
        padding: 15px;
    }
    
    .content-block {
        padding: 20px;
    }

    .footer-content {
        gap: 30px;
    }
    
    .ingredient-list li, .strategies-list li, .recipe-list li {
        padding-left: 20px;
    }
}

/* New Table Styles for Effect and Recipe tables */
.effects-table th,
.recipe-table th {
    background-color: rgba(139, 43, 226, 0.7);
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.effects-table thead th:first-child,
.recipe-table thead th:first-child {
    width: 25%;
}

.effects-table tr:hover,
.recipe-table tr:hover {
    background-color: rgba(139, 43, 226, 0.2);
    cursor: pointer;
}

.effects-table td,
.recipe-table td {
    transition: all 0.2s ease;
}

.product-table td {
    vertical-align: middle;
}

/* Filter inputs styling */
.table-filter {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 0;
    border: 1px solid rgba(139, 43, 226, 0.3);
    background-color: var(--input-bg);
    color: var(--text-color);
    border-radius: 4px;
    font-size: 0.9rem;
}

.table-filter:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(139, 43, 226, 0.5);
}

/* Style for H4 headings in content blocks */
.content-block h4 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin: 20px 0 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Background particle animation */
.bg-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(127, 252, 0, 0.05) 0%, rgba(127, 252, 0, 0.02) 30%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Loading indicator for iframe */
.loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(19, 19, 29, 0.8);
    z-index: 10;
    transition: opacity 0.5s ease;
    border-radius: 8px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(127, 252, 0, 0.2);
    border-top: 4px solid rgba(127, 252, 0, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-indicator p {
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 500;
}

.calculator-embed.loading .embed-container {
    opacity: 0.8;
}

.calculator-embed.loaded .embed-container {
    opacity: 1;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: var(--section-bg);
    position: relative;
    scroll-margin-top: 80px; /* 添加滚动边距，确保导航固定头部不遮挡内容 */
}

/* 为导航目标添加滚动边距 */
#faq-section, #guide-section {
    scroll-margin-top: 80px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(139, 43, 226, 0.2);
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item h4::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 8px var(--primary-color);
    transition: var(--transition);
}

.faq-item h4:hover {
    color: var(--primary-color);
}

.faq-item h4.active {
    color: var(--primary-color);
}

.faq-item h4.active::before {
    background-color: var(--accent-color);
    box-shadow: 0 0 12px var(--accent-color);
    content: '✓';
}

.faq-item p {
    padding-left: 25px;
}

.faq-item ul, 
.faq-item ol {
    margin-left: 25px;
}

@media (max-width: 576px) {
    .faq-item h4 {
        font-size: 1.1rem;
        padding-left: 22px;
    }
    
    .faq-item h4::before {
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }
    
    .faq-item p, 
    .faq-item ul, 
    .faq-item ol {
        padding-left: 22px;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.policy-header {
    margin-bottom: 30px;
    text-align: center;
}

.effective-date {
    font-style: italic;
    color: var(--accent-color);
    margin-top: 10px;
}

.policy-intro {
    margin-bottom: 40px;
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.policy-section {
    margin-bottom: 40px;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(139, 43, 226, 0.2);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.policy-number {
    background-color: var(--primary-color);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 10px;
}

.policy-list {
    list-style-type: none;
    padding-left: 0;
}

.policy-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.policy-list li::before {
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.contact-info {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px 0;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.policy-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px dashed rgba(139, 43, 226, 0.2);
    font-size: 0.9rem;
    color: var(--secondary-text);
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 0;
    }
    
    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .policy-section h3 {
        font-size: 1.2rem;
    }
}

/* Terms of Service Styles */
.terms-policy {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.terms-policy .policy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.terms-policy .policy-section p a {
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
}

.terms-policy .policy-section p a:hover {
    text-decoration-color: var(--accent-color);
}

/* About Page Styles */
.about-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.about-content .card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.about-content h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    background-color: rgba(139, 43, 226, 0.1);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.3rem;
}

.feature-text h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Contact Button */
.contact-info {
    margin: 20px 0;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-button i {
    margin-right: 10px;
}

.contact-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 43, 226, 0.3);
}

/* Legal Links */
.legal-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.mini-button {
    display: inline-flex;
    align-items: center;
    background-color: rgba(139, 43, 226, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mini-button i {
    margin-right: 8px;
}

.mini-button:hover {
    background-color: rgba(139, 43, 226, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-content .card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .contact-button {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Guide Page Styles */
.guide-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.guide-header {
    text-align: center;
    margin-bottom: 40px;
}

.guide-intro {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.guide-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.table-of-contents {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.table-of-contents h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.table-of-contents h3 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.toc-list {
    list-style-type: none;
    padding-left: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
    transition: var(--transition);
}

.toc-list a:hover {
    background-color: rgba(139, 43, 226, 0.1);
    color: var(--accent-color);
    transform: translateX(5px);
}

.guide-section-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.guide-section-content h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(139, 43, 226, 0.2);
    font-size: 1.5rem;
}

.guide-section-content h4 {
    color: var(--accent-color);
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
}

.guide-section-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Lists Styles */
.numbered-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.numbered-list li {
    margin-bottom: 12px;
}

.check-list {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 20px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.bullet-list {
    list-style-type: none;
    padding-left: 5px;
    margin-bottom: 20px;
}

.bullet-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.bullet-list li::before {
    content: "\f111";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.5rem;
}

.strain-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.strain-list li {
    background-color: rgba(139, 43, 226, 0.05);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

.strain-list li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 25px 0;
}

.products-table,
.ingredients-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.products-table th,
.ingredients-table th {
    background-color: rgba(139, 43, 226, 0.1);
    color: var(--primary-color);
    padding: 12px 15px;
    font-weight: 600;
}

.products-table td,
.ingredients-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(139, 43, 226, 0.1);
}

.products-table tr:hover,
.ingredients-table tr:hover {
    background-color: rgba(139, 43, 226, 0.05);
}

/* Recipe Cards */
.recipe-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.recipe-cards.advanced {
    grid-template-columns: repeat(2, 1fr);
}

.recipe-card {
    background-color: rgba(139, 43, 226, 0.05);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(139, 43, 226, 0.1);
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.recipe-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(139, 43, 226, 0.2);
    text-align: center;
}

.recipe-ingredients {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.recipe-ingredients li {
    padding: 5px 0;
}

.recipe-effects {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.recipe-cost {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* Button Styles */
.primary-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.primary-button i {
    margin-right: 10px;
}

.primary-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 43, 226, 0.3);
}

.tool-link {
    text-align: center;
    margin: 30px 0 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .guide-content {
        grid-template-columns: 1fr;
    }
    
    .table-of-contents {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    .recipe-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .recipe-cards,
    .recipe-cards.advanced {
        grid-template-columns: 1fr;
    }
    
    .guide-section-content {
        padding: 20px;
    }
}

/* FAQ Main Page Styles */
.faq-main-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-intro {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.faq-categories {
    margin-bottom: 30px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.category-tab {
    background-color: var(--card-bg);
    border: 1px solid rgba(139, 43, 226, 0.2);
    color: var(--text-color);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.category-tab:hover {
    background-color: rgba(139, 43, 226, 0.1);
    color: var(--accent-color);
}

.category-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.faq-section {
    display: none;
}

.faq-section.active {
    display: block;
}

.faq-category-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(139, 43, 226, 0.2);
    font-size: 1.5rem;
}

/* FAQ Item Adjustments for Categories Page */
.faq-main-section .faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-main-section .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-main-section .faq-item h4 {
    cursor: pointer;
}

.faq-main-section .faq-item ul,
.faq-main-section .faq-item ol {
    margin-top: 15px;
    margin-bottom: 15px;
}

.faq-main-section .faq-item ul li,
.faq-main-section .faq-item ol li {
    margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .category-tab {
        width: 100%;
        text-align: center;
    }
    
    .faq-main-section .faq-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .faq-intro {
        font-size: 1rem;
    }
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-left: 20px;
}

.current-language {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 4px;
    background-color: rgba(80, 250, 123, 0.1);
    border: 1px solid rgba(80, 250, 123, 0.4);
    transition: all 0.3s ease;
}

.current-language:hover {
    background-color: rgba(80, 250, 123, 0.2);
}

.current-language span {
    margin: 0 8px;
    color: #e1ffe1;
    font-weight: 500;
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background-color: #1a1a1a;
    border: 1px solid rgba(80, 250, 123, 0.4);
    border-radius: 4px;
    margin-top: 10px;
    padding: 10px 0;
    list-style: none;
    z-index: 100;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-dropdown li {
    padding: 0;
    margin: 0;
}

.language-dropdown li a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #e1ffe1;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.language-dropdown li a:hover {
    background-color: rgba(80, 250, 123, 0.1);
}

.language-dropdown li a .flag-icon {
    margin-right: 10px;
}

/* Mobile responsive adjustments for language selector */
@media (max-width: 768px) {
    .language-selector {
        position: static;
        margin-left: 0;
        margin-top: 15px;
    }
    
    .current-language {
        margin: 0 auto;
        max-width: 120px;
        justify-content: center;
    }
    
    .language-dropdown {
        width: 100%;
        left: 0;
        right: 0;
    }
}

@media (max-width: 576px) {
    .faq-intro {
        font-size: 1rem;
    }
}

/* Language Modal Styles */
.language-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-modal-content {
    background-color: #1a1a1a;
    border: 1px solid #50fa7b;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    animation: modal-appear 0.4s ease;
}

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

.language-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(80, 250, 123, 0.3);
}

.language-modal-header h3 {
    margin: 0;
    color: #50fa7b;
    font-size: 1.3rem;
}

.language-modal-close {
    color: #e1ffe1;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.language-modal-close:hover {
    color: #50fa7b;
}

.language-modal-body {
    padding: 20px;
}

.language-modal-body p {
    color: #e1ffe1;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.language-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.language-modal-actions button {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-modal-actions .switch-language-btn {
    background: linear-gradient(to right, #50fa7b, #28a428);
    color: #000;
    border: none;
}

.language-modal-actions .stay-language-btn {
    background-color: rgba(80, 250, 123, 0.1);
    color: #e1ffe1;
    border: 1px solid rgba(80, 250, 123, 0.3);
}

.language-modal-actions .switch-language-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(80, 250, 123, 0.3);
}

.language-modal-actions .stay-language-btn:hover {
    background-color: rgba(80, 250, 123, 0.2);
}

/* Mobile responsive adjustments for language modal */
@media (max-width: 576px) {
    .language-modal-content {
        width: 95%;
    }
    
    .language-modal-actions {
        flex-direction: column;
    }
    
    .language-modal-actions button {
        width: 100%;
    }
} 