/* --- Base Styles with Updated Color Palette --- */
:root {
    /* Primary Colors - Based on Login Design */
    --background-color: #F5F1E8; /* Beige/cream background */
    --text-color: #2C3E50; /* Dark navy for text */
    --primary-color: #D4AF37; /* Gold (matches coin) */
    --secondary-color: #6c757d; /* Grey for subtle text */
    --highlight-color: #2D8B7B; /* Teal/green for highlights */
    --navbar-bg: #FFFFFF; /* White header/card background */
    --footer-bg: #F5F1E8;
    --card-bg: #FFFFFF; /* White for cards */
    --box-shadow: rgba(0, 0, 0, 0.08);
    --border-color: #E0D9C8; /* Subtle border color */

    /* Hero Banner Colors */
    --hero-overlay-color: rgba(44, 62, 80, 0.75); /* Dark overlay using text-color */
    --hero-text-color: #ffffff;
    --hero-button-bg: #D4AF37; /* Gold button */
    --hero-button-hover: #B8941F; /* Darker gold on hover */

    /* Theme Toggle Switch Colors */
    --switch-bg-off: #ccc;
    --switch-bg-on: #D4AF37; /* Gold when active */
    --switch-slider-color: white;

    /* Text glow effect for banner */
    --text-glow-color: rgba(212, 175, 55, 0.6); /* Gold glow */
}

/* Dark theme variables */
[data-theme="dark"] {
    --background-color: #1A1A1A; /* Very dark background */
    --text-color: #E9ECEF; /* Light text */
    --primary-color: #E5B54A; /* Lighter gold for dark theme */
    --secondary-color: #adb5bd;
    --highlight-color: #3FA892; /* Lighter teal for dark theme */
    --navbar-bg: #2B2B2B; /* Dark header background */
    --footer-bg: #1A1A1A;
    --card-bg: #2B2B2B; /* Dark cards */
    --box-shadow: rgba(0, 0, 0, 0.4);
    --border-color: #3A3A3A;

    /* Hero Banner Colors for Dark Theme */
    --hero-overlay-color: rgba(0, 0, 0, 0.75);
    --hero-text-color: #ffffff;
    --hero-button-bg: #E5B54A; /* Lighter gold */
    --hero-button-hover: #D4AF37;

    /* Theme Toggle Switch Colors for Dark Mode */
    --switch-bg-off: #555;
    --switch-bg-on: #E5B54A;
    --switch-slider-color: #f1f1f1;

    /* Text glow effect for banner in dark mode */
    --text-glow-color: rgba(229, 181, 74, 0.5);
}

/* Universal box-sizing and reset default margins/paddings for full width elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* --- Header & Navbar --- */
header {
    background-color: var(--navbar-bg);
    box-shadow: 0 2px 10px var(--box-shadow);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    min-height: 70px;
    position: relative;
    flex-wrap: nowrap;
}

/* --- Logo Styling --- */
.navbar .logo {
    height: 40px;
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    margin: 0;
}

/* --- Navigation Links --- */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: var(--navbar-bg);
    box-shadow: 0 5px 10px var(--box-shadow);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    padding: 20px 0;
    z-index: 999;
    display: none;
}

.nav-links.active {
    transform: translateY(0);
    display: flex;
}

.nav-links li {
    margin: 10px 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* --- Hamburger Menu Icon --- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 2;
    margin: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Theme Toggle Switch --- */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    margin: 0;
}

.theme-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--switch-bg-off);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: var(--switch-slider-color);
    transition: .4s;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFFFFF"><path d="M12 3a9 9 0 1 0 9 9c0-.62-.06-1.23-.17-1.82A6.5 6.5 0 0 1 12 3z"/></svg>');
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center;
}

input:checked + .slider {
    background-color: var(--switch-bg-on);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--switch-bg-on);
}

input:checked + .slider:before {
    transform: translateX(22px);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFFFFF"><path d="M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12zm0-2a4 4 0 1 0 0-8 4 4 0 0 0 0 8zM11 1h2v3h-2V1zm0 20h2v3h-2v-3zM3.56 4.93l1.41-1.41 2.12 2.12-1.41 1.41zm14.85 14.85-1.41 1.41-2.12-2.12 1.41-1.41zm-1.41-14.85l2.12 2.12 1.41-1.41-2.12-2.12zM3.56 19.07l2.12-2.12 1.41 1.41-2.12 2.12zM0 11h3v2H0v-2zm21 0h3v2h-3v-2z"/></svg>');
}

.slider.round {
    border-radius: 28px;
}

.slider.round:before {
    border-radius: 50%;
}

