/* Global Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0A0A0A;
    color: #F5F5DC;
    line-height: 1.6;
}

a {
    color: #00BFFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    color: #D4AF37;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #D4AF37;
    color: #0A0A0A;
}

.btn-primary:hover {
    background-color: #C0A030;
}

.btn-secondary {
    background-color: #0077BE;
    color: #F5F5DC;
}

.btn-secondary:hover {
    background-color: #005F99;
}

.btn-accent {
    background-color: #FF4500;
    color: #F5F5DC;
}

.btn-accent:hover {
    background-color: #E03D00;
}

.btn-yellow {
    background-color: #FFD700;
    color: #0A0A0A;
}

.btn-yellow:hover {
    background-color: #E6C300;
}

.btn-red {
    background-color: #DC143C;
    color: #F5F5DC;
}

.btn-red:hover {
    background-color: #C31235;
}

.btn-green {
    background-color: #32CD32;
    color: #0A0A0A;
}

.btn-green:hover {
    background-color: #2AAE2A;
}

.surface {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.surface2 {
    background-color: #0F0F0F;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Visual Tool Product Specific Styles */
.visual-tool-product .header {
    background-color: #1A1A1A;
    padding: 15px 0;
    border-bottom: 1px solid #36454F;
}

.visual-tool-product .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visual-tool-product .header .logo img {
    height: 40px;
}

.visual-tool-product .header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.visual-tool-product .header .nav li {
    margin-left: 20px;
}

.visual-tool-product .header .nav a {
    color: #F5F5DC;
    font-weight: bold;
    transition: color 0.3s ease;
}

.visual-tool-product .header .nav a:hover {
    color: #D4AF37;
}

.visual-tool-product .hero {
    background-color: #0F0F0F;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #36454F;
}

.visual-tool-product .hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.visual-tool-product .hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #A9A9A9;
}

.visual-tool-product .hero .cta-buttons a {
    margin: 0 10px;
}

.tool-flow {
    background-color: #1A1A1A;
    padding: 60px 0;
}

.tool-flow .container {
    text-align: center;
}

.tool-flow h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.tool-flow .steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.tool-flow .step {
    width: 30%;
    min-width: 250px;
    text-align: center;
    margin-bottom: 30px;
}

.tool-flow .step .icon {
    font-size: 3em;
    color: #D4AF37;
    margin-bottom: 15px;
}

.tool-flow .step h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.tool-flow .step p {
    color: #A9A9A9;
}

.feature-rack {
    background-color: #0F0F0F;
    padding: 60px 0;
}

.feature-rack .container {
    text-align: center;
}

.feature-rack h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.feature-rack .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-rack .feature-item {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
}

.feature-rack .feature-item .icon {
    font-size: 2em;
    color: #00BFFF;
    margin-bottom: 15px;
}

.feature-rack .feature-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.feature-rack .feature-item p {
    color: #A9A9A9;
}

.guide-panel {
    background-color: #0A0A0A;
    padding: 60px 0;
}

.guide-panel .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guide-panel .guide-content {
    flex: 1;
    min-width: 300px;
}

.guide-panel h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.guide-panel p {
    font-size: 1.1em;
    color: #A9A9A9;
    margin-bottom: 20px;
}

.guide-panel .guide-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.guide-panel .guide-image img {
    max-width: 100%;
    border-radius: 8px;
}

.content-directory {
    background-color: #1A1A1A;
    padding: 60px 0;
}

.content-directory .container {
    text-align: center;
}

.content-directory h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.content-directory .sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.content-directory .section-item {
    background-color: #0F0F0F;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease;
}

.content-directory .section-item:hover {
    transform: translateY(-5px);
}

.content-directory .section-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #D4AF37;
}

.content-directory .section-item p {
    font-size: 0.95em;
    color: #A9A9A9;
    margin-bottom: 15px;
}

.content-directory .section-item .articles-count {
    font-size: 0.85em;
    color: #0077BE;
}

.review-band {
    background-color: #0F0F0F;
    padding: 60px 0;
}

.review-band .container {
    text-align: center;
}

.review-band h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.review-band .reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-band .review-item {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
}

.review-band .review-item .author {
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 10px;
}

.review-band .review-item .stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.review-band .review-item .stars::before {
    content: '★';
}

.review-band .review-item p {
    font-style: italic;
    color: #A9A9A9;
}

/* Section Page Styles */
.layout-section-page .header {
    background-color: #1A1A1A;
    padding: 15px 0;
    border-bottom: 1px solid #36454F;
}

.layout-section-page .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.layout-section-page .header .logo img {
    height: 40px;
}

.layout-section-page .header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.layout-section-page .header .nav li {
    margin-left: 20px;
}

.layout-section-page .header .nav a {
    color: #F5F5DC;
    font-weight: bold;
    transition: color 0.3s ease;
}

.layout-section-page .header .nav a:hover {
    color: #D4AF37;
}

.section-hero {
    background-color: #0F0F0F;
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid #36454F;
}

.section-hero h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #D4AF37;
}

.section-hero p {
    font-size: 1.1em;
    color: #A9A9A9;
}

