* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
    color: #ff8c00;
}

:root {
    --primary-color: #ff8c00;
    --background-color: #000;
    --text-shadow: 0 0 10px #ff8c00;
    --border-color: rgba(255, 140, 0, 0.3);
}

body {
    background-color: var(--background-color);
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.content {
    position: relative;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    text-shadow: var(--text-shadow);
    pointer-events: none;
    padding: 0 20px;
    text-align: center;
}

.static-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    letter-spacing: 0.2rem;
}

.hacking-text {
    font-size: 1.2rem;
    opacity: 0.7;
    text-align: center;
    max-width: 800px;
    margin-bottom: 2rem;
}

.hacking-text a {
    pointer-events: auto;
    text-decoration: underline;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.hacking-text a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-color), 0 0 15px var(--primary-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.header-left {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    pointer-events: auto;
    padding: 0.4rem 0.8rem;
}

.nav-menu a:hover {
    color: #fff;
    text-shadow: var(--text-shadow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.digital-numbers {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    opacity: 0.8;
    text-align: right;
    z-index: 1001;
    transition: z-index 0.3s ease;
}

#coordinates {
    font-size: 0.8rem;
    opacity: 0.7;
}

#timestamp {
    font-size: 0.8rem;
    opacity: 0.7;
}


.whois-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 10px 8px;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    box-shadow: -5px 0 15px rgba(255, 140, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.whois-toggle:hover {
    background: rgba(255, 140, 0, 0.1);
    box-shadow: -10px 0 20px rgba(255, 140, 0, 0.5);
}

.whois-toggle-text {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 5px var(--primary-color);
}

.whois-toggle i {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.whois-toggle.active {
    background: rgba(255, 140, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whois-panel {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    border-left: 2px solid var(--primary-color);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.whois-panel.active {
    right: 0;
}

.whois-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whois-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: var(--text-shadow);
}

.whois-close,
.whois-button {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.whois-close {
    padding: 0.5rem 1rem;
}

.whois-close:hover,
.whois-button:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 10px var(--primary-color);
}

.whois-content {
    padding: 2rem;
}

.whois-input-group {
    margin-bottom: 2rem;
}

.whois-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.whois-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.whois-input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
    border-color: #fff;
}

.whois-input::placeholder {
    color: rgba(255, 140, 0, 0.5);
}

.whois-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whois-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.whois-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.whois-results h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--primary-color);
}

.whois-field {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.whois-field:last-child {
    border-bottom: none;
}

.whois-field-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.whois-field-value {
    color: rgba(255, 140, 0, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-all;
}

.whois-array {
    margin-left: 1rem;
}

.whois-array-item {
    color: rgba(255, 140, 0, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.whois-loading {
    text-align: center;
    color: var(--primary-color);
    font-size: 1rem;
    padding: 2rem;
}

.whois-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.sections-container {
    position: relative;
    z-index: 1;
    padding-top: 10vh;
}

.section {
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: var(--text-shadow);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: var(--text-shadow);
}

#skills .section-title {
    background: linear-gradient(to right, #ff8c00, #ffbb33, #ff8c00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

#skills .section-title::after {
    background: linear-gradient(to right, #ff8c00, #ffbb33, #ff8c00);
    background-size: 200% auto;
    animation: gradientBorder 3s linear infinite;
    height: 3px;
    width: 150px;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
}

@keyframes gradientBorder {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

#skills .section-title::before {
    content: '</>';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 1.5rem;
    color: rgba(255, 140, 0, 0.3);
    transform: rotate(15deg);
    animation: codeSymbol 5s ease-in-out infinite alternate;
}

@keyframes codeSymbol {
    0% {
        transform: rotate(15deg) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: rotate(5deg) scale(1.2);
        opacity: 0.6;
    }

    100% {
        transform: rotate(15deg) scale(1);
        opacity: 0.3;
    }
}

#for-you .section-title {
    background: linear-gradient(to right, #ff8c00, #ff5500, #ff8c00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
}

#for-you .section-title::after {
    background: linear-gradient(to right, #ff8c00, #ff5500, #ff8c00);
    background-size: 200% auto;
    animation: gradientBorder 3s linear infinite;
    height: 3px;
    width: 150px;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
}

#for-you .section-title::before {
    content: '♥';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 1.5rem;
    color: rgba(255, 140, 0, 0.3);
    transform: rotate(15deg);
    animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    14% {
        transform: scale(1.3);
        opacity: 0.6;
    }

    28% {
        transform: scale(1);
        opacity: 0.3;
    }

    42% {
        transform: scale(1.3);
        opacity: 0.6;
    }

    70% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-img-container {
    position: relative;
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    animation: profileGlow 3s infinite alternate;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    animation: profilePulse 5s infinite alternate;
    filter: brightness(1.1) contrast(1.1);
}

.profile-img-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 140, 0, 0) 0%,
            rgba(255, 140, 0, 0.1) 50%,
            rgba(255, 140, 0, 0) 100%);
    transform: rotate(45deg);
    animation: scanEffect 3s linear infinite;
    z-index: 2;
    pointer-events: none;
}

.profile-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    box-shadow: inset 0 0 15px rgba(255, 140, 0, 0.7);
    animation: borderPulse 4s infinite;
    z-index: 1;
    pointer-events: none;
}

.profile-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.profile-img-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(255, 140, 0, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 140, 0, 0.2) 2px, transparent 2px);
    background-size: 20px 20px, 30px 30px;
    animation: particlesMove 20s linear infinite;
    opacity: 0.5;
    mix-blend-mode: screen;
}

.profile-img-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            rgba(255, 140, 0, 0.3) 0%,
            rgba(255, 140, 0, 0.1) 30%,
            transparent 70%);
    mix-blend-mode: overlay;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