/* --- Main Content (Homepage) --- */
main.home {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
}

/* --- Coming Soon Banner Section --- */
.coming-soon-banner {
    order: -1;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 20px 6rem 20px;   /* NEW - more top padding */
    min-height: 50vh;                /* NEW - taller banner */
    margin-bottom: 4rem;
    overflow: visible;               /* NEW - prevents clipping */
    background:
        linear-gradient(var(--hero-overlay-color), var(--hero-overlay-color)),
        url('../assets/hero-bg.jpg') no-repeat center center / cover;
    color: var(--hero-text-color);
}

[data-theme="dark"] .coming-soon-banner {
    background:
        linear-gradient(var(--hero-overlay-color), var(--hero-overlay-color)),
        url('../assets/hero-bg-dark.jpg') no-repeat center center / cover;
}

.coming-soon-banner h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-top: 0;                  /* NEW - no extra top margin */
    padding-top: 0;                 /* NEW - no extra top padding */
    color: var(--hero-text-color);
    line-height: 1.3;               /* NEW - better spacing */
    text-shadow: 0 0 15px var(--text-glow-color), 0 0 25px var(--text-glow-color);
}

.coming-soon-banner p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 2.5rem;
    color: var(--hero-text-color);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* --- Welcome Section --- */
.welcome-section {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    padding: 0 20px;
    text-align: center;
}

.welcome-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.welcome-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: var(--secondary-color);
}

.highlight {
    color: var(--highlight-color);
    font-weight: 700;
}

/* --- Features Overview Section --- */
.features-overview-section {
    background-color: var(--card-bg);
    padding: 5rem 20px;
    width: 100%;
    margin-bottom: 5rem;
    box-shadow: 0 5px 15px var(--box-shadow);
}

