/* 
 * Web OS Portfolio - Style System
 * Glassmorphism / MacOS / VisionOS inspired
 */

:root {
    /* Colors */
    --bg-color: #0f0f11;
    --text-color: #ffffff;
    --accent-color: #007aff;
    --accent-hover: #0062cc;
    --window-bg: rgba(28, 28, 30, 0.65);
    --window-border: rgba(255, 255, 255, 0.1);
    --dock-bg: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Effects */
    --blur-amount: 20px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;

    /* Z-Index */
    --z-desktop: 1;
    --z-window: 10;
    --z-dock: 1000;
    --z-overlay: 1000;
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation;
}

body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden;
    /* Prevent scrolling on desktop */
    height: 100vh;
    width: 100vw;
}

#status-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    background: rgba(209, 209, 209, 0.388);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2000;
    font-size: 18px;
    color: #030303;
}

.status-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.status-left {
    margin-left: auto;
}

.status-flag {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.2s;
}

.status-flag:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.status-flag img {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

.status-link {
    color: #030303;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: background 0.2s;
}

.status-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.status-icon {
    font-size: 14px;
    opacity: 0.8;
}

#status-clock {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

/* Background Video/Image */
#wallpaper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);
}

/* Desktop Environment */
#desktop {
    position: relative;
    width: 100%;
    height: 100%;
    padding: calc(var(--spacing-md) + 40px) var(--spacing-md) var(--spacing-md);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

/* Desktop Icons */
.desktop-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.desktop-icon:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.desktop-icon i {
    font-size: 32px;
    margin-bottom: var(--spacing-xs);
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.desktop-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: var(--spacing-xs);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.desktop-icon span {
    font-size: 14px;
    font-weight: 500;
}

/* Window System */
.window {
    position: absolute;
    background: var(--window-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--window-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    min-width: 300px;
    min-height: 200px;
    overflow: hidden;
    resize: both;
    transition: transform 0.1s, opacity 0.2s;
}

.window.minimized {
    display: none;
}

.window.maximized {
    top: 30px !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 110px) !important;
    border-radius: 0;
}

.window-header {
    height: 46px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 var(--spacing-sm);
    cursor: grab;
    user-select: none;
    border-bottom: 1px solid var(--window-border);
}

.window-header:active {
    cursor: grabbing;
}

.window-controls {
    display: flex;
    gap: 8px;
    margin-right: var(--spacing-md);
}

.control-btn {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.close-btn {
    background-color: #ff5f56;
}

.minimize-btn {
    background-color: #ffbd2e;
}

.maximize-btn {
    background-color: #27c93f;
}

.window-title {
    flex-grow: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
}

.window-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
    color: #eee;
}

/* Notion / Obsidian inspired layout */
.notion-content {
    max-width: 820px;
    margin: 0 auto;
    color: #e5e5e5;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.notion-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fafafa;
}

.notion-paragraph {
    line-height: 1.75;
    font-size: 16px;
    white-space: pre-wrap;
    color: rgba(229, 229, 229, 0.95);
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(255, 255, 255, 0.08);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.notion-paragraph strong {
    color: #fff;
}

/* Minimal carousel */
.carousel-container {
    position: relative;
    margin-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
}

.carousel-slide-inner {
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    background: rgba(0, 0, 0, 0.45);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
    filter: saturate(1.05);
}

.carousel-slide.active img {
    transform: scale(1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dots .dot.active {
    width: 32px;
    background: #fff;
}

/* Taskbar / Dock */
#taskbar {
    position: fixed;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dock-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--window-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-md);
    z-index: var(--z-dock);
    transition: bottom 0.3s;
}

.dock-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.dock-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.1);
}

.dock-item i {
    font-size: 24px;
    color: #fff;
}

.dock-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.dock-item.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    width: 4px;
    height: 4px;
    background-color: var(--text-color);
    border-radius: 50%;
}

/* Mobile Grid (Hidden by default on Desktop) */
#mobile-grid {
    display: none;
}

/* Content Styles */
.content-section {
    margin-bottom: var(--spacing-lg);
}

.content-section h2 {
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--window-border);
    padding-bottom: var(--spacing-xs);
}

.content-section p {
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-size: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    margin: 5%;
}

.media-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    color: inherit;
}

.media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.media-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.media-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.6));
}

.media-thumb-overlay {
    position: absolute;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
}

.media-title {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.media-player-window .media-player-content {
    padding: 0;
}

.media-video-frame {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    aspect-ratio: 16 / 9;
}

.media-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-sm);
}

.media-video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: #000;
}