.profile-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary-color);
    text-align: center;
    padding: 10px;
    font-size: 1.5rem;
    text-shadow: 0 0 5px var(--primary-color);
    z-index: 3;
    animation: nameGlow 2s infinite alternate;
}

.about-text {
    max-width: 600px;
    line-height: 1.8;
    color: var(--primary-color);
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    font-size: 1.1rem;
    text-align: justify;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Services Section Styles */
#services .section-title {
    background: linear-gradient(to right, #ff8c00, #ff6600, #ff8c00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
}

#services .section-title::after {
    background: linear-gradient(to right, #ff8c00, #ff6600, #ff8c00);
    background-size: 200% auto;
    animation: gradientBorder 3s linear infinite;
    height: 3px;
    width: 150px;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
}

#services .section-title::before {
    content: '$';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 1.5rem;
    color: rgba(255, 140, 0, 0.3);
    transform: rotate(15deg);
    animation: serviceSym 3s ease-in-out infinite alternate;
}

@keyframes serviceSym {
    0% {
        transform: rotate(15deg) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: rotate(5deg) scale(1.2);
        opacity: 0.6;
    }

    100% {
        transform: rotate(15deg) scale(1);
        opacity: 0.3;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.service-box {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    animation: serviceIconFloat 3s ease-in-out infinite alternate;
}

@keyframes serviceIconFloat {
    0% {
        transform: translateY(0);
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }

    100% {
        transform: translateY(-10px);
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.4);
    }
}

.service-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 0.95rem;
    color: var(--primary-color);
    opacity: 0.8;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-top: 1px dashed rgba(255, 140, 0, 0.3);
    border-bottom: 1px dashed rgba(255, 140, 0, 0.3);
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.service-cta {
    display: inline-block;
    margin-top: auto;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-cta:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.7);
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.service-cta:hover::before {
    left: 0;
}

.service-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 140, 0, 0) 0%,
            rgba(255, 140, 0, 0.1) 50%,
            rgba(255, 140, 0, 0) 100%);
    transform: rotate(45deg);
    animation: scanEffect 3s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.tiktok-container {
    max-width: 605px;
    margin: 0 auto;
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    animation: tiktokGlow 3s infinite alternate;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

.tiktok-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 140, 0, 0) 0%,
            rgba(255, 140, 0, 0.1) 50%,
            rgba(255, 140, 0, 0) 100%);
    transform: rotate(45deg);
    animation: scanEffect 3s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes tiktokGlow {
    0% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
    }
}

/* Inspirational Quote Styles */
.inspirational-quote {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    padding: 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.6);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.inspirational-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 140, 0, 0) 0%,
            rgba(255, 140, 0, 0.15) 50%,
            rgba(255, 140, 0, 0) 100%);
    transform: rotate(45deg);
    animation: quoteScanEffect 4s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.inspirational-quote::after {
    content: '✧';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.7;
    animation: starPulse 2s infinite alternate;
}

