* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0f;
    color: #f0f0f5;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.blob-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background-color: #8b5cf6;
    top: -80px;
    left: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background-color: #ec4899;
    bottom: 80px;
    right: -80px;
}

.blob-3 {
    width: 280px;
    height: 280px;
    background-color: #06b6d4;
    top: 50%;
    right: 20%;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(10, 10, 15, 0.85);
    border-bottom: 1px solid #2a2a3e;
    padding: 18px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: #a78bfa;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #b0b0c0;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #a78bfa;
}

.nav-link.active {
    color: #f0f0f5;
    border-bottom: 2px solid #ec4899;
    padding-bottom: 3px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background-image: url(images/banner.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #e040fb;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: #a78bfa;
    margin-bottom: 14px;
}

.hero-description {
    font-size: 16px;
    color: #b0b0c0;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 13px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.btn-primary {
    background-color: #8b5cf6;
    color: white;
}

.btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #8b5cf6;
    color: #a78bfa;
}

.btn-secondary:hover {
    background-color: #8b5cf6;
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    flex-shrink: 0;
}

.polaroid-glass {
    width: 300px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.polaroid-content {
    width: 100%;
    height: 100%;
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.polaroid-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px; 
}

.polaroid-glass:hover {
    transform: rotate(-2deg) scale(1.02);
    transition: transform 0.3s;
}

.about {
    padding: 100px 0;
    background-image: url(images/bann.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #e040fb;
    margin-bottom: 10px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #8b5cf6;
    margin: 0 auto;
    border-radius: 2px;
}

.about-cards {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.glass-card {
    flex: 1;
    min-width: 220px;
    background-color: #141428;
    border: 1px solid #2a2a3e;
    border-radius: 16px;
    padding: 28px 22px;
    transition: border-color 0.3s, transform 0.3s;
}

.glass-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.glass-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #f0f0f5;
}

.glass-card p {
    font-size: 14px;
    color: #b0b0c0;
}

.bio-gradient-card {
    background-color: rgba(48, 24, 49, 0.445);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 60px;
}

.bio-content p {
    color: #b0b0c0;
    font-size: 15px;
    margin-bottom: 14px;
}

.interests-section {
    margin-bottom: 60px;
}

.interests-section h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 28px;
    color: #b573e0;
}

.interests-grid-creative {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.interest-card {
    background-color: #141428;
    border: 1px solid #2a2a3e;
    border-radius: 14px;
    padding: 20px 24px;
    text-align: center;
    min-width: 120px;
    flex: 1;
    transition: border-color 0.3s, transform 0.3s;
}

.interest-card:hover {
    border-color: #611056;
    transform: translateY(-5px);
}

.interest-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.interest-card span {
    font-size: 13px;
    color: #b0b0c0;
}

.education-section {
    margin-bottom: 60px;
}

.education-title {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: #8b5cf6;
    margin-bottom: 32px;
}

.education-timeline {
    padding-left: 30px;
    border-left: 2px solid #2a2a3e;
}

.edu-timeline-item {
    position: relative;
    margin-bottom: 28px;
}

.edu-timeline-marker {
    position: absolute;
    left: -38px;
    top: 18px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #8b5cf6;
    background-color: #0a0a0f;
}

.edu-timeline-content {
    background: linear-gradient(45deg, #35032e, #6648aa);
    border: 1px solid #2a2a3e;
    border-left: 3px solid #8b5cf6;
    border-radius: 12px;
    padding: 18px 22px;
    transition: border-color 0.3s, transform 0.3s;
}

.edu-timeline-content:hover {
    border-left-color: #ec4899;
    transform: translateX(6px);
}

.edu-year {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ec4899;
    margin-bottom: 6px;
}

.edu-school {
    font-size: 17px;
    font-weight: 700;
    color: #f0f0f5;
    margin-bottom: 4px;
}

.edu-course {
    font-size: 13px;
    color: #b0b0c0;
}

.skills-section {
    margin-bottom: 60px;
}

.skills-section h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 28px;
    color: #b573e0;
}

.skills-cards-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.skills-card {
    flex: 1;
    min-width: 220px;
    background-color: #141428;
    border: 1px solid #2a2a3e;
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.3s, transform 0.3s;
}

.skills-card:hover {
    border-color: #8b5cf6;
    background: linear-gradient(45deg, #b36093, #592b6b);
    transform: translateY(-5px);
}

.skill-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.skill-card-icon {
    font-size: 26px;
}

.skill-card-header h4 {
    font-size: 18px;
    color: #a78bfa;
}

.skill-card-line {
    height: 1px;
    background-color: #2a2a3e;
    margin-bottom: 16px;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #b0b0c0;
}

.skill-list-dot {
    width: 7px;
    height: 7px;
    background-color: #8b5cf6;
    border-radius: 50%;
    flex-shrink: 0;
}

.tools-section {
    margin-bottom: 60px;
}

.tools-section h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 28px;
    color: #b573e0;
}

.tools-grid-horizontal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.tool-card {
    width: 150px;
    height: 150px;
    background-color: #141428;
    border: 1px solid #2a2a3e;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: border-color 0.3s, transform 0.3s;
    cursor: default;
}

.tool-card:hover {
    border-color: #ec4899;
    transform: translateY(-6px);
}

.tool-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 10px;
}

.tool-name {
    font-size: 13px;
    color: #b0b0c0;
    text-align: center;
}

.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #e040fb;
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 18px;
    color: #b0b0c0;
}

