.esp-dashboard {
    max-width: 960px;
    margin: 40px auto;
    padding: 30px 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fefefe;
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
    border-radius: 12px;
    color: #222;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient background behind content */
.esp-dashboard::before {
    content: "";
    position: absolute;
    top: -120px; left: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle at center, #2271b1 0%, transparent 70%);
    opacity: 0.07;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
}

.esp-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.esp-logo {
    max-width: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(1px 1px 2px rgba(34,113,177,0.4));
}
.esp-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #2271b1;
}
.esp-header p {
    font-size: 18px;
    color: #555;
}

.esp-nav {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.esp-btn {
    display: inline-block;
    margin: 0 15px 25px 0;
    padding: 14px 32px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
    border: none;
    cursor: pointer;
    font-size: 16px;
}
.esp-btn.primary {
    background-color: #2271b1;
    color: #fff;
}
.esp-btn.primary:hover {
    background-color: #185a8b;
    box-shadow: 0 6px 18px rgba(34,113,177,0.4);
}
.esp-btn.coffee {
    background-color: #ffdd00;
    color: #333;
    box-shadow: 0 4px 10px rgba(255,221,0,0.5);
}
.esp-btn.coffee:hover {
    background-color: #ccbb00;
    box-shadow: 0 6px 18px rgba(204,187,0,0.6);
}

hr {
    border: none;
    border-top: 1px solid #e1e1e1;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.esp-card.coming-soon {
    width: 250px;
    text-align: center;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 12px;
    padding: 20px;
    color: #856404;
    font-weight: 700;
}
.esp-card.coming-soon img {
    max-width: 120px;
    margin-bottom: 15px;
    opacity: 0.7;
}
.esp-carousel {
    display: flex;
    overflow-x: auto;
    padding-bottom: 15px;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: #bbb transparent;
    position: relative;
    z-index: 1;
}
.esp-carousel::-webkit-scrollbar {
    height: 8px;
}
.esp-carousel::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 4px;
}

.esp-card {
    flex: 0 0 auto;
    width: 250px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    padding: 16px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: default;
}
.esp-card:hover {
    box-shadow: 0 6px 20px rgb(34 113 177 / 0.2);
    border-color: #2271b1;
}
.esp-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 12px;
}
.esp-card p {
    font-weight: 600;
    color: #222;
    margin: 0;
}

.esp-footer {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}
.esp-footer a {
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
    margin: 0 8px;
}
.esp-footer a:hover {
    text-decoration: underline;
}