* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.stacked-widgets {
    display: flex;
    flex-direction: column;
    gap: 20px; /* spacing between clock and greeting */
}
.greeting-widget {
    background: linear-gradient(135deg, #fbbc04, #ea4335);
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.logo-button {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
}

.logo-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-button:hover {
    transform: scale(1.1);
    cursor: pointer;
}
.floating-logo {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 90x;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.floating-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-logo:hover {
    transform: scale(1.1);
    cursor: pointer;
}


body {
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: rgb(187, 214, 253);
    min-height: 100vh;
    padding: 20px;
    color: #202124;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.widget {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}
.greeting-widget h2 {
    color: #4285f4;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.greeting-message {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #3d03fc;
    margin-bottom: 16px;
}


/* Clock Widget */
.clock-widget {
    text-align: center;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    padding: 16px;
}


.clock-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.time-display {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.ampm {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
}

.date-display {
    font-size: 1.1rem;
    font-weight: 450;
    opacity: 1;
}

.colon {
    animation: blinkSlow 1.5s infinite;
}

@keyframes blinkSlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* Weather Widget */
.weather-widget {
    background: linear-gradient(135deg, #81c784 0%, #4fc3f7 100%);
    color: white;
}

.weather-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.weather-icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.weather-temp {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.weather-condition {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 16px;
    opacity: 0.9;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-size: 0.9rem;
}

.weather-detail {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
}

/* Message Widget */
.message-widget h3 {
    color: #4285f4;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.daily-message {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #5f6368;
}

.quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
    padding: 16px;
    border-radius: 16px;
    border-left: 4px solid #4285f4;
    font-style: italic;
    color: #202124;
}

.quote-author {
    text-align: right;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #5f6368;
    font-weight: 500;
}

/* Projects Widget */
.projects-widget {
    grid-column: 1 / -1;
}

.projects-title {
    color: #4285f4;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.project-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0fe 100%);
    padding: 20px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4285f4;
    transform: translateY(-2px);
}

.project-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 8px;
}

.project-description {
    font-size: 0.9rem;
    color: #5f6368;
    line-height: 1.4;
    margin-bottom: 16px;
}

.visit-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285f4;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.visit-button:hover {
    background: #3367d6;
    transform: translateX(2px);
}

/* App Shortcuts */
.app-shortcuts {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.app-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.app-icon:hover {
    transform: scale(1.1);
}

.app-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.app-icon.email {
    background: linear-gradient(135deg, #ea4335, #fbbc04);
}

.app-icon.github {
    background: linear-gradient(135deg, #333, #666);
}

.app-icon.discord {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
        padding: 10px;
        gap: 16px;
    }

    .widget {
        padding: 20px;
    }

    .app-shortcuts {
        bottom: 10px;
        padding: 8px 16px;
        gap: 12px;
    }

    .app-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

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

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

.widget {
    animation: fadeInUp 0.6s ease forwards;
}
.app-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}.app-icon:hover img {
    transform: scale(1.1);
}