.scenario-resource-cards {
    background-color: #0A0A0A;
    padding: 60px 0;
}

.scenario-resource-cards .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.scenario-resource-cards .card-item {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.scenario-resource-cards .card-item:hover {
    transform: translateY(-5px);
}

.scenario-resource-cards .card-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.scenario-resource-cards .card-content {
    padding: 20px;
}

.scenario-resource-cards .card-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #D4AF37;
}

.scenario-resource-cards .card-content p {
    font-size: 0.95em;
    color: #A9A9A9;
    margin-bottom: 15px;
}

.scenario-resource-cards .card-content .read-more {
    color: #00BFFF;
    font-weight: bold;
}

/* Article Page Styles */
.layout-article-page .header {
    background-color: #1A1A1A;
    padding: 15px 0;
    border-bottom: 1px solid #36454F;
}

.layout-article-page .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.layout-article-page .header .logo img {
    height: 40px;
}

.layout-article-page .header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.layout-article-page .header .nav li {
    margin-left: 20px;
}

.layout-article-page .header .nav a {
    color: #F5F5DC;
    font-weight: bold;
    transition: color 0.3s ease;
}

.layout-article-page .header .nav a:hover {
    color: #D4AF37;
}

.article-layout {
    background-color: #0A0A0A;
    padding: 60px 0;
}

.article-layout .container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.article-content {
    flex: 2;
    min-width: 400px;
}

.article-content article {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 30px;
}

.article-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #D4AF37;
}

.article-content .summary {
    font-size: 1.2em;
    color: #A9A9A9;
    margin-bottom: 30px;
}

.article-content .content p {
    margin-bottom: 20px;
    color: #F5F5DC;
}

.article-content .content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-sidebar {
    flex: 1;
    min-width: 250px;
}

.article-sidebar .sidebar-section {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.article-sidebar .sidebar-section h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #D4AF37;
}

.article-sidebar ul {
    list-style: none;
    padding: 0;
}

.article-sidebar li {
    margin-bottom: 10px;
}

.article-sidebar a {
    color: #F5F5DC;
    transition: color 0.3s ease;
}

.article-sidebar a:hover {
    color: #00BFFF;
}

/* Download Page Styles */
.layout-download-page .header {
    background-color: #1A1A1A;
    padding: 15px 0;
    border-bottom: 1px solid #36454F;
}

.layout-download-page .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.layout-download-page .header .logo img {
    height: 40px;
}

.layout-download-page .header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.layout-download-page .header .nav li {
    margin-left: 20px;
}

.layout-download-page .header .nav a {
    color: #F5F5DC;
    font-weight: bold;
    transition: color 0.3s ease;
}

.layout-download-page .header .nav a:hover {
    color: #D4AF37;
}

.download-section {
    background-color: #0A0A0A;
    padding: 60px 0;
}

.download-section .container {
    text-align: center;
}

.download-section h1 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #D4AF37;
}

.download-section .install-steps {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.download-section .install-steps h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #D4AF37;
}

.download-section .install-steps ol li {
    margin-bottom: 15px;
    color: #F5F5DC;
}

.download-section .install-steps ol li strong {
    color: #00BFFF;
}

.download-section .compatibility {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.download-section .compatibility h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #D4AF37;
}

.download-section .compatibility ul li {
    margin-bottom: 10px;
    color: #F5F5DC;
}

.download-section .compatibility ul li strong {
    color: #00BFFF;
}

.download-section .faq {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.download-section .faq h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #D4AF37;
}

.download-section .faq .question {
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 10px;
}

.download-section .faq .answer {
    color: #A9A9A9;
    margin-bottom: 20px;
}

.download-section .features-list-download {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.download-section .features-list-download h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #D4AF37;
}

.download-section .features-list-download .feature-item {
    margin-bottom: 15px;
}

.download-section .features-list-download .feature-item .icon {
    color: #00BFFF;
    margin-right: 10px;
}

.download-section .features-list-download .feature-item strong {
    color: #F5F5DC;
}

.download-section .features-list-download .feature-item p {
    color: #A9A9A9;
}

.download-section .reviews-download {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.download-section .reviews-download h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #D4AF37;
}

.download-section .review-item {
    margin-bottom: 20px;
}

.download-section .review-item .author {
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 10px;
}

.download-section .review-item .stars {
    color: #FFD700;
    margin-bottom: 10px;
}

.download-section .review-item p {
    font-style: italic;
    color: #A9A9A9;
}

.download-cta {
    background-color: #0F0F0F;
    padding: 60px 0;
    text-align: center;
}

.download-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #D4AF37;
}

.download-cta p {
    font-size: 1.1em;
    color: #A9A9A9;
    margin-bottom: 30px;
}

.download-cta .app-icon img {
    max-width: 100px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 20px;
}

.download-cta .qr-code img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #1A1A1A;
    color: #A9A9A9;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid #36454F;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.footer .footer-links li {
    margin: 0 15px;
}

.footer .footer-links a {
    color: #A9A9A9;
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: #D4AF37;
}

