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

body {
    font-family: 'Roboto Mono', monospace;
    background: #3a4048;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 30px 50px;
    z-index: 100;
    display: flex;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    padding: 10px 20px;
    border: 1px solid transparent;
}

nav a:hover,
nav a.active {
    color: #f26b38;
}

nav a.btn-contacts {
    border: 1px solid #ffffff;
}

nav a.btn-contacts:hover {
    border-color: #f26b38;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 14px;
    color: #999;
    letter-spacing: 2px;
}

/* Glitch Effect */
.glitch-effect {
    position: relative;
}

.glitch-effect:before,
.glitch-effect:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #3a4048;
    clip: rect(0, 0, 0, 0);
}

.glitch-effect:after {
    left: 2px;
    text-shadow: -1px 0 #f26b38;
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch-effect:before {
    left: -2px;
    text-shadow: 2px 0 #f26b38;
    animation: glitch-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { clip: rect(20px, 920px, 51px, 0); }
    5% { clip: rect(83px, 920px, 102px, 0); }
    10% { clip: rect(83px, 920px, 105px, 0); }
    15% { clip: rect(95px, 920px, 11px, 0); }
    20% { clip: rect(105px, 920px, 56px, 0); }
    25% { clip: rect(40px, 920px, 19px, 0); }
    30% { clip: rect(56px, 920px, 97px, 0); }
    35% { clip: rect(9px, 920px, 17px, 0); }
    40% { clip: rect(103px, 920px, 53px, 0); }
    45% { clip: rect(92px, 920px, 6px, 0); }
    50% { clip: rect(69px, 920px, 46px, 0); }
    55% { clip: rect(8px, 920px, 87px, 0); }
    60% { clip: rect(12px, 920px, 15px, 0); }
    70% { clip: rect(28px, 920px, 106px, 0); }
    80% { clip: rect(98px, 920px, 63px, 0); }
    85% { clip: rect(11px, 920px, 44px, 0); }
    95% { clip: rect(23px, 920px, 84px, 0); }
    100% { clip: rect(66px, 920px, 91px, 0); }
}

@keyframes glitch-2 {
    0% { clip: rect(86px, 920px, 25px, 0); }
    5% { clip: rect(30px, 920px, 17px, 0); }
    10% { clip: rect(54px, 920px, 43px, 0); }
    15% { clip: rect(10px, 920px, 86px, 0); }
    25% { clip: rect(62px, 920px, 1px, 0); }
    30% { clip: rect(61px, 920px, 24px, 0); }
    35% { clip: rect(38px, 920px, 46px, 0); }
    40% { clip: rect(115px, 920px, 8px, 0); }
    45% { clip: rect(87px, 920px, 44px, 0); }
    50% { clip: rect(6px, 920px, 65px, 0); }
    55% { clip: rect(83px, 920px, 99px, 0); }
    65% { clip: rect(25px, 920px, 71px, 0); }
    70% { clip: rect(37px, 920px, 55px, 0); }
    75% { clip: rect(115px, 920px, 18px, 0); }
    80% { clip: rect(68px, 920px, 46px, 0); }
    90% { clip: rect(47px, 920px, 31px, 0); }
    95% { clip: rect(47px, 920px, 84px, 0); }
    100% { clip: rect(93px, 920px, 53px, 0); }
}

/* Mouse Scroll Indicator */
.mouse-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid #f26b38;
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: #f26b38;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-scroll 1.5s infinite;
}

@keyframes mouse-scroll {
    0% { top: 8px; }
    50% { top: 15px; }
    100% { top: 8px; }
}

/* Footer */
.footer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 11px;
    color: #999;
    z-index: 100;
}

.social-links {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.social-links a {
    color: #999;
    font-size: 18px;
    transition: color 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: #f26b38;
}

/* Content Sections */
.section {
    min-height: 10vh;
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resume-section {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 2px;
    border-bottom: 1px solid #f26b38;
    padding-bottom: 10px;
    display: inline-block;
}

/* About Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

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

.about-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    font-size: 12px;
}

.info-label {
    color: #f26b38;
    margin-bottom: 5px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #f26b38;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #d95a2f;
}

/* Experience & Education */
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.timeline-item {
    border-left: 2px solid #f26b38;
    padding-left: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #f26b38;
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: 0;
}

.timeline-date {
    color: #f26b38;
    font-size: 11px;
    padding: 5px 10px;
    border: 1px solid #f26b38;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-description {
    color: #ccc;
    font-size: 12px;
    line-height: 1.6;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.skill-bar {
    margin-bottom: 30px;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
}

.skill-level {
    height: 4px;
    background: #555;
    position: relative;
}

.skill-level-fill {
    height: 100%;
    background: #f26b38;
    transition: width 1s ease;
}

.skill-dots {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #555;
}

.dot.active {
    background: #f26b38;
}

.coding-skills {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 20px;
}

.coding-skill {
    text-align: center;
}

.circle-skill {
    width: 120px;
    height: 120px;
    position: relative;
    margin: 0 auto 15px;
}

.circle-skill svg {
    transform: rotate(-90deg);
}

.circle-skill circle {
    fill: none;
    stroke-width: 8;
}

.circle-bg {
    stroke: #555;
}

.circle-progress {
    stroke: #f26b38;
    stroke-dasharray: 339;
    stroke-dashoffset: 339;
    transition: stroke-dashoffset 1s ease;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
}

/* Knowledge Section */
.knowledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 80px;
}

.knowledge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.knowledge-item::before {
    content: '✓';
    color: #f26b38;
    font-weight: 700;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.service-icon {
    font-size: 32px;
    color: #f26b38;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: #ccc;
    font-size: 12px;
    line-height: 1.6;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-item {
    background: #2d3238;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-image.pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.blog-image.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 11px;
    color: #f26b38;
    border: 1px solid #f26b38;
    padding: 5px 10px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.contact-icon {
    font-size: 28px;
    color: #f26b38;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-value {
    font-size: 12px;
    color: #ccc;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 15px 0;
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    margin-bottom: 30px;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-bottom-color: #f26b38;
}

textarea {
    resize: none;
    height: 120px;
}

input::placeholder, textarea::placeholder {
    color: #777;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-grid,
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 20px;
        gap: 15px;
    }

    .hero-title {
        font-size: 40px;
    }

    .coding-skills {
        flex-wrap: wrap;
    }
}
