* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    gap: 3rem;
}
.nav-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    transition: color 0.3s;
    text-transform: uppercase;
}
.nav-links a:hover {
    color: #d4af37;
}
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(74, 95, 122, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    animation: bgMove 20s ease-in-out infinite;
}
@keyframes bgMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}
.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: 0.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}
.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    color: #999;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}
.hero-description {
    font-size: 1rem;
    color: #666;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}
.section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    margin-bottom: 4rem;
}
.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
    color: #d4af37;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #999;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.stat-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(74, 95, 122, 0.1) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}
.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.skill-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.skill-card:hover::before {
    opacity: 1;
}
.skill-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}
.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.skill-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}
.skill-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #999;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(74, 95, 122, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    background-size: cover;
    background-position: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-content {
    opacity: 1;
}
.gallery-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}
.gallery-label {
    font-size: 0.9rem;
    opacity: 0.8;
}
footer {
    padding: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
}
.footer-text {
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
    nav {
        padding: 1.5rem 2rem;
    }
    .nav-links {
        display: none;
    }
    .section {
        padding: 4rem 2rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 2.5rem;
    }
}