<title>Shubham Dey - Content Creator & Video Editor</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg-primary: #0a0a0a;
--bg-secondary: #1a1a1a;
--accent-1: #ff3366;
--accent-2: #00ffcc;
--accent-3: #ffcc00;
--text-primary: #ffffff;
--text-secondary: #a0a0a0;
--card-bg: rgba(255, 255, 255, 0.05);
--card-border: rgba(255, 255, 255, 0.1);
}
body {
font-family: 'Poppins', sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
min-height: 100vh;
overflow-x: hidden;
position: relative;
}
/* Animated background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background:
radial-gradient(circle at 20% 50%, rgba(255, 51, 102, 0.15) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(0, 255, 204, 0.15) 0%, transparent 50%),
radial-gradient(circle at 40% 20%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
animation: gradient-shift 15s ease infinite;
pointer-events: none;
z-index: 0;
}
@keyframes gradient-shift {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.8; transform: scale(1.1); }
}
.container {
max-width: 680px;
margin: 0 auto;
padding: 40px 20px;
position: relative;
z-index: 1;
}
/* Header */
.header {
text-align: center;
margin-bottom: 50px;
animation: fadeInDown 0.8s ease-out;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* UPDATED: Profile image now supports actual image */
.profile-image {
width: 140px;
height: 140px;
border-radius: 50%;
border: 4px solid var(--accent-1);
box-shadow:
0 0 30px rgba(255, 51, 102, 0.4),
0 0 60px rgba(0, 255, 204, 0.2);
margin: 0 auto 25px;
background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
font-weight: 800;
animation: pulse 3s ease-in-out infinite;
overflow: hidden;
position: relative;
}
/* Image inside profile */
.profile-image img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.name {
font-size: 42px;
font-weight: 800;
margin-bottom: 10px;
background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: -1px;
}
.tagline {
font-size: 18px;
color: var(--text-secondary);
font-weight: 400;
margin-bottom: 15px;
}
.subtitle {
font-family: 'Space Mono', monospace;
font-size: 14px;
color: var(--accent-2);
text-transform: uppercase;
letter-spacing: 2px;
}
/* Stats Section - NEW */
.stats {
display: flex;
justify-content: center;
gap: 30px;
margin: 20px 0;
padding: 20px;
background: var(--card-bg);
border-radius: 15px;
border: 1px solid var(--card-border);
backdrop-filter: blur(10px);
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 24px;
font-weight: 800;
color: var(--accent-1);
display: block;
}
.stat-label {
font-size: 12px;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 1px;
}
/* Links Section - ENHANCED */
.links {
display: flex;
flex-direction: column;
gap: 18px;
margin-bottom: 50px;
}
.link-card {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 16px;
padding: 20px 28px;
text-decoration: none;
color: var(--text-primary);
display: flex;
align-items: center;
gap: 20px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
backdrop-filter: blur(10px);
position: relative;
overflow: hidden;
animation: fadeInUp 0.6s ease-out backwards;
}
.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.link-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
transition: left 0.5s;
}
.link-card:hover::before {
left: 100%;
}
.link-card:hover {
transform: translateY(-5px) scale(1.02);
border-color: var(--accent-1);
box-shadow:
0 10px 40px rgba(255, 51, 102, 0.3),
0 0 0 2px var(--accent-1);
}
.link-card.youtube:hover {
border-color: #FF0000;
box-shadow:
0 10px 40px rgba(255, 0, 0, 0.4),
0 0 0 2px #FF0000;
}
.link-card.instagram:hover {
border-color: #E4405F;
box-shadow:
0 10px 40px rgba(228, 64, 95, 0.4),
0 0 0 2px #E4405F;
}
.link-card.whatsapp:hover {
border-color: #25D366;
box-shadow:
0 10px 40px rgba(37, 211, 102, 0.4),
0 0 0 2px #25D366;
}
.link-icon {
font-size: 36px;
flex-shrink: 0;
filter: drop-shadow(0 0 10px currentColor);
}
.link-content {
flex: 1;
}
.link-title {
font-size: 19px;
font-weight: 700;
margin-bottom: 5px;
}
.link-description {
font-size: 14px;
color: var(--text-secondary);
font-weight: 400;
}
.link-arrow {
font-size: 28px;
opacity: 0.6;
transition: all 0.3s;
}
.link-card:hover .link-arrow {
opacity: 1;
transform: translateX(8px);
}
/* Section Title */
.section-title {
font-size: 28px;
font-weight: 800;
margin-bottom: 25px;
text-align: center;
position: relative;
display: inline-block;
width: 100%;
}
.section-title::after {
content: '';
position: absolute;
bottom: -8px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
border-radius: 2px;
}
/* Services Grid */
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px;
margin-bottom: 50px;
}
.service-card {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 16px;
padding: 28px 20px;
text-align: center;
transition: all 0.3s;
backdrop-filter: blur(10px);
animation: fadeInUp 0.6s ease-out backwards;
}
.service-card:nth-child(1) { animation-delay: 0.5s; }
.service-card:nth-child(2) { animation-delay: 0.6s; }
.service-card:nth-child(3) { animation-delay: 0.7s; }
.service-card:hover {
transform: translateY(-6px) scale(1.03);
border-color: var(--accent-2);
box-shadow: 0 10px 35px rgba(0, 255, 204, 0.25);
}
.service-icon {
font-size: 48px;
margin-bottom: 15px;
filter: drop-shadow(0 0 12px currentColor);
}
.service-name {
font-size: 17px;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 8px;
}
.service-description {
font-size: 13px;
color: var(--text-secondary);
}
/* Portfolio/Reference Videos Section - NEW */
.portfolio {
margin-bottom: 50px;
}
.video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.video-card {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 16px;
overflow: hidden;
transition: all 0.3s;
backdrop-filter: blur(10px);
animation: fadeInUp 0.6s ease-out backwards;
}
.video-card:nth-child(1) { animation-delay: 0.8s; }
.video-card:nth-child(2) { animation-delay: 0.9s; }
.video-card:nth-child(3) { animation-delay: 1s; }
.video-card:hover {
transform: translateY(-6px);
border-color: var(--accent-1);
box-shadow: 0 10px 35px rgba(255, 51, 102, 0.3);
}
.video-thumbnail {
width: 100%;
height: 180px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
position: relative;
overflow: hidden;
}
/* For actual video thumbnails */
.video-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}
.play-button {
position: absolute;
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #000;
transition: all 0.3s;
}
.video-card:hover .play-button {
transform: scale(1.15);
background: #fff;
}
.video-info {
padding: 18px;
}
.video-title {
font-size: 16px;
font-weight: 700;
margin-bottom: 8px;
color: var(--text-primary);
}
.video-description {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.5;
}
/* Contact Section */
.contact {
background: var(--card-bg);
border: 1px solid var(--card-border);
border-radius: 20px;
padding: 35px;
text-align: center;
backdrop-filter: blur(10px);
animation: fadeInUp 0.8s ease-out 1.1s backwards;
}
.contact-title {
font-size: 24px;
font-weight: 800;
margin-bottom: 20px;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 14px;
}
.contact-item {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
font-size: 16px;
color: var(--text-secondary);
}
.contact-item a {
color: var(--accent-2);
text-decoration: none;
font-weight: 600;
transition: all 0.3s;
}
.contact-item a:hover {
color: var(--accent-1);
text-shadow: 0 0 10px var(--accent-1);
}
.contact-icon {
font-size: 20px;
color: var(--accent-1);
}
/* Footer */
.footer {
text-align: center;
padding: 30px 20px;
color: var(--text-secondary);
font-size: 13px;
animation: fadeIn 1s ease-out 1.2s backwards;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
/* Responsive */
@media (max-width: 600px) {
.name {
font-size: 32px;
}
.tagline {
font-size: 16px;
}
.profile-image {
width: 120px;
height: 120px;
font-size: 50px;
}
.stats {
gap: 15px;
padding: 15px;
}
.stat-number {
font-size: 20px;
}
.link-card {
padding: 18px 22px;
}
.link-title {
font-size: 16px;
}
.services {
grid-template-columns: 1fr;
}
.video-grid {
grid-template-columns: 1fr;
}
.section-title {
font-size: 24px;
}
}
</style>