:root {
    --primary-color: #0071e3;
    /* Apple Blue */
    --hover-color: #0077ed;
    --background-color: #ffffff;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --section-bg: #f5f5f7;
    --card-bg: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--background-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 28px;
    width: auto;
    border-radius: 6px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-size: 12px;
    color: var(--text-primary);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.lang-selector select {
    font-size: 12px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-family: inherit;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.07143;
    letter-spacing: -0.005em;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero p {
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-image-container {
    max-width: 1000px;
    height: 540px;
    /* Increased from 420px to support larger image width */
    margin: 0 auto 20px;
    position: relative;
    border-radius: 20px;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    /* Increased from 60% */
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 20px;
}

.hero-img.active {
    opacity: 1;
}

/* Responsive adjustments for fixed height */
@media (max-width: 768px) {
    .hero-image-container {
        height: 460px;
        /* Increased from 320px */
    }

    .hero-img {
        width: 90%;
        /* Increased width on tablet */
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        height: 300px;
        /* Increased from 200px */
    }

    .hero-img {
        width: 95%;
        /* Almost full width on mobile */
    }
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 17px;
    line-height: 1.17648;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(0, 113, 227, 0.1);
}

/* Hero Highlights */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 20px;
    /* Reduced from 80px */
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 40px;
    /* Reduced from 60px */
}

.highlight-card {
    padding: 0 40px;
    position: relative;
    transition: all 0.3s ease;
}

.highlight-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.highlight-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.highlight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0 !important;
    max-width: 280px !important;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
        border-top: none;
    }

    .highlight-card {
        padding: 0;
    }

    .highlight-card:not(:last-child)::after {
        display: none;
    }

    .highlight-card p {
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }

    .highlight-card {
        padding: 32px;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--section-bg);
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 17px;
}

/* Download Section */
.download {
    padding: 100px 0;
    text-align: center;
}