.footer .copyright {
    margin-top: 10px;
}

/* Footer Page Specific Styles */
.footer-page-layout .header {
    background-color: #1A1A1A;
    padding: 15px 0;
    border-bottom: 1px solid #36454F;
}

.footer-page-layout .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-page-layout .header .logo img {
    height: 40px;
}

.footer-page-layout .header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.footer-page-layout .header .nav li {
    margin-left: 20px;
}

.footer-page-layout .header .nav a {
    color: #F5F5DC;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-page-layout .header .nav a:hover {
    color: #D4AF37;
}

.footer-page-content {
    background-color: #0A0A0A;
    padding: 60px 0;
}

.footer-page-content .container {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.footer-page-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #D4AF37;
}

.footer-page-content .page-image img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-page-content .content p {
    font-size: 1.1em;
    color: #F5F5DC;
    margin-bottom: 20px;
}

.footer-page-content .comments {
    margin-top: 30px;
    text-align: left;
}

.footer-page-content .comments h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #D4AF37;
}

/* Login/Register Page Styles */
.auth-layout {
    background-color: #0A0A0A;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-layout .auth-form {
    background-color: #1A1A1A;
    border: 1px solid #36454F;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-layout .auth-form h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #D4AF37;
}

.auth-layout .auth-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.auth-layout .auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #F5F5DC;
}

.auth-layout .auth-form input[type="text"],
.auth-layout .auth-form input[type="email"],
.auth-layout .auth-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #36454F;
    border-radius: 5px;
    background-color: #0F0F0F;
    color: #F5F5DC;
    box-sizing: border-box;
}

.auth-layout .auth-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1em;
}

.auth-layout .auth-form .toggle-auth {
    margin-top: 20px;
    font-size: 0.95em;
    color: #A9A9A9;
}

.auth-layout .auth-form .toggle-auth a {
    color: #00BFFF;
    font-weight: bold;
}

/* Media Queries */
@media (max-width: 1024px) {
    .visual-tool-product .hero h1 {
        font-size: 2.5em;
    }

    .tool-flow .step {
        width: 45%;
    }

    .feature-rack .features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .guide-panel .container {
        flex-direction: column;
    }

    .content-directory .sections {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .article-layout .container {
        flex-direction: column;
    }

    .article-content, .article-sidebar {
        flex: none;
        width: 100%;
    }

    .footer .container {
        flex-direction: column;
    }

    .footer .footer-links {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .visual-tool-product .header .container,
    .layout-section-page .header .container,
    .layout-article-page .header .container,
    .layout-download-page .header .container {
        flex-direction: column;
        text-align: center;
    }

    .visual-tool-product .header .nav ul,
    .layout-section-page .header .nav ul,
    .layout-article-page .header .nav ul,
    .layout-download-page .header .nav ul {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    .visual-tool-product .header .nav li,
    .layout-section-page .header .nav li,
    .layout-article-page .header .nav li,
    .layout-download-page .header .nav li {
        margin: 5px 0;
    }

    .visual-tool-product .hero {
        padding: 40px 0;
    }

    .visual-tool-product .hero h1 {
        font-size: 2em;
    }

    .tool-flow {
        padding: 40px 0;
    }

    .tool-flow h2 {
        font-size: 2em;
    }

    .tool-flow .step {
        width: 100%;
    }

    .feature-rack {
        padding: 40px 0;
    }

    .feature-rack h2 {
        font-size: 2em;
    }

    .guide-panel {
        padding: 40px 0;
    }

    .guide-panel h2 {
        font-size: 2em;
    }

    .content-directory {
        padding: 40px 0;
    }

    .content-directory h2 {
        font-size: 2em;
    }

    .content-directory .sections {
        grid-template-columns: 1fr;
    }

    .review-band {
        padding: 40px 0;
    }

    .review-band h2 {
        font-size: 2em;
    }

    .section-hero {
        padding: 30px 0;
    }

    .section-hero h1 {
        font-size: 2.5em;
    }

    .scenario-resource-cards {
        padding: 40px 0;
    }

    .scenario-resource-cards .card-item {
        min-width: 280px;
    }

    .article-layout {
        padding: 40px 0;
    }

    .article-content article {
        padding: 20px;
    }

    .article-content h1 {
        font-size: 2em;
    }

    .article-sidebar {
        margin-top: 30px;
    }

    .download-section {
        padding: 40px 0;
    }

    .download-section h1 {
        font-size: 2.5em;
    }

    .download-section .install-steps,
    .download-section .compatibility,
    .download-section .faq,
    .download-section .features-list-download,
    .download-section .reviews-download {
        padding: 20px;
    }

    .download-cta {
        padding: 40px 0;
    }

    .download-cta h2 {
        font-size: 2em;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-page-content {
        padding: 40px 0;
    }

    .footer-page-content .container {
        padding: 25px;
    }

    .footer-page-content h1 {
        font-size: 2.2em;
    }

    .auth-layout .auth-form {
        padding: 30px;
        margin: 20px;
    }

    .auth-layout .auth-form h1 {
        font-size: 2em;
    }
}