.gallery-item {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.video-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container video {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border: none;
    border-radius: var(--radius-sm);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: white;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/** Profile section **/
.profile-layout {
    position: relative;
    margin: var(--spacing-lg) 0;
    clear: both;
}

.profile-header-group {
    float: right;
    width: 220px;
    height: 220px;
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    shape-outside: circle(50%);
    shape-margin: 14px;
    -webkit-shape-outside: circle(50%);
}

.profile-hero {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.profile-info-mobile {
    display: none;
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive / Mobile Styles */
@media (max-width: 1024px) {
    body {
        overflow: auto;
        /* Allow scrolling on mobile home */
    }

    #desktop,
    #taskbar {
        display: none;
    }

    #mobile-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-lg);
        padding: var(--spacing-xl) var(--spacing-md);
        padding-bottom: 120px; /* Space for dock */
        margin-top: 4vh;
    }

    #mobile-dock {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 380px;
        height: 90px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 28px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 0 10px;
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-dock-item {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        color: white;
        text-decoration: none;
        transition: transform 0.2s, background 0.2s;
    }

    .mobile-dock-item:active {
        transform: scale(0.9);
        background: rgba(255, 255, 255, 0.2);
    }

    /* Mobile Widgets */
    .mobile-widget {
        grid-column: span 4; /* Full width */
        background: rgba(255, 255, 255, 0.1);
        border-radius: 22px;
        overflow: hidden;
        backdrop-filter: blur(10px);
        margin-bottom: var(--spacing-sm);
        cursor: pointer;
        transition: transform 0.2s;
    }

    .mobile-widget:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.15);
    }

    .widget-content {
        display: flex;
        align-items: center;
        padding: 20px;
        gap: 20px;
    }

    .widget-photo {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }

    .widget-right h3 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .widget-right p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-profile-widget {
        background-image: linear-gradient(to bottom, #333, #555);
        background-size: 100% 200px;
        background-position: 0% 100%;
        transition: background-position 0.3s;
    }

    .mobile-profile-widget:active {
        background-position: 0% 50%;
    }

    .mobile-profile-widget .widget-content {
        padding: 40px 20px;
    }

    .mobile-profile-widget .widget-photo {
        width: 120px;
        height: 120px;
    }

    .mobile-profile-widget .widget-right h3 {
        font-size: 24px;
    }

    .mobile-profile-widget .widget-right p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 8px;
    }

    .widget-cta {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        padding: 4px 12px;
        margin-top: 8px;
        border-radius: 12px;
        color: white;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        transition: background 0.2s;
    }

    .widget-cta i {
        font-size: 10px;
    }

    .mobile-app {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-xs);
    }

    .app-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
    }

    .app-icon i {
        font-size: 28px;
    }

    .app-icon img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .app-name {
        font-size: 12px;
        text-align: center;
    }

    /* Fullscreen App View */
    .fullscreen-app {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 15, 17, 0.65);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 2000;
        display: flex;
        flex-direction: column;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .fullscreen-app.active {
        transform: translateY(0);
    }

    .app-header {
        height: 60px;
        display: flex;
        align-items: center;
        padding: 0 var(--spacing-md);
        background: rgba(20, 20, 20, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

     .app-header .app-title {
        display: block;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        }
        .back-btn {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            margin-right: var(--spacing-md);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: -12px;
            cursor: pointer;
        }
        .app-body {
            flex-grow: 1;
            overflow-y: auto;
            padding: var(--spacing-md);
        }
    

       
  .profile-header-group {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: var(--spacing-lg);
        float: none;
        width: 100%;
        height: auto;
        shape-outside: none;
        -webkit-shape-outside: none;
        margin-left: 0;
    }

    .profile-hero {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
        margin: 0;
    }

    .profile-photo {
        width: 100%;
        height: 100%;
    }
    
    .profile-info-mobile {
        display: block;
    }

    .profile-info-mobile h3 {
        font-size: 24px;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .profile-info-mobile p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Mobile Video Player Overlay */
    .mobile-video-player {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: 3000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .mobile-video-player.active {
        opacity: 1;
        visibility: visible;
    }

    .close-video-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: white;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3001;
        cursor: pointer;
        backdrop-filter: blur(10px);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .mobile-video-player.controls-visible .close-video-btn {
        opacity: 1;
        pointer-events: auto;
    }

    .video-wrapper {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16/9;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
        max-height: 80vh;
        object-fit: contain;
    }

    .video-info {
        position: absolute;
        bottom: 40px;
        left: 0;
        width: 100%;
        padding: 0 var(--spacing-md);
        text-align: center;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .mobile-video-player.controls-visible .video-info {
        opacity: 1;
    }

    .video-info h3 {
        font-size: 18px;
        font-weight: 500;
        text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    }

    /* Mobile Image Viewer Overlay (Similar to Video) */
    .mobile-image-viewer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        z-index: 3000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .mobile-image-viewer.active {
        opacity: 1;
        visibility: visible;
    }

    .close-viewer-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: white;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3001;
        cursor: pointer;
        backdrop-filter: blur(10px);
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .mobile-image-viewer.controls-visible .close-viewer-btn {
        opacity: 1;
        pointer-events: auto;
    }

    .image-wrapper {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .image-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .image-info {
        position: absolute;
        bottom: 40px;
        left: 0;
        width: 100%;
        padding: 0 var(--spacing-md);
        text-align: center;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
        color: white;
    }

    .mobile-image-viewer.controls-visible .image-info {
        opacity: 1;
    }

    .image-info h3 {
        font-size: 18px;
        font-weight: 500;
        text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    }

    @media (max-width: 768px) {
        .carousel-dots {
            display: none;
        }
    }
}