/* Live Feed Dashboard Styles */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: radial-gradient(circle at center, #0a1840 0%, #01070f 100%);
    color: #d3e2f7;
}

.dashboard-header {
    text-align: center;
    padding: 3rem 1rem 2rem;
    background: linear-gradient(180deg, #03102b, #051b3a);
}

.dashboard-header h1 {
    margin: 0;
    font-size: 2rem;
    color: #6faafc;
}

.dashboard-header p {
    margin-top: 0.5rem;
    color: #9abdfd;
    font-size: 1rem;
}

/* Ticker */
.ticker {
    width: 100%;
    overflow: hidden;
    background: rgba(12, 30, 66, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    color: #5fa8e9;
    font-size: 0.9rem;
    padding: 0.3rem 0;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.dashboard {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(12, 30, 66, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.2rem;
    backdrop-filter: blur(3px);
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
}

.metric-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: #80b4ff;
}

.metric-card .value {
    font-size: 1.8rem;
    color: #c0d8ff;
    margin: 0;
}

/* Profile placeholder */
.profile-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #304d8c, #162a56);
    margin-bottom: 1rem;
}

/* Portfolio section */
.portfolio {
    background: rgba(12, 30, 66, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}
.portfolio h2 {
    color: #88bdfd;
    margin-top: 0;
    font-size: 1.5rem;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}
.portfolio-item {
    background: rgba(12, 30, 66, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1rem;
    backdrop-filter: blur(3px);
    transition: transform 0.2s ease;
}
.portfolio-item:hover {
    transform: translateY(-4px);
}
.portfolio-item h3 {
    margin-top: 0;
    color: #80b4ff;
    font-size: 1rem;
}
.portfolio-item p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
}
.portfolio-item a {
    color: #76a3f5;
    text-decoration: none;
    font-size: 0.9rem;
}
.portfolio-item a:hover {
    text-decoration: underline;
}

/* Social icons */
.social-links {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.7rem;
    text-decoration: none;
    font-weight: bold;
}
.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.pinterest { background-color: #bd081c; }
.social-icon.reddit { background-color: #ff4500; }
.social-icon.discord { background-color: #5865f2; }
.social-icon.patreon { background-color: #e85a18; }
.social-icon.paypal { background-color: #003087; }
.social-icon.stripe { background-color: #635bff; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-icon.youtube { background-color: #ff0000; }
.social-icon.tiktok { background: linear-gradient(45deg, #69c9d0 0%, #ee1d52 50%, #000000 100%); }
.social-icon.linkedin { background-color: #0077b5; }

.summary {
    background: rgba(12, 30, 66, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.summary h2 {
    margin-top: 0;
    color: #88bdfd;
    font-size: 1.5rem;
}

.summary p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

a {
    color: #76a3f5;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.contact {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 1rem;
    background: rgba(12, 30, 66, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}
.contact h2 {
    margin-top: 0;
    color: #88bdfd;
    font-size: 1.5rem;
}
.contact p {
    margin: 0.5rem 0;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.dashboard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(12, 30, 66, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.nav-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6faafc;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #9abdfd;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: rgba(111, 170, 252, 0.15);
    color: #c0d8ff;
}

.nav-links a.active {
    background: rgba(111, 170, 252, 0.25);
    color: #c0d8ff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .dashboard-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(12, 30, 66, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    color: #80b4ff;
    font-size: 0.9rem;
}

/* ============================================
   PAGE SECTIONS
   ============================================ */
.dashboard-section {
    background: rgba(12, 30, 66, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.dashboard-section h2 {
    margin-top: 0;
    color: #88bdfd;
    font-size: 1.8rem;
}

.dashboard-section h3 {
    color: #80b4ff;
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

.section-label {
    display: inline-block;
    background: rgba(111, 170, 252, 0.15);
    color: #6faafc;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ============================================
   TECH TAGS & GRIDS
   ============================================ */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-tag {
    background: rgba(111, 170, 252, 0.2);
    color: #9abdfd;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid rgba(111, 170, 252, 0.3);
}

/* ============================================
   LISTS
   ============================================ */
.dashboard-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.dashboard-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.dashboard-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #6faafc;
    font-weight: bold;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: 1rem;
    margin-right: 0.5rem;
}

.btn-primary {
    background: rgba(111, 170, 252, 0.3);
    color: #c0d8ff;
    border: 1px solid rgba(111, 170, 252, 0.5);
}

.btn-primary:hover {
    background: rgba(111, 170, 252, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(12, 30, 66, 0.6);
    color: #9abdfd;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(12, 30, 66, 0.8);
    transform: translateY(-2px);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card {
    background: rgba(12, 30, 66, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(3px);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin: 0.5rem 0;
    color: #80b4ff;
    font-size: 1.2rem;
}

.service-card p {
    margin: 0.8rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   PROJECT CARDS
   ============================================ */
.project-card {
    background: rgba(12, 30, 66, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    backdrop-filter: blur(3px);
    transition: transform 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-card.featured {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
}

.project-thumb {
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.project-content {
    padding: 1.5rem;
    padding-left: 0;
}

.project-content h3 {
    margin-top: 0;
    color: #80b4ff;
    font-size: 1.3rem;
}

.project-content p {
    margin: 0.8rem 0;
    line-height: 1.6;
}

.project-note {
    font-style: italic;
    font-size: 0.9rem;
    color: #9abdfd;
}

.project-actions {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .project-card.featured {
        grid-template-columns: 1fr;
    }
    .project-content {
        padding: 1.5rem;
    }
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: rgba(12, 30, 66, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(3px);
    transition: transform 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-meta {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #80b4ff;
}

.blog-divider {
    color: rgba(255, 255, 255, 0.3);
}

.blog-card h3 {
    margin: 0.5rem 0;
    color: #88bdfd;
    font-size: 1.4rem;
}

.blog-card p {
    margin: 1rem 0;
    line-height: 1.6;
}

.blog-note {
    background: rgba(111, 170, 252, 0.1);
    border: 1px solid rgba(111, 170, 252, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.blog-note code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #c0d8ff;
}

/* ============================================
   TOPICS GRID
   ============================================ */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.topic-card {
    background: rgba(12, 30, 66, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(3px);
    text-align: center;
    transition: transform 0.2s ease;
}

.topic-card:hover {
    transform: translateY(-4px);
}

.topic-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.topic-card h3 {
    margin: 0.5rem 0;
    color: #80b4ff;
    font-size: 1.1rem;
}

.topic-card p {
    margin: 0.8rem 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ============================================
   DESIGN GALLERY
   ============================================ */
.design-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.design-link {
    background: rgba(12, 30, 66, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    color: #9abdfd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.design-link:hover {
    background: rgba(111, 170, 252, 0.2);
    border-color: rgba(111, 170, 252, 0.4);
    color: #c0d8ff;
    transform: translateY(-2px);
}

.design-link.active {
    background: rgba(111, 170, 252, 0.3);
    border-color: rgba(111, 170, 252, 0.5);
    color: #c0d8ff;
    font-weight: 600;
}

/* ============================================
   COMING SOON
   ============================================ */
.coming-soon {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(12, 30, 66, 0.6);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.construction-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.coming-soon h3 {
    color: #88bdfd;
    margin: 1rem 0;
}

.coming-soon p {
    color: #9abdfd;
    max-width: 600px;
    margin: 1rem auto;
    line-height: 1.6;
}

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-info {
    margin: 1.5rem 0;
    line-height: 1.8;
}

.contact-info p {
    margin: 0.8rem 0;
}

/* ============================================
   STATUS CARD
   ============================================ */
.status-card {
    background: rgba(12, 30, 66, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(3px);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.active {
    background: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #88bdfd;
}

.status-card p {
    margin: 0.5rem 0;
    line-height: 1.6;
}