    body {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        line-height: 1.6;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.6;
        }
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    @keyframes glow {

        0%,
        100% {
            box-shadow: 0 0 20px rgba(212, 165, 116, 0.4), 0 0 40px rgba(212, 165, 116, 0.2);
        }

        50% {
            box-shadow: 0 0 30px rgba(212, 165, 116, 0.6), 0 0 60px rgba(212, 165, 116, 0.3);
        }
    }

    .main-container {
        width: 100%;
        min-height: 100%;
        background: #0a0806;
        position: relative;
        overflow: hidden;
    }

    .background-animation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .particle {
        position: absolute;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.8) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .particle:nth-child(1) {
        width: 4px;
        height: 4px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        width: 6px;
        height: 6px;
        top: 60%;
        left: 80%;
        animation-delay: 2s;
    }

    .particle:nth-child(3) {
        width: 3px;
        height: 3px;
        top: 40%;
        left: 60%;
        animation-delay: 4s;
    }

    .particle:nth-child(4) {
        width: 5px;
        height: 5px;
        top: 80%;
        left: 30%;
        animation-delay: 1s;
    }

    .particle:nth-child(5) {
        width: 4px;
        height: 4px;
        top: 10%;
        left: 90%;
        animation-delay: 3s;
    }

    .geometric-shape {
        position: absolute;
        opacity: 0.05;
        animation: rotate 30s linear infinite;
    }

    .shape-1 {
        width: 300px;
        height: 300px;
        border: 2px solid #d4a574;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        top: 10%;
        right: 5%;
    }

    .shape-2 {
        width: 250px;
        height: 250px;
        border: 2px solid #b8956a;
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        bottom: 15%;
        left: 8%;
        animation-direction: reverse;
    }

    .content-wrapper {
        position: relative;
        z-index: 1;
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 40px;
        display: grid;
        grid-template-columns: 480px 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-section {
        position: relative;
        animation: fadeInUp 1s ease-out;
    }

    .profile-frame {
        position: relative;
        width: 100%;
        max-width: 480px;
        aspect-ratio: 3/4;
    }

    .profile-background {
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(139, 92, 46, 0.1) 100%);
        border-radius: 30px;
        filter: blur(20px);
        animation: pulse 3s ease-in-out infinite;
    }

    .profile-image {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 24px;
        overflow: hidden;
        border: 3px solid #d4a574;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        animation: glow 3s ease-in-out infinite;
        background: linear-gradient(135deg, #3d2817 0%, #2d2319 100%);
    }

    .profile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .profile-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 160px;
        background: linear-gradient(135deg, #3d2817 0%, #2d2319 100%);
    }

    .profile-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px 30px;
        background: linear-gradient(to top, rgba(26, 20, 16, 0.95) 0%, transparent 100%);
        backdrop-filter: blur(10px);
        border-radius: 0 0 24px 24px;
    }

    .profile-overlay h1 {
        color: #d4a574;
        margin: 0 0 8px 0;
        font-size: 38px;
        font-weight: 700;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .profile-overlay p {
        color: #b8956a;
        margin: 0;
        font-size: 20px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .main-content {
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .info-section {
        margin-bottom: 50px;
    }

    .info-section:last-child {
        margin-bottom: 0;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        position: relative;
    }

    .section-icon {
        font-size: 48px;
        filter: drop-shadow(0 4px 8px rgba(212, 165, 116, 0.3));
    }

    .section-title {
        color: #d4a574;
        font-size: 36px;
        margin: 0;
        font-weight: 700;
        position: relative;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #d4a574 0%, transparent 100%);
    }

    .about-content {
        background: linear-gradient(135deg, rgba(45, 35, 25, 0.6) 0%, rgba(26, 20, 16, 0.4) 100%);
        padding: 35px;
        border-radius: 20px;
        border: 1px solid rgba(212, 165, 116, 0.2);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .about-text {
        color: #c4b5a0;
        font-size: 18px;
        line-height: 1.9;
        margin: 0 0 18px 0;
    }

    .about-text:last-child {
        margin-bottom: 0;
    }

    .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 18px;
    }

    .skill-item {
        background: linear-gradient(135deg, rgba(61, 40, 23, 0.8) 0%, rgba(45, 35, 25, 0.6) 100%);
        color: #d4a574;
        padding: 22px 28px;
        border-radius: 16px;
        text-align: center;
        font-weight: 600;
        font-size: 17px;
        border: 1px solid rgba(212, 165, 116, 0.3);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .skill-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
        transition: left 0.5s;
    }

    .skill-item:hover {
        transform: translateY(-5px) scale(1.03);
        border-color: #d4a574;
        box-shadow: 0 12px 30px rgba(212, 165, 116, 0.3);
    }

    .skill-item:hover::before {
        left: 100%;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    .contact-card {
        background: linear-gradient(135deg, rgba(61, 40, 23, 0.8) 0%, rgba(45, 35, 25, 0.6) 100%);
        padding: 40px 35px;
        border-radius: 20px;
        border: 1px solid rgba(212, 165, 116, 0.3);
        text-align: center;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(212, 165, 116, 0.2) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .contact-card:hover {
        transform: translateY(-8px);
        border-color: #d4a574;
        box-shadow: 0 15px 50px rgba(212, 165, 116, 0.3);
    }

    .contact-card:hover::before {
        width: 300px;
        height: 300px;
    }

    .contact-icon {
        font-size: 52px;
        margin-bottom: 20px;
        filter: drop-shadow(0 4px 8px rgba(212, 165, 116, 0.3));
        position: relative;
        z-index: 1;
    }

    .contact-label {
        color: #b8956a;
        font-size: 13px;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        position: relative;
        z-index: 1;
    }

    .contact-link {
        color: #d4a574;
        font-size: 19px;
        font-weight: 600;
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
    }

    .contact-link:hover {
        color: #e5c294;
        transform: scale(1.05);
    }

    @media (max-width: 1200px) {
        .content-wrapper {
            grid-template-columns: 1fr;
            gap: 50px;
            padding: 40px 30px;
        }

        .profile-frame {
            max-width: 400px;
            margin: 0 auto;
        }

        .profile-overlay h1 {
            font-size: 32px;
        }

        .profile-overlay p {
            font-size: 18px;
        }
    }

    @media (max-width: 768px) {
        .content-wrapper {
            padding: 30px 20px;
            gap: 40px;
        }

        .profile-frame {
            max-width: 320px;
        }

        .profile-placeholder {
            font-size: 100px;
        }

        .profile-overlay {
            padding: 25px 20px;
        }

        .profile-overlay h1 {
            font-size: 28px;
        }

        .profile-overlay p {
            font-size: 16px;
        }

        .section-icon {
            font-size: 38px;
        }

        .section-title {
            font-size: 28px;
        }

        .about-content {
            padding: 25px;
        }

        .about-text {
            font-size: 16px;
        }

        .skills-grid {
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 14px;
        }

        .skill-item {
            padding: 16px 20px;
            font-size: 15px;
        }

        .contact-grid {
            grid-template-columns: 1fr;
        }

        .contact-card {
            padding: 30px 25px;
        }
    }