/* NoteDown Design System - Deta Surf Inspired */

:root {
    /* Colors */
    --color-primary: #0070f3;
    /* Bright Blue */
    --color-primary-dark: #0056b3;
    --color-background-top: #2d9cdb;
    /* Light Blue Sky */
    --color-background-bottom: #ffffff;
    --color-text-main: #333333;
    --color-text-muted: #666666;
    --color-surface: rgba(255, 255, 255, 0.9);
    --color-surface-glass: rgba(255, 255, 255, 0.7);

    /* Gradients */
    --gradient-hero: linear-gradient(180deg, var(--color-background-top) 0%, var(--color-background-bottom) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* BorderRadius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background: var(--gradient-hero);
    background-attachment: fixed;
    /* Parallax-like effect */
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.text-center {
    text-align: center;
}

/* Header */
.site-header {
    padding: var(--spacing-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: white;
    /* Contrast against blue sky */
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 500;
}

.btn-github {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: background 0.3s ease;
}

.btn-github:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background-color: #0085ff;
    color: white;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #0073e6;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    color: white;
    position: relative;
}

.pill-beta {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    display: inline-flex;
    /* Changed to flex for alignment */
    align-items: center;
    gap: 8px;
    /* Space between dot and text */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards 0.2s;
}

/* Green Dot */
.pill-beta::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    /* Green color */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
    /* Glow effect */
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    opacity: 0.9;
    font-family: var(--font-body);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-image-container {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    padding: 10px;
    /* Space for the "border" effect */
    background: rgba(255, 255, 255, 0.2);
    /* Translucent background */
    backdrop-filter: blur(10px);
    /* Blurry effect */
    border-radius: 20px;
    /* Rounded corners */
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* Subtle border definition */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* Depth */
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
    /* Smooth fade from bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-img {
    border-radius: 12px;
    /* Slightly less rounded than container to nest well */
    width: 100%;
    height: auto;
    display: block;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Floating Elements (Background) */
.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

/* Hero Cloud Animation */
/* Hero Cloud Animation */
.hero-cloud {
    position: absolute;
    top: 28%;
    left: -600px;
    width: 600px;
    /* Much bigger */
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
    animation: cloudInLeft 5s ease-out forwards, cloudHover 6s ease-in-out infinite 5s;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-cloud-2 {
    top: 40%;
    left: auto;
    right: -600px;
    /* Start from right */
    width: 500px;
    /* Different size */
    animation: cloudInRight 6s ease-out forwards, cloudHover 7s ease-in-out infinite 6s;
}

@keyframes cloudInLeft {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    100% {
        transform: translateX(calc(50vw - 300px + 100px));
    }

    /* Target center-leftish */
}

@keyframes cloudInRight {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    100% {
        transform: translateX(calc(-50vw + 250px - 100px));
    }

    /* Target center-rightish */
}

@keyframes cloudHover {

    0%,
    100% {
        transform: translateY(0) scale(1) translateX(var(--tx, 0));
    }

    50% {
        transform: translateY(-20px) scale(1.02) translateX(var(--tx, 0));
    }
}

/* Because CSS variables in keyframes are tricky without Houdini or specific setup for the final state,
   let's use a simpler approach: wrap the clouds or just use specific hover animations per cloud. 
   The simplest robust way is specific keyframes. */

@keyframes cloudHoverLeft {

    0%,
    100% {
        transform: translateY(0) scale(1) translateX(calc(50vw - 200px));
    }

    50% {
        transform: translateY(-20px) scale(1.02) translateX(calc(50vw - 200px));
    }
}

@keyframes cloudHoverRight {

    0%,
    100% {
        transform: translateY(0) scale(1) translateX(calc(-50vw + 150px));
    }

    50% {
        transform: translateY(-20px) scale(1.02) translateX(calc(-50vw + 150px));
    }
}

/* Re-defining the animation to use specific hovers */
.hero-cloud {
    animation: cloudInLeft 5s ease-out forwards, cloudHoverLeft 6s ease-in-out infinite 5s;
}

.hero-cloud-2 {
    animation: cloudInRight 6s ease-out forwards, cloudHoverRight 7s ease-in-out infinite 6s;
}

/* Redefine entry to match the hover start point exactly to avoid jump */
@keyframes cloudInLeft {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    100% {
        transform: translateX(calc(50vw - 200px));
        opacity: 0.9;
    }
}

@keyframes cloudInRight {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    100% {
        transform: translateX(calc(-50vw + 150px));
        opacity: 0.9;
    }
}

.float-2 {
    bottom: 30%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.float-3 {
    top: 15%;
    right: 10%;
    animation: float 7s ease-in-out infinite 1s;
}

.float-4 {
    bottom: 20%;
    left: 5%;
    animation: float 9s ease-in-out infinite reverse 2s;
}

.float-5 {
    top: 40%;
    right: 5%;
    animation: float 11s ease-in-out infinite 0.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Features - Command Palette */
.features-section {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    /* Reduced top padding */
    background: transparent;
}

.command-demo {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    /* Deeper shadow for "floating" feel */
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    text-align: left;
    position: relative;
    min-height: 300px;
    /* Fixed height for interaction */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
    /* System font for Notion feel */
    color: #37352f;
}

.editor-block {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.drag-handle {
    color: #d0d0d0;
    cursor: pointer;
    padding: 2px;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.2s;
    user-select: none;
    font-size: 0;
    /* Hide text */
}

.drag-handle::before {
    content: '⋮⋮';
    font-size: 16px;
}

.editor-block:hover .drag-handle {
    opacity: 1;
}

.editor-content {
    font-size: 16px;
    line-height: 1.5;
    flex: 1;
    display: flex;
    align-items: center;
}

.cursor {
    color: var(--color-primary);
    animation: blink 1s step-end infinite;
    margin-left: 1px;
}

/* Slash Menu */
.slash-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: white;
    border-radius: var(--radius-sm);
    /* Match container */
    z-index: 100;
    animation: fadeIn 0.2s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    pointer-events: none;
    /* Make non-interactive as requested */
}

.slash-menu::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

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

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

.menu-section {
    font-size: 11px;
    font-weight: 500;
    line-height: 120%;
    user-select: none;
    text-transform: uppercase;
    color: rgba(55, 53, 47, 0.65);
    padding: 8px 14px 6px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 14px;
    /* Tighter padding */
    cursor: pointer;
    transition: background 0.02s;
    min-height: 45px;
    /* Consistent height */
    margin: 0 4px;
    /* Margin for hover effect */
    border-radius: 4px;
}

.menu-item:hover,
.menu-item.active {
    background: rgba(55, 53, 47, 0.08);
}

/* Minimalist Slash Menu */
/* .slash-menu width handled above */

.menu-icon {
    display: none;
    /* Hide icons as requested */
}

.menu-item {
    gap: 0;
    /* Remove gap since icon is gone */
    padding: 6px 16px;
}

.menu-text {
    margin-left: 0;
}

.menu-title {
    font-size: 14px;
    font-weight: 500;
}

.menu-desc {
    font-size: 12px;
    opacity: 0.6;
}

/* Footer Redesign - Full Width */
.site-footer-redesigned {
    text-align: center;
    padding-top: var(--spacing-xl);
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    background: white;
    margin-top: var(--spacing-xl);
    width: 100vw;
    /* Force full viewport width */
    margin-left: calc(50% - 50vw);
    /* Center it to break out of container */
}

.footer-illustration {
    width: 100%;
    height: 400px;
    /* Taller */
    background-image: url('assets/images/sunflowers.png');
    /* User provided image */
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    pointer-events: none;
    /* Let clicks pass through if needed */
}

/* Hero Sunflowers (Light Yellow) */
.float-sunflower {
    color: rgba(255, 223, 0, 0.3);
    /* Light yellow, translucent */
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.fs-1 {
    top: 15%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
    font-size: 2rem;
}

.fs-2 {
    top: 60%;
    right: 8%;
    animation: float 10s ease-in-out infinite reverse;
    font-size: 2.5rem;
}

.fs-3 {
    top: 80%;
    left: 15%;
    animation: float 12s ease-in-out infinite 1s;
    font-size: 1.5rem;
}

/* Typing Effect Cursor */
.typing-cursor::after {
    content: '|';
    color: var(--color-primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Features - Detailed */
.features-detailed {
    padding: var(--spacing-xl) 0;
    max-width: 900px;
    margin: 0 auto;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-lg);
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-main);
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* Sticky Note Demo */
.sticky-note-container {
    flex: 1;
    height: 300px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    position: relative;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.sticky-note {
    width: 200px;
    height: 200px;
    background: #fff9c4;
    /* Classic yellow */
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md);
    position: absolute;
    top: 50px;
    left: 50px;
    cursor: grab;
    transform: rotate(-2deg);
    font-family: 'Inter', sans-serif;
    /* Handwriting font would be better but keeping it simple */
    font-size: 0.9rem;
    color: #333;
    transition: box-shadow 0.2s;
}

.sticky-note:active {
    cursor: grabbing;
    box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.15);
    transform: rotate(0deg) scale(1.02);
}

.pin {
    width: 12px;
    height: 12px;
    background: #e53935;
    border-radius: 50%;
    margin: -25px auto 10px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Drag Hint Animation */
.drag-hint {
    position: absolute;
    top: 40px;
    right: 40px;
    pointer-events: none;
    transform: rotate(10deg);
    opacity: 0.8;
}

.draw-path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawLine 2.5s ease-in-out infinite;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 120;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        stroke-dashoffset: 0;
    }

    80% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* To-do Demo */
.todo-demo {
    flex: 1;
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.todo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.todo-item.checked {
    text-decoration: line-through;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* About & Manifesto */
.about-section,
.manifesto-section {
    padding: var(--spacing-xl) 0;
    max-width: 700px;
    margin: 0 auto;
}

.bio-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-top: var(--spacing-md);
}

.manifesto-content {
    margin-top: var(--spacing-lg);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.manifesto-content p {
    margin-bottom: var(--spacing-md);
}

/* Final Footer Design */
.site-footer-final {
    position: relative;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 0;
    background: white;
    overflow: hidden;
    margin-top: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.footer-content {
    position: relative;
    z-index: 10;
    margin-bottom: 250px;
    /* Space for the image */
}

.footer-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 30px;
}

.footer-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    /* Adjust based on image aspect ratio */
    background-image: url('assets/images/sun-bgr.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    pointer-events: none;
    /* Soft fade at the top of the image into white */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
}

.footer-meta {
    margin-top: 60px;
}

.footer-social-link {
    color: #999;
    font-size: 1.2rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    color: #0085ff;
    transform: translateY(-2px);
}

.footer-social-link {
    color: #999;
    font-size: 1.2rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    color: #0085ff;
    transform: translateY(-2px);
}

/* Downloads Section */
.downloads-section {
    padding: var(--spacing-xl) 0 200px;
    /* Bottom padding for footer fade/overlap */
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Reusing fade effect for transparency to footer */
.downloads-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 300px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.download-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-content {
    transition: opacity 0.2s ease-in-out;
    opacity: 1;
    /* Default visible state for active one */
}

.tab-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    background: #e3f2fd;
    /* Light blue */
    color: #0085ff;
    font-weight: 600;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    justify-content: center;
    padding: 0 var(--spacing-md);
}

.download-card {
    /* Glassmorphism style from hero */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    /* Slightly thicker as requested */
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: var(--spacing-md);
    /* opacity: 0.8; */
}

.download-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.download-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
}

.badge {
    background: #f0f0f0;
    color: #666;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: normal;
    text-transform: uppercase;
}

.btn-download {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0085ff;
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    /* Slightly grounded button */
    width: 100%;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.btn-download span:first-child {
    font-weight: 600;
    font-size: 1rem;
}

.btn-download .version {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: normal;
    margin-top: 2px;
}

.btn-download:hover {
    background: #0073e6;
}

.btn-download.secondary {
    background: transparent;
    border: 1px solid #d0d0d0;
    color: #333;
}

.btn-download.secondary:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.btn-download.secondary .version {
    color: #666;
}