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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #e8e8e8 0%, #d5d5d5 100%);
    color: #000;
    line-height: 1.6;
    padding: 20px;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #7b6bc9;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(123, 107, 201, 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: #fbbf24;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.15);
}

a, button, .project-card, .work-item, .filter-btn, .social-icon, .social-btn {
    cursor: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #f0f0f0;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
}

.logo-circle {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #8b9474 0%, #6b7558 100%);
    border-radius: 50%;
    display: inline-block;
}

.logo-text {
    color: #000;
}

.nav {
    display: flex;
    gap: 32px;
}

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

.nav-link.active {
    color: #000;
}

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

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #d4e4f7 0%, #b8d4f1 50%, #c5b8e8 100%);
    border-radius: 24px;
    padding: 60px 50px;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.social-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    animation: float-image 6s ease-in-out infinite;
}

@keyframes float-image {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.hero-image img:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(251, 191, 36, 0.4);
}

/* Projects Section */
.projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    border-radius: 24px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    text-decoration: none;
}

.project-link {
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-purple {
    background: linear-gradient(135deg, #7b6bc9 0%, #6b5bb9 100%);
    color: #fff;
}

.project-dark {
    background: linear-gradient(135deg, #3a3f4f 0%, #2d3241 100%);
    color: #fff;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.project-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.project-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

.project-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
}

.project-link:hover .project-arrow {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.project-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-placeholder {
    width: 100%;
    max-width: 300px;
    height: 280px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.placeholder-text {
    font-size: 14px;
    color: #fff;
    opacity: 0.7;
}

/* Laptop Mockup */
.laptop-mockup {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.laptop-screen {
    background: #1a1a1a;
    border-radius: 8px 8px 0 0;
    padding: 12px 12px 0 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.laptop-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px 4px 0 0;
    background: #fff;
}

.laptop-base {
    width: 110%;
    height: 8px;
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
    margin: 0 -5%;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.laptop-notch {
    width: 60px;
    height: 4px;
    background: #3a3a3a;
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
    position: relative;
    top: -4px;
}

/* Quote Card Styling */
.quote-card-home {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.quote-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6366f1, #a78bfa, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.quote-card-home::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.quote-preview {
    padding: 40px 30px;
    background: rgba(30, 30, 46, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    max-width: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 280px;
}

.quote-icon-small {
    font-size: 4rem;
    color: rgba(99, 102, 241, 0.4);
    line-height: 0;
    margin-bottom: 25px;
    font-family: Georgia, serif;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.quote-text-small {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #f1f5f9;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    max-width: 90%;
}

.quote-author-small {
    font-size: 1.05rem;
    color: #c4b5fd;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quote-author-small::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a78bfa);
}

.quote-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
}

.quote-card-home:hover .quote-preview {
    background: rgba(30, 30, 46, 0.6);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.quote-card-home:hover .quote-icon-small {
    color: rgba(99, 102, 241, 0.6);
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.quote-card-home:hover .quote-text-small {
    color: #ffffff;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #d4e4f7 0%, #b8d4f1 50%, #c5b8e8 100%);
    border-radius: 24px;
    padding: 60px 50px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.contact-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    opacity: 0.9;
}

.contact-section {
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #f8f8f8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7b6bc9;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 16px;
    transition: all 0.3s;
}

.info-card:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7b6bc9 0%, #6b5bb9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
}

.info-content a,
.info-content p {
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #7b6bc9;
}

/* Social Links */
.social-links {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.social-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #7b6bc9;
    color: #fff;
    transform: translateY(-3px);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #d4e4f7 0%, #b8d4f1 50%, #c5b8e8 100%);
    border-radius: 24px;
    padding: 60px 50px;
    margin-bottom: 40px;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    opacity: 0.9;
}

.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* CV Download Section */
.cv-section {
    margin-bottom: 40px;
}

.cv-download-card {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.cv-download-card:hover {
    border-color: #7b6bc9;
    box-shadow: 0 8px 30px rgba(123, 107, 201, 0.15);
    transform: translateY(-3px);
}

.cv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7b6bc9 0%, #6b5bb9 100%);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
}

.cv-download-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.cv-download-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cv-download-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Skills Section */
.skills-section {
    margin-bottom: 40px;
}

.section-title-center {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.skill-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.skill-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7b6bc9 0%, #6b5bb9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}

.skill-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.skill-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Experience Section */
.experience-section {
    margin-bottom: 40px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.experience-column {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #7b6bc9, #c5b8e8);
}

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

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 6px;
    width: 18px;
    height: 18px;
    background: #7b6bc9;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(123, 107, 201, 0.4);
}

.timeline-content {
    padding-bottom: 8px;
}

.timeline-date {
    font-size: 13px;
    font-weight: 600;
    color: #7b6bc9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
}

.timeline-company {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.tech-category h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.tech-tag:hover {
    background: linear-gradient(135deg, #7b6bc9 0%, #6b5bb9 100%);
    color: #fff;
    border-color: #7b6bc9;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #7b6bc9 0%, #6b5bb9 100%);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: #fff;
    color: #7b6bc9;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Works Page Styles */
.works-hero {
    background: linear-gradient(135deg, #d4e4f7 0%, #b8d4f1 50%, #c5b8e8 100%);
    border-radius: 24px;
    padding: 80px 50px;
    text-align: center;
    margin-bottom: 40px;
}

.works-title {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.works-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.filter-buttons {
    background: #fff;
    border-radius: 50px;
    padding: 8px;
    display: inline-flex;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.filter-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: linear-gradient(135deg, #7b6bc9 0%, #6b5bb9 100%);
    color: #fff;
}

.filter-btn:hover:not(.active) {
    background: #f8f8f8;
    color: #000;
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.work-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.work-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
}

.work-image-dark {
    background: linear-gradient(135deg, #3a3f4f 0%, #2d3241 100%);
}

.work-image-gradient-1 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.work-image-gradient-2 {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.work-image-gradient-3 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.work-image-gradient-4 {
    background: linear-gradient(135deg, #ff6e7f 0%, #bfe9ff 100%);
}

.work-image-white {
    background: #ffffff;
}

.work-image-cookie-game {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.cookie-game-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
    text-align: center;
}

.cookie-preview-icon {
    font-size: 80px;
    margin-bottom: 15px;
    animation: float-cookie 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.6));
}

@keyframes float-cookie {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.cookie-preview-text {
    font-size: 24px;
    font-weight: bold;
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    margin-bottom: 20px;
}

.cookie-preview-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-icon {
    font-size: 24px;
}

.stat-text {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
}

.play-button {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1a2e;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    transition: all 0.3s;
}

.work-item:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.6);
}

.logo-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.logo-image {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.work-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px;
}

.work-placeholder-text {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    opacity: 0.7;
}

.work-preview-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.preview-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(10px);
}

.laptop-mockup-small {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

.work-info {
    padding: 30px;
}

.work-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.work-tag {
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.work-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Hide custom cursor on tablets and mobile */
    .cursor,
    .cursor-follower {
        display: none !important;
    }
    
    body {
        cursor: auto !important;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .projects {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
    }
    
    .about-hero-image {
        order: -1;
    }
    
    .cv-download-card {
        padding: 35px 25px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .laptop-mockup {
        max-width: 400px;
    }
    
    .quote-preview {
        padding: 30px 20px;
        min-height: 240px;
    }
    
    .quote-text-small {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .nav {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .project-card {
        padding: 24px;
        min-height: auto;
    }
    
    .project-title {
        font-size: 20px;
    }
    
    .project-subtitle {
        font-size: 13px;
    }
    
    .laptop-mockup {
        max-width: 100%;
    }
    
    .quote-preview {
        padding: 25px 15px;
        min-height: 200px;
    }
    
    .quote-icon-small {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .quote-text-small {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .quote-author-small {
        font-size: 0.9rem;
    }
    
    .contact-hero {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-description {
        font-size: 15px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 24px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 14px;
    }
    
    .about-hero {
        padding: 30px 20px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .cv-download-card {
        padding: 30px 20px;
    }
    
    .cv-icon {
        width: 70px;
        height: 70px;
    }
    
    .cv-download-card h3 {
        font-size: 24px;
    }
    
    .cv-download-card p {
        font-size: 15px;
    }
    
    .skill-card,
    .experience-column {
        padding: 24px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 15px;
    }
    
    .works-hero {
        padding: 40px 20px;
    }
    
    .works-title {
        font-size: 36px;
    }
    
    .works-description {
        font-size: 15px;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 12px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .hero {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .social-icon {
        width: 44px;
        height: 44px;
    }
    
    .project-card {
        padding: 20px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-arrow {
        width: 36px;
        height: 36px;
    }
    
    .quote-preview {
        padding: 20px 12px;
        min-height: 180px;
    }
    
    .quote-icon-small {
        font-size: 2.5rem;
    }
    
    .quote-text-small {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .quote-author-small {
        font-size: 0.85rem;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 14px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .cv-download-card {
        padding: 25px 15px;
    }
    
    .cv-icon {
        width: 60px;
        height: 60px;
    }
    
    .cv-download-card h3 {
        font-size: 20px;
    }
    
    .cv-download-card p {
        font-size: 14px;
    }
    
    .section-title-center {
        font-size: 24px;
    }
    
    .skill-card,
    .experience-column {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .works-title {
        font-size: 28px;
    }
    
    .works-description {
        font-size: 14px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .work-title {
        font-size: 18px;
    }
    
    .work-description {
        font-size: 13px;
    }
}