.section-desc {
    font-size: 21px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.download-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 18px;
    width: 160px;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.platform-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.platform-name {
    font-weight: 500;
}

.platform-requirement {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
    opacity: 0.8;
}

/* Download Actions for Android */
.download-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.download-btn {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-google-play {
    background-color: var(--text-primary);
    color: white;
}

.btn-google-play:hover {
    background-color: #000;
}

.btn-direct-apk {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px var(--primary-color);
}

.btn-direct-apk:hover {
    background-color: rgba(0, 113, 227, 0.05);
}

.download-card.platform-android {
    width: 220px;
    /* Slightly wider to accommodate buttons */
}

@media (max-width: 480px) {
    .download-card.platform-android {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--section-bg);
    font-size: 12px;
    color: var(--text-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    padding-left: 20px;
    border-left: 1px solid #d2d2d7;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.social-icon:hover {
    background-color: var(--accent-light);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.social-icon svg {
    display: block;
}

/* Privacy Page */
.privacy-section {
    padding: 120px 0 60px;
    background-color: var(--bg-primary);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 60px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.policy-content h2:first-of-type {
    margin-top: 20px;
}

.policy-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}

.policy-content p,
.policy-content div,
.policy-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

.highlight-box {
    background-color: var(--bg-secondary);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin: 20px 0;
    color: var(--text-primary) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Scenarios Section */
.scenarios {
    padding: 100px 0;
    background-color: var(--background-color);
    /* Similar to Features but maybe swap if features is gray */
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scenario-card {
    background: var(--section-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.scenario-card .emoji {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.scenario-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.scenario-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}



@media (max-width: 768px) {
    .scenario-grid {
        grid-template-columns: 1fr;
    }

    .hero-scenarios {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* Support Page */
.support-page {
    padding-top: 44px;
    /* Navbar height */
}

.support-hero {
    background-color: var(--section-bg);
    padding: 80px 0 60px;
    text-align: center;
}

.support-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.support-hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.support-categories {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.support-category-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.support-cat-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: var(--text-secondary);
}

.support-cat-card:hover {
    background-color: var(--section-bg);
    color: var(--text-primary);
}

.support-cat-card.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
}

.support-cat-card .icon {
    font-size: 20px;
}

.support-guides {
    padding: 60px 0 100px;
}

.guide-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.guide-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide-item {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.guide-item h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.guide-item p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.guide-item .steps {
    background-color: var(--section-bg);
    padding: 30px;
    border-radius: 12px;
}

.guide-item .steps p {
    margin-bottom: 12px;
    font-size: 16px;
}

.guide-item .steps p:last-child {
    margin-bottom: 0;
}

.guide-item strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .support-hero h1 {
        font-size: 32px;
    }

    .support-hero p {
        font-size: 17px;
    }

    .guide-item {
        padding: 24px;
    }

    .guide-item h2 {
        font-size: 22px;
    }
}

/* Studio Mode Section */
.studio-mode {
    padding: 120px 0;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
}

.studio-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.studio-text {
    flex: 1;
}

.studio-vis {
    flex: 1.2;
}

.studio-text .studio-category {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.studio-text .badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary-color);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.studio-text h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.studio-text h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #a1a1a6;
}

.studio-text p {
    font-size: 19px;
    line-height: 1.5;
    color: #86868b;
    margin-bottom: 40px;
}

.studio-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.studio-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 768px) {
    .studio-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .studio-text h2 {
        font-size: 32px;
    }

    .studio-text h3 {
        font-size: 20px;
    }

    .studio-img {
        transform: none;
    }
}

/* Automatic Transfer Section (Homepage) */
.auto-transfer {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    overflow: hidden;
}

.auto-transfer-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.auto-transfer-content {
    flex: 1;
}

.auto-transfer-vis {
    flex: 1.2;
}

.auto-transfer-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.auto-transfer-img:hover {
    transform: translateY(-5px);
}

.auto-transfer-content .badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auto-transfer-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.auto-transfer-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.auto-transfer-content p {
    font-size: 19px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .auto-transfer-container {
        flex-direction: column-reverse;
        /* Text on top on mobile? Or bottom. Standard is text top. flex-col */
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .auto-transfer-content h2 {
        font-size: 32px;
    }
}

/* Automatic Transfer Detail Page */

/* Detailed Hero */
.at-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, #f0f2f5 100%);
}

.at-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #0071e3, #00c6fb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.at-hero-content h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.at-hero-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.at-hero-img img {
    max-width: 80%;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    display: block;
}

/* Concept Section */
.at-concept {
    padding: 100px 0;
    background-color: var(--section-bg);
}

.concept-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.concept-card {
    flex: 1;
    padding: 40px;
    border-radius: 20px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.concept-card.problem {
    border-left: 4px solid #ff3b30;
}

.concept-card.solution {
    border-left: 4px solid #34c759;
    flex: 1.3;
}

.concept-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.concept-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.concept-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.concept-card.problem .concept-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #ff3b30;
    font-weight: bold;
}

.concept-summary {
    font-weight: 600;
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-primary);
}

.solution-summary {
    font-weight: 600;
    margin-top: 30px;
    font-size: 18px;
    color: #34c759;
}

.mt-4 {
    margin-top: 24px;
}

.condition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.condition-item {
    background: rgba(52, 199, 89, 0.1);
    color: #008035;
    /* Darker green */
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
}

@media (max-width: 768px) {
    .concept-grid {
        flex-direction: column;
    }
}

/* Scenarios Section */
.at-scenarios {
    padding: 100px 0;
    background-color: var(--background-color);
}

.scenario-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.scenario-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--section-bg);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-connector {
    flex: 0.5;
    height: 2px;
    background: #e5e5e5;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .scenario-steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }
}

/* Control Section */
.at-control {
    padding: 100px 0;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.at-control-container h2 {
    font-size: 40px;
    margin-bottom: 40px;
    background: linear-gradient(180deg, #fff 0%, #a1a1a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.control-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.control-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    color: #a1a1a6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.control-list li::before {
    content: "✓";
    color: var(--primary-color);
}

.control-summary {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
}

/* Scenario Visualization Image */
.scenario-vis {
    text-align: center;
    margin: 40px 0 60px;
}

.scenario-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .scenario-vis {
        margin: 30px 0 40px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 113, 227, 0.4), 0 0 40px rgba(0, 113, 227, 0.2);
        border-color: var(--primary-color);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
}

.highlight-pulse {
    animation: pulse 1.5s ease-in-out 3;
    border: 2px solid var(--primary-color) !important;
}