:root {
    --color-bg: #000000;
    --color-text: #e0e0e0;
    --color-white: #ffffff;
    --color-red: #ff003c;
    --color-red-dim: #990024;
    --color-black-acc: #111111;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --heart-color: #ed4956;
    --slate-800: #1e293b;
    --blue-500: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-red);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-red);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 60, 0.1);
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 10;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    text-decoration: none;
    display: inline-block;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--color-white);
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    border: none;
    transition: all 0.3s ease;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 0, 60, 0.8);
}

.logo:hover .logo-text::after {
    width: 100%;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    margin-left: 2rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-red);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 10%;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-text .glitch {
    position: relative;
    color: var(--color-text);
}

@keyframes glitch-anim {
    0% {
        clip-path: inset(40% 0 61% 0);
        transform: translate(-2px, 0);
    }

    20% {
        clip-path: inset(92% 0 1% 0);
        transform: translate(2px, 0);
    }

    40% {
        clip-path: inset(43% 0 1% 0);
        transform: translate(-2px, 0);
    }

    60% {
        clip-path: inset(25% 0 58% 0);
        transform: translate(2px, 0);
    }

    80% {
        clip-path: inset(54% 0 7% 0);
        transform: translate(-2px, 0);
    }

    100% {
        clip-path: inset(58% 0 43% 0);
        transform: translate(2px, 0);
    }
}

.hero-text .glitch::before,
.hero-text .glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
}