.quote-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 1px;
    color: transparent;
    background: linear-gradient(to right, #ff8c00, #ffffff, #ff8c00);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: quoteGradient 4s linear infinite;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    transform-style: preserve-3d;
}

.quote-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 3rem;
    color: rgba(255, 140, 0, 0.3);
    z-index: -1;
}

.quote-text::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: -10px;
    font-size: 3rem;
    color: rgba(255, 140, 0, 0.3);
    z-index: -1;
}

@keyframes quoteGradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes quoteScanEffect {
    0% {
        top: -150%;
        left: -150%;
    }

    100% {
        top: 150%;
        left: 150%;
    }
}

@keyframes starPulse {
    0% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }

    100% {
        opacity: 0.9;
        transform: scale(1.3) rotate(15deg);
    }
}

/* Add glitch effect to the quote */
.inspirational-quote:hover .quote-text {
    animation: quoteGlitch 0.5s infinite alternate;
}

@keyframes quoteGlitch {
    0% {
        transform: translate(0);
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }

    25% {
        transform: translate(-2px, 2px);
        text-shadow: -2px 0 1px rgba(255, 0, 0, 0.5), 2px 2px 1px rgba(0, 255, 255, 0.5);
    }

    50% {
        transform: translate(2px, -2px);
        text-shadow: 2px -2px 1px rgba(255, 0, 0, 0.5), -2px 2px 1px rgba(0, 255, 255, 0.5);
    }

    75% {
        transform: translate(-2px, -2px);
        text-shadow: -2px 0 1px rgba(255, 0, 0, 0.5), 2px -2px 1px rgba(0, 255, 255, 0.5);
    }

    100% {
        transform: translate(2px, 2px);
        text-shadow: 2px 0 1px rgba(255, 0, 0, 0.5), -2px -2px 1px rgba(0, 255, 255, 0.5);
    }
}

.skill-box {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, box-shadow;
}

.skill-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite alternate;
}

@keyframes iconFloat {
    0% {
        transform: translateY(0);
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }

    100% {
        transform: translateY(-10px);
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.4);
    }
}

.skill-box:nth-child(1) .skill-icon i {
    animation: reactSpin 8s linear infinite;
}

@keyframes reactSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.skill-box:nth-child(2) .skill-icon i {
    animation: laravelPulse 3s ease-in-out infinite alternate;
}

@keyframes laravelPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }

    100% {
        transform: scale(1.2);
        text-shadow: 0 0 15px rgba(255, 140, 0, 0.8), 0 0 25px rgba(255, 140, 0, 0.6);
    }
}

.skill-box:nth-child(3) .skill-icon i {
    animation: microsoftGlow 4s ease-in-out infinite alternate;
}

@keyframes microsoftGlow {
    0% {
        filter: brightness(1);
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }

    100% {
        filter: brightness(1.5);
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.9), 0 0 30px rgba(255, 140, 0, 0.7);
    }
}

.skill-box:nth-child(4) .skill-icon i {
    animation: nodeJsVibrate 0.5s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.skill-box:nth-child(4):hover .skill-icon i {
    animation-play-state: running;
}

@keyframes nodeJsVibrate {
    0% {
        transform: translateX(-2px) rotate(-3deg);
    }

    100% {
        transform: translateX(2px) rotate(3deg);
    }
}

.skill-box:nth-child(5) .skill-icon i {
    animation: cloudFloat 5s ease-in-out infinite alternate;
}

@keyframes cloudFloat {
    0% {
        transform: translateY(0) translateX(-5px);
        text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }

    50% {
        transform: translateY(-7px) translateX(5px);
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
    }

    100% {
        transform: translateY(-15px) translateX(-5px);
        text-shadow: 0 0 30px rgba(255, 140, 0, 0.9);
    }
}

.skill-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.skill-description {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.skill-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.skill-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.5;
    pointer-events: none;
}

.skill-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

@keyframes skillGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.4);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }

    50% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(255, 140, 0, 0.8), 0 0 20px rgba(255, 140, 0, 0.4);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
    }
}

