@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

.download_layout {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.project-card, .skill-card, .discord-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover, .skill-card:hover {
    box-shadow: 0 20px 40px rgba(88, 101, 242, 0.3);
}

.project-image {
    transition: transform 0.5s ease;
    overflow: hidden;
}

.btn-2 {
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shimmer-text {
    background: linear-gradient(90deg, #fff 0%, #5865f2 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2.5rem;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2.5rem;
}

.nav_padding {
    max-width: 1540px;
    margin: 0 auto;
}

.nav_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav_avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5865f2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav_avatar:hover {
    border-color: #7289da;
    transform: scale(1.05);
}

.nav_brand_text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.nav_menu_wr {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav_menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav_link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.nav_link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav_buttons-wr_new {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.button-nav {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 2rem;
    background: #fff;
    color: #000;
    transition: all 0.2s ease;
}

.button-nav:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.nav_burger_button {
    display: none;
}

.nav_burger_trigger {
    cursor: pointer;
    padding: 0.5rem;
}

.nav_burger_list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.nav_burger_list.active {
    right: 0;
}

.nav_burger_content {
    padding: 1.5rem;
}

.nav_burger_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.nav_burger_close {
    cursor: pointer;
    padding: 0.5rem;
}

.nav_menu.is-burger {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
}

.nav_menu.is-burger .nav_link {
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.mobile-nav-link {
    display: block;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #fff;
}

.nav_burger_bottom {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button-nav.is-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
}

.button-nav.is-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.download_hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.download_hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(88, 101, 242, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.container-944px {
    max-width: 944px;
    margin: 0 auto;
    width: 100%;
}

.container-1540 {
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.download_layout {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    height: 60px;
}

.hero-decor {
    position: absolute;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(88, 101, 242, 0.4));
}

.hero-decor-1 {
    width: 140px;
    top: -80px;
    left: 5%;
    animation-delay: 0s;
}

.hero-decor-2 {
    width: 120px;
    top: -60px;
    right: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.discord-character {
    max-width: 200px;
    filter: drop-shadow(0 10px 30px rgba(88, 101, 242, 0.3));
}

.heading--h1--download {
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.body-text--xll {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.btn-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-2.is-primary {
    background: #5865f2;
    color: #fff;
}

.btn-2.is-primary:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
}

.btn-2.is-secondary {
    background: #fff;
    color: #000;
}

.btn-2.is-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    margin-top: 4rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.hero-decor {
    position: absolute;
    pointer-events: none;
}

.hero-decor-1 {
    top: -2rem;
    right: -3rem;
    width: 120px;
    animation: float 6s ease-in-out infinite;
}

.hero-decor-2 {
    bottom: -2rem;
    left: -3rem;
    width: 100px;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.testimonials-section {
    padding: 6rem 2rem;
    position: relative;
}

.testimonials-section.is-dark {
    background: #000;
}

.testimonials-section.is-blurple {
    background: #5865f2;
}

.testimonials-section.is-light {
    background: #f6f6f6;
    color: #000;
}

.new-h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.text-color-white {
    color: #fff;
}

.text-align-center {
    text-align: center;
}

.bottom-32 {
    margin-bottom: 2rem;
}

.max-width-750px {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.max-width620 {
    max-width: 620px;
}

.layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.layout.reverce {
    direction: rtl;
}

.layout.reverce > * {
    direction: ltr;
}

.layout.margin-bottom {
    margin-bottom: 6rem;
}

.image-cards-wr {
    position: relative;
}

.image-cards {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

.image-cards img {
    width: 100%;
    height: auto;
    display: block;
}

.padding-120px {
    padding-top: 7.5rem;
}

.padding-64px {
    padding-top: 4rem;
}

.padding-48px {
    padding-top: 3rem;
}

.padding-40px {
    padding-top: 2.5rem;
}

.padding-32px {
    padding-top: 2rem;
}

.padding-24px {
    padding-top: 1.5rem;
}

.padding-16px {
    padding-top: 1rem;
}

.cards-gradient {
    background: linear-gradient(180deg, rgba(88, 101, 242, 0.1) 0%, transparent 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skills-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.skills-badges img {
    height: 32px;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 4px;
}

.skills-badges img:hover {
    transform: translateY(-4px) scale(1.05);
    filter: brightness(1.1);
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-4px);
}

.skill-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.skill-level {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-4px);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tag {
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 0.75rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #5865f2;
    transition: color 0.2s ease;
}

.project-link:hover {
    color: #4752c4;
}

.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #000 0%, rgba(88, 101, 242, 0.1) 100%);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.discord-widget-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 2rem 0;
}

.discord-widget {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.3);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-4px);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-handle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer_new {
    background: #000;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.grid-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
}

.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-social-icons a[title="Discord"]:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: #fff;
}

.footer-social-icons a[title="YouTube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff;
}

.footer-social-icons a[title="Twitch"]:hover {
    background: #9146FF;
    border-color: #9146FF;
    color: #fff;
}

.footer-social-icons a[title="Kick"]:hover {
    background: #53FC18;
    border-color: #53FC18;
    color: #000;
}

.footer-social-icons a[title="Twitter/X"]:hover {
    background: #000;
    border-color: #fff;
    color: #fff;
}

.footer-social-icons a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: #fff;
}

.footer-social-icons a[title="GitHub"]:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.footer-social-icons a[title="Roblox"]:hover {
    background: #E2231A;
    border-color: #E2231A;
    color: #fff;
}

.footer-social-icons a svg {
    width: 20px;
    height: 20px;
}

.vertical-flex {
    display: flex;
    flex-direction: column;
}

.footer-logo-link img {
    height: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5865f2;
    margin-bottom: 1rem;
}

.footer-avatar-circle {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px;
    min-height: 60px;
    max-width: 60px;
    max-height: 60px;
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    object-fit: cover;
}

.contact-discord-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.discord-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.6);
}

.footer-social-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
}

.footer-social-links a:hover {
    color: #5865f2;
    transform: translateY(-2px);
}

.footer-social-links a svg {
    width: 28px;
    height: 28px;
}

.p-footer {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5865f2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.link-footer {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.375rem 0;
    transition: color 0.2s ease;
}

.link-footer:hover {
    color: #fff;
}

.flex-horizontal {
    display: flex;
    gap: 1rem;
}

.top-soc-new {
    margin-top: 1rem;
}

.link-s {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.link-s:hover {
    opacity: 1;
}

.link-s img {
    width: 1.25rem;
    height: 1.25rem;
}

.container_word {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.word {
    height: 2rem;
    opacity: 0.5;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #3ba55c;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-centered-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wumpus-card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 620px;
    width: 100%;
}

.wumpus-leaf {
    position: absolute;
    width: 80px;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: leafFloat 3s ease-in-out infinite;
}

.wumpus-sitting {
    position: absolute;
    width: 140px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes leafFloat {
    0%, 100% { transform: translateX(-50%) rotate(-5deg); }
    50% { transform: translateX(-50%) rotate(5deg) translateY(-5px); }
}

.discord-card {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2) 0%, rgba(88, 101, 242, 0.05) 100%);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.about-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #5865f2;
    object-fit: cover;
}

.about-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-username {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.about-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .nav_menu_wr {
        display: none;
    }

    .nav_burger_button {
        display: block;
    }

    .layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .layout.reverce {
        direction: ltr;
    }

    .grid-footer {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .download_hero {
        padding: 6rem 1.5rem 3rem;
    }

    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .heading--h1--download {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .new-h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .body-text--xll {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-2 {
        width: 100%;
        max-width: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-avatar {
        margin: 0 auto;
    }

    .wumpus-sitting {
        width: 100px;
        top: -35px;
    }

    .wumpus-leaf {
        width: 55px;
        top: -52px;
    }

    .skill-grid {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .discord-widget {
        width: 100% !important;
        max-width: 350px;
        height: 400px !important;
    }

    .footer-social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social-links a svg {
        width: 24px;
        height: 24px;
    }

    .nav_avatar {
        width: 36px;
        height: 36px;
    }
}

@media screen and (max-width: 479px) {
    .grid-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .flex-horizontal {
        justify-content: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-social-icons a {
        width: 40px;
        height: 40px;
    }
}

.videos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.videos-header .text-align-center {
    text-align: left;
    flex: 1;
}

.youtube-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF0000;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-subscribe-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.youtube-subscribe-btn svg {
    width: 24px;
    height: 24px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-icon {
    opacity: 1;
}

.video-play-icon svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.video-info {
    padding: 1.25rem;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 991px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .videos-header {
        flex-direction: column;
        align-items: center;
    }
    
    .videos-header .text-align-center {
        text-align: center;
    }
}

@media screen and (max-width: 479px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-subscribe-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}
