Update style.css

This commit is contained in:
Broque Thomas 2025-09-28 22:20:15 -07:00
parent 11d91a2ebb
commit ddc2d54856

View file

@ -4459,18 +4459,28 @@ body {
} }
.beatport-category-card { .beatport-category-card {
/* Premium glassmorphic foundation matching add-to-wishlist modal */
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(25, 25, 25, 0.95) 0%, rgba(26, 26, 26, 0.95) 0%,
rgba(15, 15, 15, 0.98) 100%); rgba(18, 18, 18, 0.98) 100%);
backdrop-filter: blur(20px); backdrop-filter: blur(20px) saturate(1.2);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.08); /* Enhanced borders matching modal */
border-top: 1px solid rgba(255, 255, 255, 0.12); border-radius: 20px;
padding: 25px; border: 1px solid rgba(255, 255, 255, 0.12);
border-top: 1px solid rgba(255, 255, 255, 0.18);
padding: 28px;
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative; position: relative;
overflow: hidden; overflow: hidden;
/* Premium shadow effect matching modal */
box-shadow:
0 20px 60px rgba(0, 0, 0, 0.5),
0 8px 32px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
} }
.beatport-category-card::before { .beatport-category-card::before {
@ -4488,11 +4498,22 @@ body {
} }
.beatport-category-card:hover { .beatport-category-card:hover {
transform: translateY(-5px); /* Enhanced glassmorphic hover state matching modal patterns */
border-color: rgba(1, 255, 149, 0.3); background: linear-gradient(135deg,
rgba(30, 30, 30, 0.98) 0%,
rgba(22, 22, 22, 1.0) 100%);
backdrop-filter: blur(24px) saturate(1.3);
transform: translateY(-6px) scale(1.02);
border-color: rgba(1, 255, 149, 0.4);
border-top-color: rgba(1, 255, 149, 0.6);
/* Premium enhanced shadow matching modal hover */
box-shadow: box-shadow:
0 20px 40px rgba(0, 0, 0, 0.4), 0 32px 80px rgba(0, 0, 0, 0.6),
0 0 30px rgba(1, 255, 149, 0.2); 0 16px 48px rgba(0, 0, 0, 0.4),
0 0 40px rgba(1, 255, 149, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
} }
.beatport-category-card:hover::before { .beatport-category-card:hover::before {
@ -4566,36 +4587,66 @@ body {
.beatport-breadcrumb { .beatport-breadcrumb {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 15px; gap: 20px;
margin-bottom: 25px; margin-bottom: 30px;
padding: 15px 20px; padding: 20px 24px;
background: rgba(25, 25, 25, 0.6);
border-radius: 12px; /* Premium glassmorphic foundation matching modal header */
border: 1px solid rgba(255, 255, 255, 0.08); background: linear-gradient(135deg,
rgba(26, 26, 26, 0.95) 0%,
rgba(18, 18, 18, 0.98) 100%);
backdrop-filter: blur(20px) saturate(1.2);
/* Enhanced borders matching modal */
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.12);
border-top: 1px solid rgba(255, 255, 255, 0.18);
/* Premium shadow effect matching modal sections */
box-shadow:
0 8px 24px rgba(0, 0, 0, 0.4),
0 4px 12px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
} }
.breadcrumb-back { .breadcrumb-back {
/* Premium button matching modal action buttons */
background: linear-gradient(135deg, #01FF95 0%, #00E085 100%); background: linear-gradient(135deg, #01FF95 0%, #00E085 100%);
border: none; border: 1px solid rgba(1, 255, 149, 0.3);
border-radius: 8px; border-radius: 12px;
color: #000; color: #000000;
font-size: 13px; font-size: 14px;
font-weight: 600; font-weight: 700;
padding: 8px 16px; padding: 12px 20px;
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
white-space: nowrap; white-space: nowrap;
/* Premium shadow matching modal buttons */
box-shadow:
0 4px 16px rgba(1, 255, 149, 0.3),
0 2px 8px rgba(0, 0, 0, 0.2);
} }
.breadcrumb-back:hover { .breadcrumb-back:hover {
transform: translateY(-2px); /* Enhanced hover state matching modal button hover */
box-shadow: 0 5px 15px rgba(1, 255, 149, 0.3); background: linear-gradient(135deg, #00E085 0%, #01FF95 100%);
transform: translateY(-3px) scale(1.05);
border-color: rgba(1, 255, 149, 0.5);
/* Premium enhanced shadow matching modal hover */
box-shadow:
0 8px 24px rgba(1, 255, 149, 0.4),
0 4px 12px rgba(0, 0, 0, 0.3);
} }
.breadcrumb-path { .breadcrumb-path {
color: #888; /* Enhanced text styling matching modal metadata */
font-size: 14px; color: #e0e0e0;
font-size: 16px;
font-weight: 500; font-weight: 500;
opacity: 0.9;
letter-spacing: 0.3px;
} }
/* ================================= */ /* ================================= */
@ -4609,21 +4660,31 @@ body {
} }
.beatport-chart-item { .beatport-chart-item {
/* Premium glassmorphic foundation matching modal hero sections */
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(25, 25, 25, 0.95) 0%, rgba(26, 26, 26, 0.95) 0%,
rgba(15, 15, 15, 0.98) 100%); rgba(18, 18, 18, 0.98) 100%);
backdrop-filter: blur(20px); backdrop-filter: blur(20px) saturate(1.2);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.08); /* Enhanced borders matching modal */
border-top: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px;
padding: 20px; border: 1px solid rgba(255, 255, 255, 0.12);
border-top: 1px solid rgba(255, 255, 255, 0.18);
padding: 24px;
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
display: flex; display: flex;
align-items: center; align-items: center;
gap: 20px; gap: 24px;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
/* Premium shadow effect matching modal cards */
box-shadow:
0 8px 24px rgba(0, 0, 0, 0.4),
0 4px 12px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
} }
.beatport-chart-item::before { .beatport-chart-item::before {
@ -4641,11 +4702,22 @@ body {
} }
.beatport-chart-item:hover { .beatport-chart-item:hover {
transform: translateY(-3px); /* Enhanced glassmorphic hover state matching modal hero hover */
border-color: rgba(1, 255, 149, 0.3); background: linear-gradient(135deg,
rgba(30, 30, 30, 0.98) 0%,
rgba(22, 22, 22, 1.0) 100%);
backdrop-filter: blur(24px) saturate(1.3);
transform: translateY(-4px) scale(1.02);
border-color: rgba(1, 255, 149, 0.4);
border-top-color: rgba(1, 255, 149, 0.6);
/* Premium enhanced shadow matching modal hover */
box-shadow: box-shadow:
0 15px 30px rgba(0, 0, 0, 0.3), 0 20px 48px rgba(0, 0, 0, 0.5),
0 0 20px rgba(1, 255, 149, 0.2); 0 8px 24px rgba(0, 0, 0, 0.4),
0 0 32px rgba(1, 255, 149, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
} }
.beatport-chart-item:hover::before { .beatport-chart-item:hover::before {
@ -4901,12 +4973,24 @@ body {
.homepage-dj-charts-section, .homepage-dj-charts-section,
.homepage-featured-charts-section { .homepage-featured-charts-section {
margin-bottom: 40px; margin-bottom: 40px;
padding: 20px; padding: 28px;
/* Premium glassmorphic foundation matching modal design */
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(20, 20, 20, 0.8) 0%, rgba(20, 20, 20, 0.95) 0%,
rgba(15, 15, 15, 0.9) 100%); rgba(12, 12, 12, 0.98) 100%);
border-radius: 16px; backdrop-filter: blur(20px) saturate(1.2);
border: 1px solid rgba(255, 255, 255, 0.08);
/* Enhanced borders */
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.12);
border-top: 1px solid rgba(255, 255, 255, 0.18);
/* Premium shadow effect matching modal */
box-shadow:
0 20px 60px rgba(0, 0, 0, 0.5),
0 8px 32px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
} }
.section-title { .section-title {
@ -4935,20 +5019,31 @@ body {
/* Chart Type Cards */ /* Chart Type Cards */
.genre-chart-type-card { .genre-chart-type-card {
/* Premium glassmorphic foundation matching modal section design */
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(25, 25, 25, 0.95) 0%, rgba(26, 26, 26, 0.95) 0%,
rgba(15, 15, 15, 0.98) 100%); rgba(18, 18, 18, 0.98) 100%);
backdrop-filter: blur(20px); backdrop-filter: blur(20px) saturate(1.2);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1); /* Enhanced borders matching modal */
padding: 20px; border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.12);
border-top: 1px solid rgba(255, 255, 255, 0.18);
padding: 24px;
display: flex; display: flex;
align-items: center; align-items: center;
gap: 16px; gap: 20px;
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative; position: relative;
overflow: hidden; overflow: hidden;
/* Premium shadow effect matching modal sections */
box-shadow:
0 8px 24px rgba(0, 0, 0, 0.4),
0 4px 12px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
} }
.genre-chart-type-card::before { .genre-chart-type-card::before {
@ -4966,11 +5061,22 @@ body {
} }
.genre-chart-type-card:hover { .genre-chart-type-card:hover {
transform: translateY(-3px); /* Enhanced glassmorphic hover state matching modal section hover */
border-color: rgba(1, 255, 149, 0.3); background: linear-gradient(135deg,
rgba(30, 30, 30, 0.98) 0%,
rgba(22, 22, 22, 1.0) 100%);
backdrop-filter: blur(24px) saturate(1.3);
transform: translateY(-4px) scale(1.02);
border-color: rgba(1, 255, 149, 0.4);
border-top-color: rgba(1, 255, 149, 0.6);
/* Premium enhanced shadow matching modal hover */
box-shadow: box-shadow:
0 10px 25px rgba(0, 0, 0, 0.3), 0 20px 48px rgba(0, 0, 0, 0.5),
0 0 15px rgba(1, 255, 149, 0.2); 0 8px 24px rgba(0, 0, 0, 0.4),
0 0 32px rgba(1, 255, 149, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
} }
.genre-chart-type-card:hover::before { .genre-chart-type-card:hover::before {
@ -5191,17 +5297,28 @@ body {
} }
.new-chart-item { .new-chart-item {
/* Premium glassmorphic foundation matching modal card design */
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(25, 15, 35, 0.95) 0%, rgba(26, 26, 26, 0.95) 0%,
rgba(15, 10, 25, 0.98) 100%); rgba(18, 18, 18, 0.98) 100%);
backdrop-filter: blur(15px); backdrop-filter: blur(20px) saturate(1.2);
border-radius: 10px;
border: 1px solid rgba(138, 43, 226, 0.2); /* Enhanced borders matching modal */
padding: 16px; border-radius: 16px;
border: 1px solid rgba(138, 43, 226, 0.3);
border-top: 1px solid rgba(138, 43, 226, 0.4);
padding: 20px;
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative; position: relative;
overflow: hidden; overflow: hidden;
/* Premium shadow effect matching modal cards */
box-shadow:
0 8px 24px rgba(138, 43, 226, 0.2),
0 4px 12px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
} }
.new-chart-item::before { .new-chart-item::before {
@ -5219,11 +5336,22 @@ body {
} }
.new-chart-item:hover { .new-chart-item:hover {
transform: translateY(-3px); /* Enhanced glassmorphic hover state matching modal card hover */
border-color: rgba(138, 43, 226, 0.4); background: linear-gradient(135deg,
rgba(30, 30, 30, 0.98) 0%,
rgba(22, 22, 22, 1.0) 100%);
backdrop-filter: blur(24px) saturate(1.3);
transform: translateY(-4px) scale(1.02);
border-color: rgba(138, 43, 226, 0.5);
border-top-color: rgba(138, 43, 226, 0.7);
/* Premium enhanced shadow matching modal hover */
box-shadow: box-shadow:
0 8px 20px rgba(0, 0, 0, 0.3), 0 16px 40px rgba(138, 43, 226, 0.3),
0 0 15px rgba(138, 43, 226, 0.2); 0 8px 24px rgba(0, 0, 0, 0.4),
0 0 32px rgba(138, 43, 226, 0.25),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
} }
.new-chart-item:hover::before { .new-chart-item:hover::before {
@ -5396,17 +5524,28 @@ body {
} }
.genre-chart-item { .genre-chart-item {
/* Premium glassmorphic foundation matching modal card design */
background: linear-gradient(135deg, background: linear-gradient(135deg,
rgba(30, 20, 40, 0.95) 0%, rgba(26, 26, 26, 0.95) 0%,
rgba(20, 15, 30, 0.98) 100%); rgba(18, 18, 18, 0.98) 100%);
backdrop-filter: blur(20px); backdrop-filter: blur(20px) saturate(1.2);
border-radius: 12px;
border: 1px solid rgba(138, 43, 226, 0.2); /* Enhanced borders matching modal */
padding: 20px; border-radius: 16px;
border: 1px solid rgba(138, 43, 226, 0.3);
border-top: 1px solid rgba(138, 43, 226, 0.4);
padding: 24px;
cursor: pointer; cursor: pointer;
transition: all 0.3s ease; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative; position: relative;
overflow: hidden; overflow: hidden;
/* Premium shadow effect matching modal cards */
box-shadow:
0 8px 24px rgba(138, 43, 226, 0.2),
0 4px 12px rgba(0, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
} }
.genre-chart-item::before { .genre-chart-item::before {
@ -5424,11 +5563,22 @@ body {
} }
.genre-chart-item:hover { .genre-chart-item:hover {
transform: translateY(-5px); /* Enhanced glassmorphic hover state matching modal card hover */
border-color: rgba(138, 43, 226, 0.4); background: linear-gradient(135deg,
rgba(30, 30, 30, 0.98) 0%,
rgba(22, 22, 22, 1.0) 100%);
backdrop-filter: blur(24px) saturate(1.3);
transform: translateY(-6px) scale(1.02);
border-color: rgba(138, 43, 226, 0.5);
border-top-color: rgba(138, 43, 226, 0.7);
/* Premium enhanced shadow matching modal hover */
box-shadow: box-shadow:
0 15px 30px rgba(0, 0, 0, 0.3), 0 20px 48px rgba(138, 43, 226, 0.3),
0 0 20px rgba(138, 43, 226, 0.3); 0 8px 24px rgba(0, 0, 0, 0.4),
0 0 40px rgba(138, 43, 226, 0.25),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
} }
.genre-chart-item:hover::before { .genre-chart-item:hover::before {