.hero-text .glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--color-red);
    clip-path: inset(0 0 0 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.hero-text .glitch::after {
    left: -2px;
    text-shadow: 1px 0 blue;
    clip-path: inset(0 0 0 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.subtitle {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: var(--color-red);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.typewriter-container {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    min-height: 1.6em;
    display: flex;
    align-items: center;
}

.typewriter-text {
    color: var(--color-text);
    font-weight: bold;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: var(--color-red);
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-frame {
    position: relative;
    width: 90%;
    height: 90%;
    border: 2px solid var(--color-black-acc);
    filter: grayscale(100%) contrast(1.2);
    transition: all 0.5s ease;
    overflow: hidden; 
}

#protectedAvatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-frame:hover {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.3);
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 0, 60, 0.2);
    z-index: 1;
    pointer-events: none;
}

.circle-1 {
    width: 50vw;
    height: 50vw;
    top: -10%;
    right: -10%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 30vw;
    height: 30vw;
    bottom: -5%;
    left: -5%;
    border: 1px dashed var(--color-red-dim);
    animation: rotate 15s linear infinite reverse;
}

.circle-3 {
    width: 500px;
    height: 500px;
    top: 20%;
    right: -200px;
    border: 1px dotted rgba(255, 255, 255, 0.1);
    animation: rotate 30s linear infinite;
}

.circle-4 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: -50px;
    border: 1px solid rgba(255, 0, 60, 0.1);
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.socials {
    position: relative;
    display: flex;
    gap: 2rem;
    z-index: 10;
    margin-top: 2rem;
}

.socials a {
    font-size: 1.8rem;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.socials a:hover {
    color: var(--color-bg);
    background: var(--color-red);
    border-color: var(--color-red);
    box-shadow: 0 0 15px var(--color-red);
    transform: translateY(-5px);
}

.demo-container {
    display: flex;
    min-height: 75vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: var(--color-bg);
    padding: 4rem 0;
}

.mask-container {
    position: relative;
    height: 75vh;
    min-height: 400px;
    width: 100vw;
    color: white;
    background-color: var(--color-white);
    transition: background-color 0.3s ease;
}

.mask-content {
    padding: 1rem;
}

.reveal-content {
    padding: 1rem;
}

.mask-container.dark {
    color: white;
    background-color: var(--color-bg);
}

.mask-layer {
    position: absolute;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: black;
    font-size: 3.75rem;
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMjAiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=');
    mask-repeat: no-repeat;
    mask-size: 10px;
    mask-position: 50% 50%;
    transition: mask-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMjAiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 10px;
    -webkit-mask-position: 50% 50%;
}

.mask-layer.dark {
    background-color: white;
    color: black;
}

.mask-layer.animate-position {
    transition: mask-position 0.15s linear, mask-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
}

.overlay.dark {
    background-color: white;
}

.mask-content {
    position: relative;
    z-index: 20;
    margin-left: auto;
    margin-right: auto;
    max-width: 56rem;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 2rem;
    color: black;
}

.mask-container.dark .mask-content {
    color: black;
}

.reveal-text {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.reveal-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 56rem;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--slate-800);
    line-height: 1.2;
    padding: 2rem;
}

.reveal-content.dark {
    color: white;
}

.text-blue-500 {
    color: var(--blue-500);
}

.projects-section {
    min-height: 100vh;
    padding: 5rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.section-title span {
    color: var(--color-red);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    z-index: 2;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.1);
}

.project-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.project-card p {
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
    border: 1px solid #333;
    color: #888;
    border-radius: 20px;
}

.project-link {
    display: inline-block;
    font-family: var(--font-display);
    color: var(--color-red);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.btn-grad-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.project-card:hover .btn-grad-bg {
    opacity: 1;
}

.skills-section {
    padding: 5rem 10%;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.skill-category h3 {
    color: var(--color-red);
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-list span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skill-list span:hover {
    border-color: var(--color-red);
    background: rgba(255, 0, 60, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.2);
}

.like-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 1rem;
    gap: 2rem;
    background: var(--color-bg);
    position: relative;
    z-index: 10;
}

.like-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 320px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.like-button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    position: relative;
    width: 64px;
    height: 64px;
    padding: 0;
    margin: 8px 0;
}

.heart-container {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart {
    width: 48px;
    height: 48px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease-out;
    position: absolute;
}

.heart-outline {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23f5f5f5" d="M16.792 3.904A4.989 4.989 0 0 1 21.5 9.122c0 3.072-2.652 4.959-5.197 7.222-2.512 2.243-3.865 3.469-4.303 3.752-.477-.309-2.143-1.823-4.303-3.752C5.141 14.072 2.5 12.167 2.5 9.122a4.989 4.989 0 0 1 4.708-5.218 4.21 4.21 0 0 1 3.675 1.941c.84 1.175.98 1.763 1.12 1.763s.278-.588 1.11-1.766a4.17 4.17 0 0 1 3.679-1.938m0-2a6.04 6.04 0 0 0-4.797 2.127 6.052 6.052 0 0 0-4.787-2.127A6.985 6.985 0 0 0 .5 9.122c0 3.61 2.55 5.827 5.015 7.97.283.246.569.494.853.747l1.027.918a44.998 44.998 0 0 0 3.518 3.018 2 2 0 0 0 2.174 0 45.263 45.263 0 0 0 3.626-3.115l.922-.824c.293-.26.59-.519.885-.774 2.334-2.025 4.98-4.32 4.98-7.94a6.985 6.985 0 0 0-6.708-7.218Z"/></svg>');
    opacity: 1;
}

.heart-filled {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23ed4956" d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>');
    opacity: 0;
    transform: scale(0);
}

.heart.liked .heart-outline {
    opacity: 0;
    transform: scale(0);
}

.heart.liked .heart-filled {
    opacity: 1;
    transform: scale(1);
    animation: heartFill 0.6s ease-out;
}

@keyframes heartFill {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    20% {
        transform: scale(1.3);
        opacity: 1;
    }

    40% {
        transform: scale(0.9);
    }

    60% {
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--heart-color);
    opacity: 0;
}

.like-count {
    font-size: 16px;
    font-weight: 500;
    margin: 8px 0;
    color: var(--color-text);
}

.like-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
    text-align: center;
}

.analytics {
    font-size: 12px;
    color: #888;
    text-align: center;
    line-height: 1.5;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #333;
    width: 100%;
}

.contact-section {
    padding: 5rem 10%;
    background: var(--color-bg);
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-info h3,
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-white);
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 0, 60, 0.1);
    color: var(--color-red);
    border: 1px solid var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: var(--color-red);
    color: var(--color-bg);
    box-shadow: 0 0 15px var(--color-red);
}

.contact-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.contact-text p {
    color: #888;
    font-family: var(--font-body);
}

.nebula-input {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.nebula-input .input {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    background: #0a0a0a;
    color: white;
    font-size: 16px;
    outline: none;
    border-radius: 8px;
    transition: all 0.4s ease-out;
    font-family: var(--font-body);
}

.nebula-input .user-label {
    position: absolute;
    left: 15px;
    top: 15px;
    pointer-events: none;
    color: #666;
    transition: all 0.4s ease-out;
    background: #0a0a0a;
    padding: 0 5px;
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.nebula-input .input:focus {
    border-color: var(--color-red);
    box-shadow: 0 5px 8px rgba(255, 0, 60, 0.2), 0 10px 20px rgba(255, 0, 60, 0.1);
}

.nebula-input .input:focus~.user-label,
.nebula-input .input:valid~.user-label {
    transform: translateY(-25px);
    font-size: 12px;
    color: var(--color-red);
    left: 10px;
}

.nebula-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    top: 50%;
    left: 10px;
    filter: blur(0.8px);
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
    background: var(--color-red);
}

.nebula-input .input:focus~.nebula-particle {
    animation: nebula-float 2s forwards ease-out;
}

@keyframes nebula-float {
    0% {
        transform: translate(0, -50%) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    100% {
        transform: translate(calc(var(--x) * 140px), calc(var(--y) * 35px)) scale(1.1);
        opacity: 0;
    }
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
    font-family: var(--font-body);
}

.form-message.success {
    background-color: rgba(0, 255, 0, 0.1);
    color: #0f0;
    border: 1px solid #0f0;
}

.form-message.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #f00;
    border: 1px solid #f00;
}

.btn-send {
    font-family: var(--font-display);
    font-size: 14px;
    background: transparent;
    color: var(--color-red);
    padding: 0.5em 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-red);
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.2s, background 0.3s, color 0.3s;
    cursor: pointer;
    margin-top: 20px;
    gap: 8px;
    text-transform: uppercase;
    font-weight: bold;
    width: fit-content;
}

.btn-send:hover {
    background: var(--color-red);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
}

.btn-send:hover svg {
    fill: white;
}

.btn-send span {
    display: block;
    margin-left: 0.3em;
}

.btn-send svg {
    display: block;
    fill: currentColor;
    transition: fill 0.3s;
}

.btn-send:active {
    transform: scale(0.95);
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }

    .hero {
        min-height: auto;
        padding: 120px 5% 4rem;
        gap: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .projects-section,
    .contact-section,
    .skills-section,
    .demo-container,
    .like-section {
        min-height: auto !important;
        padding: 3rem 1rem !important;
        height: auto !important;
    }

    .mask-container {
        height: auto;
        min-height: 300px;
        padding: 2rem 0;
    }

    .hero-text {
        align-items: center;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
        line-height: 1.2;
    }

    .hero-image {
        margin-top: 1rem;
        justify-content: center;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .socials {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mask-content,
    .reveal-content {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .like-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .mask-content,
    .reveal-content {
        font-size: 1.25rem;
    }
}


// for shild purpose 


* {
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
}


input, textarea {
    user-select: text !important;
    cursor: auto !important;
}


.shield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50; 
    background: rgba(0, 0, 0, 0); 
}


img {
    pointer-events: none; 
    -webkit-user-drag: none; 
}

