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

        @font-face {
            font-family: 'Minecraft';
            src: url('Minecraft_1.1.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        body {
            font-family: 'Minecraft', sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #2b2b2b;
            color: #fff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .content {
            padding: 30px;
            background-color: rgba(43, 43, 43, 0.8);
            animation: fadeIn 0.6s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .white-border {
            border: 2px dashed #fff;
            transition: border-color 0.3s ease;
        }

        .white-border:hover {
            border-color: #4CAF50;
        }

        .content h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: clamp(1.5rem, 4vw, 2rem);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .row-1 {
            display: flex;
            flex-direction: row;
            gap: 30px;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .avatar-container{
            display: flex;
            justify-content: center;
        }

        .avatar {
            flex-shrink: 0;
            padding: 10px;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .avatar img {
            width: 200px;
            height: 200px;
            display: block;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .avatar:hover img {
            transform: scale(1.05);
        }

        .text {
            flex: 1;
            min-width: 0;
        }

        .text > p {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            margin-bottom: 5px;
            font-weight: bold;
        }

        .text small {
            color: #bbb;
            font-size: clamp(0.75rem, 2vw, 0.875rem);
            display: block;
            margin-bottom: 20px;
        }

        .contacts,
        .experience {
            margin-top: 20px;
        }

        .contacts h3,
        .experience h3 {
            margin-bottom: 10px;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #4CAF50;
        }

        .contacts p {
            font-size: clamp(0.75rem, 2vw, 0.875rem);
            margin-bottom: 5px;
            word-break: break-word;
        }

        .contacts a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contacts a:hover {
            color: #4CAF50;
            text-decoration: underline;
        }

        .experience ul {
            list-style-type: square;
            padding-left: 20px;
        }

        .experience ul li {
            font-size: clamp(0.75rem, 2vw, 0.875rem);
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .buttons {
            margin-top: 25px;
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .buttons a {
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            background-color: rgba(76, 175, 80, 0.2);
            transition: all 0.3s ease;
            font-size: clamp(0.75rem, 2vw, 1rem);
            text-align: center;
        }

        .buttons a:hover {
            background-color: rgba(76, 175, 80, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
        }

        .buttons a:active {
            transform: translateY(0);
        }

        .stripe {
            margin-top: 25px;
            height: 10px;
            background: repeating-linear-gradient(
                45deg,
                yellow 0px,
                yellow 20px,
                black 20px,
                black 40px
            );
            animation: stripeMove 1s linear infinite;
        }

        @keyframes stripeMove {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 40px 40px;
            }
        }

        .construction {
            margin-top: 15px;
            text-align: center;
            font-size: clamp(0.75rem, 2vw, 1rem);
            color: #ffeb3b;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .content {
                padding: 20px;
            }

            .row-1 {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .avatar img {
                width: 150px;
                height: 150px;
            }

            .text {
                text-align: center;
            }

            .experience {
                text-align: left;
                padding-left: 0;
            }

            .buttons {
                flex-direction: column;
                width: 100%;
            }

            .buttons a {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .content h2 {
                margin-bottom: 20px;
            }

            .avatar img {
                width: 120px;
                height: 120px;
            }

            .contacts,
            .experience {
                margin-top: 15px;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for keyboard navigation */
        a:focus,
        button:focus {
            outline: 2px solid #4CAF50;
            outline-offset: 2px;
        }

        .skill-badges {
            display: flex;
            flex-wrap: wrap;
            margin-top: 20px;
            justify-content: space-between;
            gap: 8px;
            width: 220px;
        }

        .badge {
            flex: auto;
            text-align: center;
            display: inline-block;
            padding: 6px 12px;
            background-color: rgba(76, 175, 80, 0.3);
            border: 1px solid #4CAF50;
            color: #fff;
            font-size: clamp(0.65rem, 1.8vw, 0.75rem);
            transition: all 0.3s ease;
            cursor: default;
            white-space: nowrap;
        }

        .badge:hover {
            background-color: rgba(76, 175, 80, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
        }