.features-overview-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.features-overview-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.features-overview-section .feature-item {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.features-overview-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.features-overview-section .feature-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* --- General Button Style --- */
.btn {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: 2px solid;
    cursor: pointer;
}

.btn.primary-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.btn.primary-btn:hover {
    background-color: var(--hero-button-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

.btn.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn.secondary-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.coming-soon-banner .btn {
    background-color: var(--hero-button-bg);
    color: var(--hero-text-color);
    border-color: var(--hero-button-bg);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.5);
}

.coming-soon-banner .btn:hover {
    background-color: var(--hero-button-hover);
    border-color: var(--hero-button-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

/* --- Footer --- */
footer {
    background-color: var(--navbar-bg);
    color: var(--text-color);
    padding: 3rem 0;
    box-shadow: 0 -2px 10px var(--box-shadow);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 0.5rem;
}

.footer-brand-slogan {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-links img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-social-links img:hover {
    transform: scale(1.1);
}

.footer-section h4 {
    font-size: 1.2rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

/* --- Content Page Styling --- */
main.content-page {
    flex-grow: 1;
    max-width: 900px;
    margin: 3rem auto 5rem auto;
    padding: 0 20px;
    text-align: left;
}

main.content-page h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.about-section {
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.how-it-works-brief .btn {
    margin-top: 1.5rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 2rem;
    text-align: center;
}

.impact-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.impact-item h3 {
    font-size: 1.4rem;
    color: var(--highlight-color);
    margin-bottom: 10px;
}

.impact-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--secondary-color);
}

/* --- Token Page Styling --- */
.token-overview-section {
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.token-overview-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.note-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-top: 2rem;
    border-left: 4px solid var(--highlight-color);
    padding: 15px;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--box-shadow);
}

.token-details-section,
.tokenomics-section,
.roadmap-preview-section {
    margin-bottom: 5rem;
}

.token-details-section h2,
.tokenomics-section h2,
.roadmap-preview-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.token-info-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--box-shadow);
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.token-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.token-info-card h3 {
    font-size: 1.8rem;
    color: var(--highlight-color);
    margin-bottom: 1.2rem;
    text-align: center;
}

.token-info-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.token-info-card p strong {
    color: var(--primary-color);
}

.token-info-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.token-info-card ul li {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-left: 25px;
    position: relative;
}

.token-info-card ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -2px;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.distribution-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distribution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.distribution-item h3 {
    font-size: 1.6rem;
    color: var(--highlight-color);
    margin-bottom: 10px;
}

.distribution-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.roadmap-preview-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.roadmap-preview-section ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    text-align: left;
}

.roadmap-preview-section ul li {
    background-color: var(--background-color);
    border-left: 5px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--box-shadow);
    font-size: 1.1rem;
    color: var(--text-color);
}

.roadmap-preview-section ul li strong {
    color: var(--highlight-color);
}

.roadmap-preview-section .btn {
    margin-top: 2rem;
}

/* --- Features Page Styling --- */
.features-intro-section {
    margin-bottom: 3.5rem;
    line-height: 1.8;
    text-align: center;
}

.features-intro-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid-section {
    margin-bottom: 5rem;
}

.features-grid-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* AI Feature Cards */
.feature-item.ai-feature {
    background: linear-gradient(145deg, var(--card-bg), var(--background-color));
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.feature-item.ai-feature:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.feature-item.ai-feature h3::before {
    content: "🤖 ";
}

.feature-item.ai-analytics {
    border-left: 5px solid var(--highlight-color);
    background: linear-gradient(145deg, var(--card-bg), var(--background-color));
}

.feature-item.ai-analytics h3::before {
    content: "📈 ";
}

@keyframes fadeUpSoft {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item.ai-feature,
.feature-item.ai-analytics {
    animation: fadeUpSoft 0.6s ease forwards;
}

.feature-item.ai-feature p,
.feature-item.ai-analytics p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

/* --- Contact Page Styling --- */
.contact-intro-section {
    margin-bottom: 3.5rem;
    line-height: 1.8;
    text-align: center;
}

.contact-intro-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section {
    margin-bottom: 5rem;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    outline: none;
}

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

.contact-form .btn {
    width: auto;
    display: block;
    margin: 30px auto 0 auto;
}

.contact-info-section {
    margin-bottom: 5rem;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    font-size: 1.4rem;
    color: var(--highlight-color);
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

.info-item p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item p a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}

/* --- FAQ Page Styling --- */
.faq-section {
    max-width: 900px;
    margin: 0 auto 5rem auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.4rem;
    color: var(--highlight-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-top: 0;
}

/* --- Policy Page Styling --- */
.policy-content {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    line-height: 1.8;
    color: var(--text-color);
}

.policy-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 1rem;
}

.policy-content li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
    color: var(--highlight-color);
}

.policy-date {
    margin-top: 3rem;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* --- Partners Page Styling --- */
.partners-intro-section {
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
}

.partners-intro-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.partner-form-section {
    margin-bottom: 5rem;
}

.partner-form-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.partner-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.partner-form .form-group label {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.partner-form .form-group input,
.partner-form .form-group select,
.partner-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-form .form-group input:focus,
.partner-form .form-group select:focus,
.partner-form .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    outline: none;
}

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

.partner-form .btn {
    width: auto;
    display: block;
    margin: 30px auto 0 auto;
}

/* --- Card Component Style --- */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 6px 20px var(--box-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card h3 {
    color: var(--highlight-color);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
}

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

/* --- Team Section Styles --- */
.team-section {
    text-align: center;
    margin-bottom: 40px;
}

.team-section p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    padding: 20px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.team-card h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.team-card .role {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.team-card .bio {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s, filter 0.3s;
}

.social-links img:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    .navbar {
        min-height: 60px;
        padding: 0.8rem 15px;
    }

    .navbar .logo {
        height: 35px;
    }

    .nav-links {
        top: 60px;
    }

    .nav-links li a {
        font-size: 1.1rem;
    }

    .theme-switch {
        width: 40px;
        height: 24px;
    }

    .slider:before {
        height: 16px;
        width: 16px;
        left: 3px;
        bottom: 3px;
    }

    input:checked + .slider:before {
        transform: translateX(16px);
    }

    .slider.round {
        border-radius: 24px;
    }

    .coming-soon-banner {
        padding: 4rem 15px;
        min-height: 35vh;
        margin-bottom: 3rem;
    }

    .coming-soon-banner h3 {
        font-size: 2.2rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .coming-soon-banner p {
        font-size: 1.2rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .welcome-section {
        margin-bottom: 4rem;
        padding: 0 15px;
    }

    .welcome-section h1 {
        font-size: 2.5rem;
    }

    .welcome-section p {
        font-size: 1rem;
    }

    .features-overview-section {
        padding: 4rem 15px;
        margin-bottom: 4rem;
    }

    .features-overview-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .features-overview-section .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 2rem;
    }

    .features-overview-section .feature-item {
        padding: 20px;
    }

    .features-overview-section .feature-item h3 {
        font-size: 1.3rem;
    }

    .features-overview-section .feature-item p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    main.content-page {
        margin: 2.5rem auto 4rem auto;
        padding: 0 15px;
    }

    main.content-page h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .about-section {
        margin-bottom: 3rem;
    }

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-item h3 {
        font-size: 1.2rem;
    }

    .token-details-section h2,
    .tokenomics-section h2,
    .roadmap-preview-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .token-info-card {
        padding: 25px;
        margin: 1.5rem auto;
    }

    .token-info-card h3 {
        font-size: 1.5rem;
    }

    .token-info-card p,
    .token-info-card ul li {
        font-size: 1rem;
    }

    .distribution-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .distribution-item {
        padding: 20px;
    }

    .distribution-item h3 {
        font-size: 1.4rem;
    }

    .distribution-item p {
        font-size: 0.95rem;
    }

    .roadmap-preview-section ul {
        padding: 0 10px;
    }

    .roadmap-preview-section ul li {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .features-intro-section {
        margin-bottom: 3rem;
    }

    .features-intro-section p {
        font-size: 1rem;
    }

    .features-grid-section {
        margin-bottom: 4rem;
    }

    .features-grid-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .feature-item.ai-feature,
    .feature-item.ai-analytics {
        border-left: none;
        border-top: 4px solid var(--primary-color);
        text-align: center;
    }

    .contact-intro-section {
        margin-bottom: 3rem;
    }

    .contact-intro-section p {
        font-size: 1rem;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        padding: 25px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-form .btn {
        padding: 15px 25px;
        font-size: 1.1rem;
        margin: 25px auto 0 auto;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-item {
        padding: 20px;
    }

    .info-item h3 {
        font-size: 1.2rem;
    }

    .info-item p {
        font-size: 0.95rem;
    }

    .faq-section {
        margin-bottom: 4rem;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }

    .faq-item p {
        font-size: 1rem;
    }

    .policy-content {
        margin-bottom: 4rem;
        line-height: 1.7;
    }

    .policy-content h2 {
        font-size: 1.8rem;
    }

    .policy-content p,
    .policy-content li {
        font-size: 1rem;
    }

    .partners-intro-section {
        margin-bottom: 2.5rem;
    }

    .partners-intro-section p {
        font-size: 1rem;
    }

    .partner-form-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .partner-form {
        padding: 25px;
    }

    .partner-form .form-group label {
        font-size: 1rem;
    }

    .partner-form .form-group input,
    .partner-form .form-group select,
    .partner-form .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .partner-form .form-group textarea {
        min-height: 100px;
    }

    .partner-form .btn {
        padding: 15px 25px;
        font-size: 1.1rem;
        margin: 25px auto 0 auto;
    }

    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.95rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .footer-section {
        align-items: flex-start;
    }

    .footer-section:first-child {
        grid-column: span 2;
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        min-height: 55px;
        padding: 0.6rem 10px;
    }

    .navbar .logo {
        height: 30px;
    }

    .coming-soon-banner {
        padding: 3rem 10px;
        min-height: 30vh;
        margin-bottom: 2.5rem;
    }

    .coming-soon-banner h3 {
        font-size: 1.8rem;
        padding: 0 5px;
    }

    .coming-soon-banner p {
        font-size: 1rem;
        padding: 0 5px;
    }

    .welcome-section {
        margin-bottom: 3rem;
        padding: 0 10px;
    }

    .welcome-section h1 {
        font-size: 2rem;
    }

    .welcome-section p {
        font-size: 0.9rem;
    }

    .features-overview-section {
        padding: 3rem 10px;
        margin-bottom: 3rem;
    }

    .features-overview-section h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    main.content-page {
        margin: 2rem auto 3rem auto;
        padding: 0 10px;
    }

    main.content-page h1 {
        font-size: 2.2rem;
    }

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

    .about-section h2 {
        font-size: 1.8rem;
    }

    .token-details-section h2,
    .tokenomics-section h2,
    .roadmap-preview-section h2 {
        font-size: 1.8rem;
    }

    .token-info-card {
        padding: 20px;
    }

    .token-info-card h3 {
        font-size: 1.3rem;
    }

    .distribution-item h3 {
        font-size: 1.2rem;
    }

    .features-intro-section {
        margin-bottom: 2.5rem;
    }

    .features-intro-section p {
        font-size: 0.95rem;
    }

    .features-grid-section {
        margin-bottom: 3rem;
    }

    .features-grid-section h2 {
        font-size: 1.8rem;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 20px;
    }

    .info-item {
        padding: 15px;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .partner-form-section h2 {
        font-size: 1.8rem;
    }

    .partner-form {
        padding: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section:first-child {
        grid-column: span 1;
        text-align: center;
        align-items: center;
    }
}

@media (max-height: 400px) and (max-width: 900px) and (orientation: landscape) {
    .coming-soon-banner {
        min-height: 60vh;
        padding: 2rem 15px;
    }

    .coming-soon-banner h3 {
        font-size: 2rem;
    }

    .coming-soon-banner p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}