/* the blue/green background */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 50%, #00ff87 100%);
    background-attachment: fixed;
    color: #1a365d;
    min-height: 100vh;
    overflow-x: hidden;
}

/* the blurry glass box */
.glass-window {
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.9);
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* shiny title bar */
.glossy-header {
    background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 49%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.5) 100%);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 1);
    color: #0c4a6e;
    margin-bottom: 20px;
}

/* layout for the boxes */
.widgets {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.widget {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(to bottom, rgba(224, 242, 254, 0.7), rgba(186, 230, 253, 0.7));
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* the shiny 3d button */
.glossy-button {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    background: linear-gradient(to bottom, #7dd3fc 0%, #0284c7 49%, #0369a1 50%, #0ea5e9 100%);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #075985;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.8), 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.glossy-button:hover {
    background: linear-gradient(to bottom, #bae6fd 0%, #0ea5e9 49%, #0284c7 50%, #38bdf8 100%);
    transform: translateY(-2px);
}

.glass-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #333;
}

/* drawing the bubbles */
.bubbles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.b1 { width: 120px; height: 120px; top: 15%; left: 10%; }
.b2 { width: 60px; height: 60px; bottom: 30%; right: 15%; }
.b3 { width: 200px; height: 200px; bottom: -50px; left: 40%; opacity: 0.6; }
/* Fix for widget layout and text */
.widgets {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.widget h2 {
    margin-top: 0;
    font-size: 1.2em;
    border-bottom: 1px dashed rgba(0,0,0,0.2);
}

.button-grid {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

/* Make links look more 2000s */
a {
    color: #0369a1;
    font-weight: bold;
}

a:hover {
    color: #0ea5e9;
    text-decoration: none;
}