:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --background-dark: #0f172a;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --accent-color: #3b82f6;
    --error-color: #ef4444;
    --success-color: #22c55e;
    --card-bg: rgba(255, 255, 255, 0.05);
}

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

/* Skip to main content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
}

/* Hide breadcrumb on home page */
.breadcrumb {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.5;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Navbar Styles */
/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Mobile Menu Toggle */
/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Remove special styling for home-link class */
.nav-links a.home-link {
    color: var(--text-light);
    font-weight: 500;
}

/* Only one active underline at a time */
/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Header style moved to header.css */

/* Button Styles */
.btn-primary, .btn-secondary, .cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    border: none;
    font-size: 1.05rem;
    white-space: nowrap;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Main Content Adjustment without Legal Banner */
main {
    padding-top: 0; /* Remove the extra padding that accounted for the legal banner */
}

/* Hero, Features, Pricing, Affiliate, FAQ, and Technical Details sections moved to css/landing.css */

/* Footer */
/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

.logo-footer {
    height: 32px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.company-description {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

.highlight-link {
    color: var(--accent-color) !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.highlight-link i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.highlight-link:hover i {
    transform: translateX(3px);
}

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

/* Footer style moved to footer.css */

.copyright p {
    /* Footer style moved to footer.css */
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer style moved to footer.css */


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive Navbar */
@media (max-width: 768px) {
    /* Header style moved to header.css */
    
    /* Header style moved to header.css */
    
    /* Header style moved to header.css */
    
    .nav-content.active {
        transform: translateX(0);
        left: 0;
    }
    
    /* Header style moved to header.css */
    
    /* Header style moved to header.css */
    
    .nav-buttons .btn-primary,
    .nav-buttons .btn-secondary,
    .nav-buttons .btn-affiliate {
        width: 100%;
        padding: 0.8rem 1rem;
        text-align: center;
    }
}

/* Update pricing card button */
.pricing-card .cta-button {
    width: 100%;
    margin-top: 1rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 7rem 2rem 2rem; /* Reduced bottom padding for better spacing */
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.contact-form-section {
    padding: 2rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-card p {
    color: var(--secondary-color);
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section styles moved to css/landing.css */

/* Active Navigation Link */
/* Header style moved to header.css */

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-hero {
        padding: 6rem 2rem 2rem;
    }
}

/* Tutorial Page Styles */
.tutorial-hero {
    padding: 7rem 2rem 5rem; /* Adjusted from 9rem to 7rem top padding */
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tutorial-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tutorial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.tutorial-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.tutorial-icon i {
    font-size: 1.8rem;
    color: var(--text-light);
}

.tutorial-card h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.4rem;
}

.tutorial-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tutorial-card .btn-secondary {
    width: 100%;
    margin-top: auto;
}

.video-tutorials {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-tutorials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.video-thumbnail {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.video-thumbnail i {
    font-size: 3.5rem;
    color: var(--text-light);
    opacity: 0.8;
}

.video-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-card h3 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.video-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.video-card .btn-secondary {
    width: 100%;
    margin-top: auto;
}

/* Responsive Design for Tutorial Page */
@media (max-width: 768px) {
    .tutorial-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .tutorial-hero {
        padding-top: 6rem;
    }

    .video-thumbnail {
        height: 200px;
    }
}

/* Free Trial Page Styles */
.trial-hero {
    padding: 7rem 2rem 2rem; /* Reduced bottom padding for better spacing */
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trial-hero .section-title {
    color: var(--text-light);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.trial-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.trial-note {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.trial-form-section {
    padding: 2rem 2rem 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.trial-form-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.trial-form {
    max-width: 400px;
    margin: 0 auto;
}

.trial-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.trial-form input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.trial-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.trial-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-info p {
    color: var(--secondary-color);
}

.payment-methods {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods h2 {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.payment-icons i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--accent-color);
}

/* Responsive Design for Free Trial Page */
@media (max-width: 768px) {
    .trial-form-section {
        padding: 2rem 1rem 4rem;
    }

    .trial-form-container {
        padding: 2rem;
    }

    .trial-hero {
        padding: 6rem 2rem 2rem;
    }

    .payment-icons {
        gap: 1rem;
    }

    .payment-icons i {
        font-size: 2rem;
    }
}

/* Responsive Design - Landing page specific styles moved to css/landing.css */
@media (max-width: 768px) {
    .cta-button, .btn-primary, .btn-secondary {
        width: 100%;
        min-width: unset;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Landing page responsive styles moved to css/landing.css */

/* Technical Details Section styles moved to css/landing.css */

/* Tutorial Content Styles */
.tutorial-content {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tutorial-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.tutorial-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-size: 2rem;
}

.tutorial-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tutorial-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.4rem;
}

.tutorial-list {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.tutorial-list li {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

.tutorial-list strong {
    color: var(--text-light);
}

.tutorial-list.numbered {
    list-style-type: decimal;
}

.tutorial-image {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.tutorial-image i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tutorial-image span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.tutorial-note, .tutorial-warning {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.tutorial-warning {
    border-left-color: var(--error-color);
}

.tutorial-note i, .tutorial-warning i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.tutorial-warning i {
    color: var(--error-color);
}

.tutorial-note p, .tutorial-warning p {
    margin: 0;
    color: var(--secondary-color);
    line-height: 1.6;
}

.signal {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 0.3rem;
}

.signal.buy {
    background-color: rgba(34, 197, 94, 0.2);
    color: var(--success-color);
}

.signal.strong-buy {
    background-color: rgba(34, 197, 94, 0.4);
    color: var(--success-color);
}

.signal.sell {
    background-color: rgba(239, 68, 68, 0.2);
    color: var(--error-color);
}

.signal.strong-sell {
    background-color: rgba(239, 68, 68, 0.4);
    color: var(--error-color);
}

.code-block {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
    overflow-x: auto;
}

.code-block pre {
    color: var(--secondary-color);
    line-height: 1.5;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
}

/* Responsive styles for tutorial content */
@media (max-width: 768px) {
    .tutorial-content {
        padding: 2rem 1rem;
    }
    
    .tutorial-container {
        padding: 2rem 1.5rem;
    }
    
    .tutorial-step {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .step-number {
        margin-bottom: 0.5rem;
    }
    
    .tutorial-note, .tutorial-warning {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }
}

/* Trial Form Styles */
.trial-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.trial-form .loading-text {
    color: var(--accent-color);
    font-weight: 500;
    text-align: center;
    margin: 1rem 0;
    font-size: 1rem;
}

.trial-form .loading-text .dots {
    display: inline-block;
    min-width: 20px;
    text-align: left;
}

.trial-form .message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trial-form .message .success-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #12fc01;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trial-form .message .success-link:hover {
    color: #0ed600;
    text-decoration: underline;
}

/* Animation for moving underline */
@keyframes slideUnderline {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: right;
    }
}

.price-subtitle {
    font-size: 0.9rem;
    color: var(--secondary-color);
    opacity: 0.8;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Legal Links Styling */
.legal-disclaimer i {
    color: var(--error-color);
    font-size: 0.9rem;
}

.legal-link {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.legal-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.risk-disclosure-banner .legal-link {
    margin-left: 0.5rem;
}

/* Legal Pages Styling */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 7rem 2rem 4rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.last-updated {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.legal-content {
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.legal-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin: 1.5rem 0 0.8rem;
}

.legal-section p, .legal-section li {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-info {
    list-style-type: none;
    margin-left: 0 !important;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.contact-info li i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.alert-section {
    margin-bottom: 2.5rem;
}

.alert-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-box i {
    color: var(--error-color);
    font-size: 1.8rem;
    margin-top: 0.15rem;
}

.alert-box h2 {
    color: var(--error-color);
    margin-top: 0;
}

.alert-box p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 1.5rem 3rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
}

/* Risk Disclosure Banner in Footer */
.risk-disclosure-banner {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
}

.risk-disclosure-banner p {
    /* Footer style moved to footer.css */
    font-size: 0.9rem;
    color: var(--text-muted);
}

.risk-disclosure-banner i {
    color: var(--error-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .risk-disclosure-banner p {
        /* Footer style moved to footer.css */
        font-size: 0.8rem;
    }
}

/* Access Page Styles */
.access-instructions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.access-instructions h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.access-instructions h3 i {
    color: var(--accent-color);
}

.access-instructions ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.access-instructions li {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.indicator-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.indicator-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.indicator-link i {
    font-size: 0.8rem;
}

.message.working {
    color: var(--accent-color);
    font-weight: 500;
}

/* Customer Reviews Section - Styles moved to index.php */

/* Container for responsive widths across the site */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Alert messages */
.alert {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: alert-slide-down 0.5s ease-out forwards;
}

.alert-success {
    background-color: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.alert-error {
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.alert-content {
    display: flex;
    align-items: center;
    position: relative;
}

.alert-content i {
    font-size: 24px;
    margin-right: 15px;
}

.alert-content p {
    flex-grow: 1;
    margin: 0;
}

.alert-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: inherit;
    padding: 0 10px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes alert-slide-down {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Global Button Styles - Added for consistency across the site */
.btn-secondary, .btn-outline {
    border: 2px solid var(--primary-color) !important;
    background: transparent !important;
    color: var(--primary-color) !important;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.1) !important;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover, .btn-outline:hover {
    background: rgba(37, 99, 235, 0.1) !important;
    box-shadow: 0 0 0 2px var(--primary-color) !important;
    transform: translateY(-2px) !important;
}

/* Button styling should apply to all modules */
.nav-buttons .btn-secondary,
.hero-buttons .btn-secondary,
.pricing-card .btn-secondary,
.contact-form .btn-secondary,
.tutorial-card .btn-secondary,
.video-card .btn-secondary {
    border: 2px solid var(--primary-color) !important;
    background: transparent !important;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease, background-position 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
}

.form-group select:hover {
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.1);
}

.form-group select:focus {
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 15 12 9 18 15'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: right 1rem center;
    animation: select-pulse 1.5s infinite;
    transform: scale(1.01);
}

@keyframes select-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Custom styling for select options */
.form-group select option {
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 12px;
    border: none;
    animation: select-option-show 0.3s ease;
}

@keyframes select-option-show {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* JavaScript triggered animations for select elements */
.form-group select.select-active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.form-group select.select-changed {
    animation: select-changed 0.6s ease;
}

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