* {
box-sizing: border-box;
user-select: none;
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
background: radial-gradient(ellipse at center, #111 0%, #000 100%);
font-family: 'Inter', sans-serif;
user-select: none;
-webkit-user-select: none;
display: flex;
flex-direction: column;
}
.gallery {
width: 100vw;
height: 100vh;
position: relative;
}
.carousel-container {
flex: 1;
width: 100vw;
height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
user-select: none;
}
.carousel {
display: flex;
position: relative;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
transform-style: preserve-3d;
user-select: none;
}
.card {
position: absolute;
aspect-ratio: 9 / 16;
border-radius: 1.5rem;
overflow: hidden;
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
backdrop-filter: blur(8px);
transition: all 0.7s cubic-bezier(0.33, 1, 0.68, 1);
transform-style: preserve-3d;
cursor: pointer;
user-select: none;
opacity: 0;
visibility: hidden;
pointer-events: none;
width: 20vw;
}
.card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: filter 0.3s ease;
pointer-events: none;
user-select: none;
}
.card:hover img {
filter: blur(0.5px);
}
.thumbnail-wrapper {
width: 100%;
height: 100%;
position: relative;
}
.thumbnail-wrapper .thumbnail-play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
user-select: none;
z-index: 100;
}
.thumbnail-wrapper .thumbnail-play-icon svg {
width: 16px;
height: 16px;
}
@media (max-width: 767px) {
.card {
width: 60vw;
}
} .center {
transform: perspective(1000px) translateZ(150px) scale(1) rotateY(0deg);
z-index: 5;
opacity: 1 !important;
visibility: visible !important;
pointer-events: auto !important;
filter: none;
background: rgba(0, 0, 0, 0.2);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
backdrop-filter: blur(14px);
}
.left1,
.right1 {
transform: perspective(1000px) translateX(var(--x)) translateZ(0px) rotateY(var(--r)) scale(0.9);
z-index: 4;
opacity: 0.5 !important;
visibility: visible !important;
pointer-events: auto !important;
background: rgba(10, 10, 20, 0.15);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(20px);
filter: grayscale(20%) brightness(80%) contrast(80%);
}
.left2,
.right2 {
transform: perspective(1000px) translateX(var(--x)) translateZ(-100px) rotateY(var(--r)) scale(0.8);
z-index: 3;
opacity: 0.3 !important;
visibility: visible !important;
pointer-events: none !important;
background: rgba(5, 5, 10, 0.1);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(28px);
filter: grayscale(50%) brightness(60%) contrast(70%);
} @media (max-width: 767px) {
.center {
transform: translateX(0%) scale(1) skewY(0deg);
z-index: 3;
opacity: 1 !important;
visibility: visible !important;
pointer-events: auto !important;
}
.left1 {
transform: translateX(-65%) scale(0.9) skewY(4deg);
z-index: 2;
opacity: 0.7 !important;
visibility: visible !important;
pointer-events: auto !important;
}
.right1 {
transform: translateX(65%) scale(0.9) skewY(-4deg);
z-index: 2;
opacity: 0.7 !important;
visibility: visible !important;
pointer-events: auto !important;
}
} .dock-wrapper {
transition: none;
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
padding-left: 10px;
display: flex;
align-items: center;
justify-content: flex-start;
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border-radius: 24px;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
z-index: 10;
max-width: 90vw;
max-height: 1920px;
} .dock {
transition: none;
height: 110px;
padding: 12px 16px;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 12px;
z-index: 10;
overflow-x: auto;
overflow-y: hidden;
scroll-behavior: smooth;
-ms-overflow-style: none;
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
visibility: visible;
pointer-events: auto;
opacity: 1;
}
.dock::-webkit-scrollbar {
height: 4px;
}
.dock::-webkit-scrollbar-track {
background: transparent;
margin-left: 16px;
margin-right: 16px;
}
.dock::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.2);
border-radius: 999px;
transition: background-color 0.3s ease;
}
.dock::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.3);
}
.dock::-webkit-scrollbar-button {
display: none;
height: 0;
width: 0;
}
.dock img {
filter: grayscale(100%) opacity(0.5);
transition: all 0.3s ease;
height: 100%;
max-width: fit-content;
border-radius: 12px;
aspect-ratio: 9 / 16;
object-fit: cover;
opacity: 0.7;
transition: none;
cursor: pointer;
flex-shrink: 0;
transform: scale(1);
}
.dock img.active,
.dock img:hover {
transition: all 0.3s ease;
filter: grayscale(0%) opacity(1);
transform: scale(1.1);
}
@media (max-width: 767px) {
.dock::-webkit-scrollbar {
display: none;
}
.dock-wrapper {
bottom: 24px;
gap: 10px;
}
.dock {
gap: 10px;
height: 100px;
}
.dock img {
border-radius: 10px;
}
}
.dock-label {
position: absolute;
color: #ccc;
font-size: 0.85rem;
opacity: 0;
width: 150px;
padding: 0 10px;
transition: none;
margin-left: 8px;
pointer-events: none;
visibility: hidden;
pointer-events: none;
display: none;
}
.dock-toggle {
width: 36px;
height: 36px;
min-width: 36px;
min-height: 36px;
border: none;
border-radius: 999px;
margin: 0 10px;
padding: 10px !important;
background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
box-shadow:
inset 0 1px 2px rgba(255, 255, 255, 0.05), 0 2px 6px rgba(0, 0, 0, 0.2); cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: none;
flex-shrink: 0;
}
.dock-toggle svg {
stroke: #ccc !important;
transition: none;
}
.dock-toggle:hover svg {
stroke: #fff !important;
}
.dock-toggle:hover {
background: rgba(255, 255, 255, 0.15);
transform: scale(1.1);
}
.dock-toggle svg {
stroke: white;
} .dock-wrapper.collapsed {
max-height: 40px !important;
bottom: 10px !important;
padding: 20px 0;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
cursor: pointer;
user-select: none;
} .dock-wrapper.collapsed .dock img {
opacity: 0 !important;
visibility: hidden !important;
pointer-events: none !important;
}
.dock-wrapper.collapsed .dock-toggle {
width: 30px;
height: 30px;
min-width: 24px;
min-height: 24px;
margin-left: 8px;
} .dock-wrapper.collapsed .dock {
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: scale(0);
width: 0;
height: 0;
display: none;
}
.dock-wrapper.collapsed .dock-label {
position: relative;
opacity: 1;
visibility: visible;
pointer-events: auto;
display: block;
}
.fullscreen-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease;
}
.fullscreen-overlay.active {
opacity: 1;
visibility: visible;
}
.fullscreen-content {
max-width: 90vw;
max-height: 90vh;
transform: scale(0.8);
opacity: 0;
transition: transform 0.5s ease, opacity 0.5s ease;
}
.fullscreen-overlay.active .fullscreen-content {
transform: scale(1);
opacity: 1;
}
.fullscreen-content img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.close-btn {
position: fixed;
top: 24px;
right: 24px;
width: 42px;
height: 42px;
margin: 0;
padding: 0;
min-height: fit-content;
font-weight: normal;
font-size: 32px;
line-height: 38px;
text-align: center;
background: rgba(255, 255, 255, 0.1);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
transform: rotate(45deg);
transition: background 0.3s ease, transform 0.3s ease;
z-index: 1000;
-webkit-tap-highlight-color: transparent; outline: none; }
.close-btn:hover {
background: rgba(255, 255, 255, 0.25);
transform: rotate(45deg) scale(1.1);
}
.play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
pointer-events: none;
}
.fullscreen-content video,
.fullscreen-content img {
max-width: 90vw;
max-height: 90vh;
border-radius: 16px;
transition: all 0.3s ease;
}* {
box-sizing: border-box;
user-select: none;
margin: 0;
padding: 0;
}
body {
margin: 0;
padding: 0;
background: radial-gradient(ellipse at center, #111 0%, #000 100%);
font-family: 'Inter', sans-serif;
user-select: none;
-webkit-user-select: none;
display: flex;
flex-direction: column;
}
.gallery {
width: 100vw;
height: 100vh;
position: relative;
}
.carousel-container {
flex: 1;
width: 100vw;
height: 100vh;
position: relative;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
user-select: none;
}
.carousel {
display: flex;
position: relative;
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
transform-style: preserve-3d;
user-select: none;
}
.card {
position: absolute;
aspect-ratio: 9 / 16;
border-radius: 1.5rem;
overflow: hidden;
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
backdrop-filter: blur(8px);
transition: all 0.7s cubic-bezier(0.33, 1, 0.68, 1);
transform-style: preserve-3d;
cursor: pointer;
user-select: none;
opacity: 0;
visibility: hidden;
pointer-events: none;
width: 20vw;
}
.card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: filter 0.3s ease;
pointer-events: none;
user-select: none;
}
.card:hover img {
filter: blur(0.5px);
}
.thumbnail-wrapper {
width: 100%;
height: 100%;
position: relative;
}
.thumbnail-wrapper .thumbnail-play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
user-select: none;
z-index: 100;
}
.thumbnail-wrapper .thumbnail-play-icon svg {
width: 16px;
height: 16px;
}
@media (max-width: 767px) {
.card {
width: 60vw;
}
} .center {
transform: perspective(1000px) translateZ(150px) scale(1) rotateY(0deg);
z-index: 5;
opacity: 1 !important;
visibility: visible !important;
pointer-events: auto !important;
filter: none;
background: rgba(0, 0, 0, 0.2);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
backdrop-filter: blur(14px);
}
.left1,
.right1 {
transform: perspective(1000px) translateX(var(--x)) translateZ(0px) rotateY(var(--r)) scale(0.9);
z-index: 4;
opacity: 0.5 !important;
visibility: visible !important;
pointer-events: auto !important;
background: rgba(10, 10, 20, 0.15);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(20px);
filter: grayscale(20%) brightness(80%) contrast(80%);
}
.left2,
.right2 {
transform: perspective(1000px) translateX(var(--x)) translateZ(-100px) rotateY(var(--r)) scale(0.8);
z-index: 3;
opacity: 0.3 !important;
visibility: visible !important;
pointer-events: none !important;
background: rgba(5, 5, 10, 0.1);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
backdrop-filter: blur(28px);
filter: grayscale(50%) brightness(60%) contrast(70%);
} @media (max-width: 767px) {
.center {
transform: translateX(0%) scale(1) skewY(0deg);
z-index: 3;
opacity: 1 !important;
visibility: visible !important;
pointer-events: auto !important;
}
.left1 {
transform: translateX(-65%) scale(0.9) skewY(4deg);
z-index: 2;
opacity: 0.7 !important;
visibility: visible !important;
pointer-events: auto !important;
}
.right1 {
transform: translateX(65%) scale(0.9) skewY(-4deg);
z-index: 2;
opacity: 0.7 !important;
visibility: visible !important;
pointer-events: auto !important;
}
} .dock-wrapper {
transition: none;
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
padding-left: 10px;
display: flex;
align-items: center;
justify-content: flex-start;
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border-radius: 24px;
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
z-index: 10;
max-width: 90vw;
max-height: 1920px;
} .dock {
transition: none;
height: 110px;
padding: 12px 16px;
display: flex;
align-items: center;
justify-content: flex-start;
gap: 12px;
z-index: 10;
overflow-x: auto;
overflow-y: hidden;
scroll-behavior: smooth;
-ms-overflow-style: none;
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
visibility: visible;
pointer-events: auto;
opacity: 1;
}
.dock::-webkit-scrollbar {
height: 4px;
}
.dock::-webkit-scrollbar-track {
background: transparent;
margin-left: 16px;
margin-right: 16px;
}
.dock::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.2);
border-radius: 999px;
transition: background-color 0.3s ease;
}
.dock::-webkit-scrollbar-thumb:hover {
background-color: rgba(255, 255, 255, 0.3);
}
.dock::-webkit-scrollbar-button {
display: none;
height: 0;
width: 0;
}
.dock img {
filter: grayscale(100%) opacity(0.5);
transition: all 0.3s ease;
height: 100%;
max-width: fit-content;
border-radius: 12px;
aspect-ratio: 9 / 16;
object-fit: cover;
opacity: 0.7;
transition: none;
cursor: pointer;
flex-shrink: 0;
transform: scale(1);
}
.dock img.active,
.dock img:hover {
transition: all 0.3s ease;
filter: grayscale(0%) opacity(1);
transform: scale(1.1);
}
@media (max-width: 767px) {
.dock::-webkit-scrollbar {
display: none;
}
.dock-wrapper {
bottom: 24px;
gap: 10px;
}
.dock {
gap: 10px;
height: 100px;
}
.dock img {
border-radius: 10px;
}
}
.dock-label {
position: absolute;
color: #ccc;
font-size: 0.85rem;
opacity: 0;
width: 150px;
padding: 0 10px;
transition: none;
margin-left: 8px;
pointer-events: none;
visibility: hidden;
pointer-events: none;
display: none;
}
.dock-toggle {
width: 36px;
height: 36px;
min-width: 36px;
min-height: 36px;
border: none;
border-radius: 999px;
margin: 0 10px;
padding: 10px !important;
background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
box-shadow:
inset 0 1px 2px rgba(255, 255, 255, 0.05), 0 2px 6px rgba(0, 0, 0, 0.2); cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: none;
flex-shrink: 0;
}
.dock-toggle svg {
stroke: #ccc !important;
transition: none;
}
.dock-toggle:hover svg {
stroke: #fff !important;
}
.dock-toggle:hover {
background: rgba(255, 255, 255, 0.15);
transform: scale(1.1);
}
.dock-toggle svg {
stroke: white;
} .dock-wrapper.collapsed {
max-height: 40px !important;
bottom: 10px !important;
padding: 20px 0;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
cursor: pointer;
user-select: none;
} .dock-wrapper.collapsed .dock img {
opacity: 0 !important;
visibility: hidden !important;
pointer-events: none !important;
}
.dock-wrapper.collapsed .dock-toggle {
width: 30px;
height: 30px;
min-width: 24px;
min-height: 24px;
margin-left: 8px;
} .dock-wrapper.collapsed .dock {
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: scale(0);
width: 0;
height: 0;
display: none;
}
.dock-wrapper.collapsed .dock-label {
position: relative;
opacity: 1;
visibility: visible;
pointer-events: auto;
display: block;
}
.fullscreen-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease;
}
.fullscreen-overlay.active {
opacity: 1;
visibility: visible;
}
.fullscreen-content {
max-width: 90vw;
max-height: 90vh;
transform: scale(0.8);
opacity: 0;
transition: transform 0.5s ease, opacity 0.5s ease;
}
.fullscreen-overlay.active .fullscreen-content {
transform: scale(1);
opacity: 1;
}
.fullscreen-content img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.close-btn {
position: fixed;
top: 24px;
right: 24px;
width: 42px;
height: 42px;
margin: 0;
padding: 0;
min-height: fit-content;
font-weight: normal;
font-size: 32px;
line-height: 38px;
text-align: center;
background: rgba(255, 255, 255, 0.1);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
transform: rotate(45deg);
transition: background 0.3s ease, transform 0.3s ease;
z-index: 1000;
-webkit-tap-highlight-color: transparent; outline: none; }
.close-btn:hover {
background: rgba(255, 255, 255, 0.25);
transform: rotate(45deg) scale(1.1);
}
.play-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
pointer-events: none;
}
.fullscreen-content video,
.fullscreen-content img {
max-width: 90vw;
max-height: 90vh;
border-radius: 16px;
transition: all 0.3s ease;
}