.skill-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 10px;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0) 0%, rgba(255, 140, 0, 0.2) 50%, rgba(255, 140, 0, 0) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-box:hover::before {
    opacity: 1;
    animation: borderGlow 2s infinite alternate;
}

@keyframes borderGlow {
    0% {
        border-color: rgba(255, 140, 0, 0.3);
    }

    100% {
        border-color: rgba(255, 140, 0, 0.8);
    }
}

.skill-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.skill-box:hover::after {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
    }

    to {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes profileGlow {
    0% {
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
    }
}

@keyframes profilePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scanEffect {
    0% {
        top: -150%;
        left: -150%;
    }

    100% {
        top: 150%;
        left: 150%;
    }
}

@keyframes borderPulse {

    0%,
    100% {
        border-color: rgba(255, 140, 0, 0.7);
    }

    50% {
        border-color: rgba(255, 255, 255, 0.7);
    }
}

@keyframes particlesMove {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 100px 100px, -100px -100px;
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes nameGlow {
    0% {
        text-shadow: 0 0 5px var(--primary-color);
    }

    100% {
        text-shadow: 0 0 15px var(--primary-color), 0 0 20px var(--primary-color);
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .header-center {
        flex: unset;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s;
        gap: 2rem;
        z-index: 1002;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu.active~.digital-numbers {
        z-index: 999;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        height: 30px;
    }

    .digital-numbers {
        top: 70px;
        right: 10px;
        font-size: 0.8rem;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 5px 10px;
        border-radius: 4px;
        border: 1px solid var(--border-color);
    }

    #coordinates {
        font-size: 0.7rem;
    }

    #timestamp {
        font-size: 0.7rem;
    }

    .whois-panel {
        width: 100%;
        right: -100%;
    }

    .whois-toggle {
        top: 120px;
        right: 0;
        padding: 8px 6px;
        gap: 3px;
    }

    .whois-toggle-text {
        font-size: 0.7rem;
    }

    .whois-toggle i {
        font-size: 0.9rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .profile-img-container {
        width: 250px;
        height: 250px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-text {
        text-align: justify;
        padding: 0 1rem;
        font-size: 0.9rem;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 2rem;
        padding: 0 1rem;
    }

    .service-box {
        padding: 2rem 1rem;
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .service-name {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .service-price {
        font-size: 1.1rem;
    }

    .service-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .tiktok-container {
        max-width: 100%;
    }

    .inspirational-quote {
        max-width: 90%;
        margin: 2rem auto 0;
        padding: 1.5rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .quote-text::before {
        top: -15px;
        left: -5px;
        font-size: 2.5rem;
    }

    .quote-text::after {
        bottom: -30px;
        right: -5px;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .static-title {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hacking-text {
        font-size: 0.8rem;
    }

    .digital-numbers {
        width: auto;
        max-width: 90%;
        right: 5px;
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    #coordinates {
        font-size: 0.6rem;
    }

    #timestamp {
        font-size: 0.6rem;
    }

    .whois-header {
        padding: 1.5rem;
    }

    .whois-content {
        padding: 1.5rem;
    }

    .whois-title {
        font-size: 1.2rem;
    }

    .whois-toggle {
        top: 200px;
        padding: 6px 4px;
        gap: 2px;
        border-radius: 6px 0 0 6px;
    }

    .whois-toggle-text {
        font-size: 0.55rem;
    }

    .whois-toggle i {
        font-size: 0.7rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-name {
        font-size: 1.1rem;
    }

    .inspirational-quote {
        padding: 1.2rem;
    }

    .quote-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .quote-text::before {
        top: -10px;
        left: -3px;
        font-size: 2rem;
    }

    .quote-text::after {
        bottom: -25px;
        right: -3px;
        font-size: 2rem;
    }
}

/* Thêm CSS để hiển thị video theo hàng ngang */
#for-you .tiktok-videos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

#for-you .tiktok-container {
    flex: 1;
    min-width: 300px;
    max-width: 32%;
    margin: 0;
}

@media screen and (max-width: 1200px) {
    #for-you .tiktok-container {
        max-width: 48%;
    }
}

@media screen and (max-width: 768px) {
    #for-you .tiktok-container {
        max-width: 100%;
        margin-bottom: 20px;
    }

    #for-you .tiktok-videos-container {
        flex-direction: column;
    }
}