:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --dark-bg: #0A0A0A;
    --text-color: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.3;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(1px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    margin-left: var(--spacing-xl);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-color);
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

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

.title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

.center-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: -1rem;
}

.center-logo img {
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.center-logo img:hover {
    transform: scale(1.05);
}

.disclaimer {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.6;
    font-style: italic;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.prompt-container {
    margin: 3rem 0 2rem 0;
}

.prompt-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prompt-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 0.8rem;
    outline: none;
}

.prompt-box input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.prompt-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.generate-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.preview-section {
    margin-top: 2rem;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.preview-header h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.preview-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.preview-content {
    aspect-ratio: 16/9;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    overflow: hidden;
}

/* Mobile Preview Styles */
.phone-frame {
    width: 280px;
    height: 560px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 10px;
    position: relative;
    border: 8px solid #2a2a2a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-notch {
    width: 150px;
    height: 25px;
    background: #2a2a2a;
    border-radius: 0 0 15px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-frame {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #121212;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.status-bar {
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    font-size: 12px;
}

.status-icons {
    display: flex;
    gap: 5px;
}

.signal, .wifi, .battery {
    width: 15px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.app-header {
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.app-title {
    width: 100px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.header-actions {
    width: 80px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.content-block {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin: 0.5rem 1rem;
}

.content-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text-line {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.text-line.short {
    width: 60%;
}

.tab-bar {
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
}

.tab-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.tab-item.active {
    background: var(--primary-color);
}

/* Web Preview Styles */
.browser-frame {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.browser-header {
    height: 40px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}

.browser-actions {
    display: flex;
    gap: 6px;
}

.browser-actions span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.browser-address {
    flex: 1;
    height: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.web-header {
    height: 50px;
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 0 2rem;
    background: rgba(255, 255, 255, 0.03);
}

.nav-item {
    width: 60px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.nav-item.active {
    background: var(--primary-color);
}

.hero-section {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
}

.hero-title {
    width: 200px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 1rem;
}

.hero-subtitle {
    width: 300px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto;
}

.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.grid-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.image-placeholder {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.item-title {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Resume Preview Styles */
.app-frame {
    height: 100%;
    display: flex;
    gap: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar {
    width: 60px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.sidebar-item {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.sidebar-item.active {
    background: var(--primary-color);
}

.main-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toolbar {
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0 1rem;
}

.tool-item {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.resume-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1rem;
}

.section-header {
    height: 16px;
    width: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.input-line.short {
    width: 60%;
}

@media (max-width: 768px) {
    nav {
        padding: 1.5rem;
    }

    .title {
        font-size: 3rem;
    }

    .preview-section {
        padding: 0;
    }

    .preview-card {
        max-width: 100%;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }
}

/* E-commerce Preview Styles */
.shop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.thumbnail-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    cursor: pointer;
}

.thumbnail.active {
    border: 2px solid var(--primary-color);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.breadcrumb-item {
    height: 8px;
    width: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.breadcrumb-separator {
    color: var(--text-secondary);
    font-size: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #FFD700;
    width: 16px;
    height: 16px;
}

.rating-count {
    width: 60px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.option-label {
    width: 80px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* Social Media Feed Styles */
.post-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-engagement {
    padding: 0.75rem;
}

.post-likes {
    width: 120px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.post-comments {
    margin: 0.5rem 0;
}

.comment {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.comment-username {
    width: 80px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.comment-text {
    width: 140px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.post-time {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.post-add-comment {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-input {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.comment-action {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
    opacity: 0.5;
}

/* Music Player Preview Styles */
.music-frame {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
    height: 100%;
}

.album-art {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-placeholder i {
    color: rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
}

.visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.visualizer .bar {
    flex: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transform-origin: bottom;
}

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

.track-title .title-line {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 0.5rem;
    width: 80%;
}

.artist-name .artist-line {
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto;
    width: 60%;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 35%;
    background: var(--primary-color);
    border-radius: 2px;
}

.progress-handle {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control.play {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
}

.control i {
    color: var(--text-secondary);
    width: 20px;
    height: 20px;
}

.control.play i {
    color: white;
}

/* Dashboard Preview Styles */
.dashboard-frame {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
}

.chart-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-title {
    width: 120px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.chart-legend {
    display: flex;
    gap: 1rem;
}

.legend-item {
    width: 40px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.chart-svg {
    width: 100%;
    height: 150px;
}

.chart-line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.chart-line-shadow {
    fill: url(#gradient);
    opacity: 0.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: var(--text-secondary);
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 12px;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.stat-change.positive {
    background: rgba(39, 174, 96, 0.2);
    color: #27AE60;
}

.stat-change.negative {
    background: rgba(235, 87, 87, 0.2);
    color: #EB5757;
}

/* Social Preview Styles */
.social-frame {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    height: 100%;
    background: #121212;
}

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

.app-name {
    width: 100px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.header-actions i {
    color: var(--text-secondary);
}

.stories-row {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    overflow-x: auto;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.story-avatar {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ring {
    position: absolute;
    inset: -3px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.story-name {
    font-size: 12px;
    color: var(--text-secondary);
    width: 48px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.post-avatar {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.post-info {
    flex: 1;
}

.post-username {
    width: 100px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.post-location {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.post-content {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-content i {
    color: rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
}

.action-group {
    display: flex;
    gap: 1rem;
}

.action-group i, .action-save i {
    color: var(--text-secondary);
}

/* Task Manager Preview Styles */
.kanban-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.board-title .title-text {
    width: 120px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.board-title .board-meta {
    width: 80px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.board-actions {
    display: flex;
    gap: 1rem;
}

.search-bar, .filter-btn, .add-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-actions i {
    color: var(--text-secondary);
}

.kanban-board {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.kanban-column {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1rem;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.column-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.todo .status-dot {
    background: #F2994A;
}

.in-progress .status-dot {
    background: var(--primary-color);
}

.task-count {
    font-size: 12px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.task-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.task-card.priority-high {
    border-left: 3px solid #EB5757;
}

.task-card.active {
    border: 1px solid var(--primary-color);
}

.task-title {
    width: 100%;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.task-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tag {
    height: 8px;
    width: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.task-due {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    color: var(--text-secondary);
}

.task-progress {
    margin-top: 1rem;
}

.task-progress .progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 0.25rem;
}

.task-progress .progress-fill {
    height: 100%;
    width: 75%;
    background: var(--primary-color);
    border-radius: 2px;
}

.task-progress span {
    font-size: 12px;
    color: var(--text-secondary);
}

.task-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.assignee {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.task-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 12px;
}

.watermark {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
    z-index: 10;
    pointer-events: none;
    font-family: monospace;
} 