.demo-section {
    padding: 60px 0;
    text-align: center;
}

.demo-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f0f0f5;
    margin-bottom: 24px;
}

.demo-video-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #141428;
    border: 1px solid #2a2a3e;
    border-radius: 16px;
    overflow: hidden;
    
}

.demo-video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.projects-showcase {
    padding: 60px 0 100px;
    background-image: url(images/videoframe_14290.png);
    
}

.projects-showcase h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f0f0f5;
    margin-bottom: 28px;
    text-align: center;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.project-item {
    width: 300px;
    
    border: 1px solid #2a2a3e;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.project-item:hover {
    border-color: #8b5cf6;
    transform: translateY(-8px);
}

.project-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 17px;
    color: #f0f0f5;
    margin-bottom: 6px;
}

.contact-section {
    padding: 60px 0 100px;
}

.contact-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.contact-card-main {
    background-color: #141428;
    border: 1px solid #2a2a3e;
    border-radius: 20px;
    padding: 48px;
    transition: border-color 0.3s;
}

.contact-card-main:hover {
    border-color: #8b5cf6;
}

.contact-intro {
    font-size: 16px;
    color: #b0b0c0;
    margin-bottom: 36px;
}

.contact-methods {
    margin-bottom: 36px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding: 14px;
    background-color: rgba(139, 92, 246, 0.06);
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-method:hover {
    background-color: rgba(139, 92, 246, 0.14);
    transform: translateX(5px);
}

.method-icon {
    font-size: 26px;
}

.method-label {
    color: #a78bfa;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.method-content a,
.method-content p {
    color: #f0f0f5;
    text-decoration: none;
    font-size: 15px;
}

.method-content a:hover {
    color: #a78bfa;
}

.availability-banner {
    background-color: #8b5cf6;
    color: white;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    font-size: 15px;
}

.footer {
    background-color: rgba(10, 10, 15, 0.9);
    border-top: 1px solid #2a2a3e;
    padding: 28px 0;
    text-align: center;
}

.footer p {
    color: #b0b0c0;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .container {
        width: 90%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-content, 
    .about-cards, 
    .tools-grid-horizontal, 
    .projects-grid, 
    .nav-content {
        display: block;
    }

    .hero-text, 
    .hero-image, 
    .glass-card, 
    .tool-card, 
    .project-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }

    .hero-title {
        font-size: 38px;
        text-align: center;
    }

    .hero-subtitle, .hero-description {
        text-align: center;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
    }

    .polaroid-glass {
        margin: 0 auto;
        transform: rotate(0deg);
        width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}