/* Base styles */
:root {
    --primary-color: #ff00ff;
    --secondary-color: #00ffff;
    --dark-bg: #120040;
    --darker-bg: #0a0022;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --gradient: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    --glow: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.5);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
}

.neon-text {
    color: var(--text-color);
    text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--primary-color);
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-color);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--text-color);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

.glow-effect {
    box-shadow: var(--glow);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 0, 34, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
}

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

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

.btn-contact {
    background: var(--gradient);
    padding: 8px 16px;
    border-radius: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-separator img {
    width: 100%;
    height: auto;
}

/* Analysis Section */
.analysis-section {
    background-color: var(--darker-bg);
}

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

.analysis-card {
    background: rgba(25, 0, 77, 0.5);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

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

.card-icon {
    margin-bottom: 20px;
}

.card-icon img {
    height: 60px;
    filter: drop-shadow(0 0 5px var(--secondary-color));
}

.analysis-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Comparison Section */
.comparison-section {
    background-color: var(--dark-bg);
}

.comparison-chart {
    margin-bottom: 40px;
    text-align: center;
}

.full-width-img {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.comparison-table th {
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
}

.comparison-table tr:hover {
    background-color: rgba(255, 0, 255, 0.1);
}

/* Equipment Section */
.equipment-section {
    background-color: var(--darker-bg);
}

.equipment-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.equipment-text {
    flex: 1;
    min-width: 300px;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.equipment-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 3px var(--secondary-color));
}

.feature-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.equipment-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.equipment-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

/* Profits Section */
.profits-section {
    background-color: var(--dark-bg);
}

.profits-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.profits-chart {
    flex: 1;
    min-width: 300px;
}

.profits-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.profits-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(25, 0, 77, 0.5);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 0, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon img {
    height: 40px;
    filter: drop-shadow(0 0 3px var(--primary-color));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-title {
    font-size: 1rem;
    margin-bottom: 5px;
}

.stat-period {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Blog Section */
.blog-section {
    background-color: var(--darker-bg);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-post {
    background: rgba(25, 0, 77, 0.5);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.blog-post-img {
    height: 200px;
    overflow: hidden;
}

.blog-post-img img, .blog-post-img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-img img,
.blog-post:hover .blog-post-img svg {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 20px;
}

.blog-post-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.blog-post-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.blog-post-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-bg);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--text-color);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 5px;
    color: var(--text-color);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 80px 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo, .footer-nav, .footer-legal, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 0, 34, 0.95);
    border-radius: 10px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.cookie-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-settings {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings h4 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.cookie-option {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.cookie-option input {
    margin-top: 5px;
    margin-right: 10px;
}

.cookie-option label {
    font-weight: 600;
    margin-right: 10px;
}

.cookie-option p {
    width: 100%;
    margin-top: 5px;
    margin-left: 25px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hidden {
    display: none;
}

/* Blog Pages Specific Styles */
.blog-hero {
    height: 300px;
    background-color: var(--darker-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.blog-hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.blog-hero-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.blog-wave {
    width: 100%;
    height: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-article {
    background: rgba(25, 0, 77, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
}

.blog-date {
    color: var(--secondary-color);
}

.blog-category {
    color: var(--primary-color);
}

.blog-content h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.blog-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    flex-grow: 1;
}

.read-more-btn {
    align-self: flex-start;
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more-btn::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(5px);
}

/* Subscribe Section */
.subscribe-section {
    background-color: var(--darker-bg);
    text-align: center;
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-content p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.subscribe-form .form-group {
    flex: 1;
    min-width: 250px;
}

/* Article Pages Specific Styles */
.article-content {
    padding: 120px 0 80px;
}

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

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.article-date {
    color: var(--secondary-color);
}

.article-category {
    color: var(--primary-color);
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.article-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.article-image {
    margin-bottom: 40px;
    text-align: center;
}

.article-svg {
    max-width: 800px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.article-body h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

.article-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.article-section {
    margin-bottom: 40px;
}

.article-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.article-section ul, .article-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-section li {
    margin-bottom: 10px;
}

.info-box {
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid var(--secondary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    flex-shrink: 0;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.article-chart {
    margin: 30px 0;
}

.chart-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
}

.chart-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    background: rgba(255, 0, 255, 0.2);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-share span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.share-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.share-icon:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

/* Thanks Page */
.thanks-section {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-text {
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.thanks-animation {
    margin: 40px 0;
}

.wave-animation {
    width: 100%;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Legal Pages */
.legal-content {
    padding: 120px 0 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.legal-section p, .legal-section ul, .legal-section ol {
    margin-bottom: 15px;
}

.legal-section ul, .legal-section ol {
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
}

.cookies-table-container {
    overflow-x: auto;
    margin: 20px 0;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.cookies-table th, .cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    font-size: 0.9rem;
}

.cookies-table th {
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
}

.cookies-table tr:hover {
    background-color: rgba(255, 0, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        border-radius: 3px;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 0, 34, 0.95);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }
    
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav li {
        margin-left: 0;
    }
    
    .equipment-content, .profits-content, .contact-content {
        flex-direction: column;
    }
    
    .article-title, .legal-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .thanks-actions {
        flex-direction: column;
    }
}