/* Root Variables */
:root {
    --primary-purple: #7c3aed;
    --secondary-purple: #a78bfa;
    --deep-pink: #ec4899;
    --light-purple: #c4b5fd;
    --purple-glow: #a855f7;
    --dark-purple: #5b21b6;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(167, 139, 250, 0.3);
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 12px;
    --border-radius-md: 14px;
    --border-radius-lg: 35px;
    --border-radius-xl: 100px;
}

/* Global Background */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a0b2e 50%, #16213e 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
    font-family: 'Graphik', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: ambient-shift 20s ease-in-out infinite;
}

@keyframes ambient-shift {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Performance Optimization */
* {
    box-sizing: border-box;
}

/* Hardware Acceleration */
.sec_2_item_project1,
.sec_2_item_project2,
.sec1_btn1,
.mouse::before,
.sec2_title {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

header {
    position: relative;
    background: url("../imgs/header.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* .sec1,.sec2,.sec3,.sec4,.sec5{
        filter: blur(20px);
    transform: scale(1.1);
} */

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    filter: blur(20px);
    transform: scale(1.1);
}


/* Section 1 */
.sec1 {
    position: relative;
    padding-top: clamp(0px, 12vh, 0px);
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: -45vh;

}

.sec1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: -1;
}

.sec_title_text {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: bold;
    text-shadow: 0 4px 40px var(--primary-purple);
    margin-bottom: 1rem;
}

.sec1_cont {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    border-radius: 25px;
    border-left: 2px solid #9f63ff9f;
    border-right: 2px solid #9f63ff9f;
    padding: 2rem 1rem;
    height: 40%;
    background-color: #37005c48;

}

.sec1_items {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sec1_under_title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    margin: 0 0 1.5rem 0;
    font-weight: bold;
    background-color: rgba(124, 58, 237, 0.2);
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-xl);
}

.sec1_btn1_box {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.sec1_para {
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sec1_btn1 {
    padding: 15px 30px;
    font-size: 1rem;
    margin: 20px 0;
    border-radius: var(--border-radius-sm);
    color: #ffffff;
    font-weight: 600;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(210, 180, 140, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.btn1:hover,
.btn2:hover {
    box-shadow: 0 4px 40px rgb(132, 0, 255);
    background-color: rgba(124, 58, 237, 0.7);
    transform: translateY(-2px) translateZ(0);
    border-color: rgb(183, 0, 255);
}

.bg {
    background: linear-gradient(45deg, #7c3aed55, #a78bfa45, #ec489940);
}

.mouse_flex {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.mouse {
    width: 35px;
    height: 60px;
    border: 3px solid var(--primary-purple);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    top: -40vh;
}

.mouse::before {
    content: '';
    width: 7px;
    height: 11px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    animation: scroll 2s infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.479);
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) translateZ(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) translateZ(0);
    }
}

/* Section 2 */
.sec2 {
    position: relative;
    padding: 80px 0;
}

.sec2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
    z-index: 0;
}

.sec2>* {
    position: relative;
    z-index: 1;
}

.sec2_cont {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    display: flex;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.sec2_items {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.sec_2_item_project1,
.sec_2_item_project2 {
    width: clamp(300px, 45%, 65vh);
    height: clamp(200px, 30vw, 40vh);
    border-radius: var(--border-radius-md);
    border: 2px solid rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

.sec_2_item_project2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imgs/');
    /* placeholder */
}

.sec_2_item_project1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imgs/epicshop.jpg');
}

.sec_2_item_project1:hover,
.sec_2_item_project2:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.5);
}

.sec2_title_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.sec2_title {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 700;
    color: var(--light-purple);
    text-shadow: 0 0 20px var(--purple-glow);
    animation: purple-glow 4s ease-in-out infinite alternate;
    text-align: center;
}

@keyframes purple-glow {
    0% {
        text-shadow: 0 0 15px var(--purple-glow);
    }

    100% {
        text-shadow: 0 0 25px var(--purple-glow);
    }
}

.text_line1 {
    background-color: var(--primary-purple);
    width: 200px;
    height: 3px;
    margin: 20px auto;
    display: block;
}

.sec_2_item_project1_title {
    color: var(--secondary-purple);
    text-shadow: 0 0 10px var(--dark-purple);
    animation: purple-glow 4s ease-in-out infinite alternate;
    transition: opacity 0.2s ease;
    position: absolute;
    z-index: 5;
}

.sec_2_item_project1:hover .sec_2_item_project1_title,
.sec_2_item_project2:hover .sec_2_item_project1_title {
    opacity: 0;
}

.sec_2_item_project1_btn1,
.eye_icon,
.btn-main {
    opacity: 0;
    position: absolute;
    z-index: 10;
    transition: opacity 0.2s ease;
}

.sec_2_item_project1:hover .sec_2_item_project1_btn1,
.sec_2_item_project2:hover .sec_2_item_project1_btn1,
.sec_2_item_project1:hover .eye_icon,
.sec_2_item_project2:hover .eye_icon,
.sec_2_item_project1:hover .btn-main,
.sec_2_item_project2:hover .btn-main {
    opacity: 1;
}

.eye_icon {
    color: rgb(196, 181, 253);
    width: 50px;
}

.project-view-btn {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 20;
}

.sec_2_item_project1:hover .project-view-btn,
.sec_2_item_project2:hover .project-view-btn {
    bottom: 20px;
    opacity: 1;
    pointer-events: all;
}

.project-view-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.7);
}

.project-view-btn svg {
    width: 18px;
    height: 18px;
    animation: eyeBlink 2s ease-in-out infinite;
}

@keyframes eyeBlink {
    0%, 90%, 100% {
        transform: scale(1);
    }

    95% {
        transform: scale(1.2) rotate(5deg);
    }
}

.project-view-btn:hover svg {
    animation: eyeMove 0.6s ease-in-out infinite;
}

@keyframes eyeMove {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }
}

/* Section 3 */
.sec3 {
    position: relative;
    background: radial-gradient(circle at 30% 40%, rgba(124, 58, 237, 0.8) 0%, transparent 0.1%);
    background-position: center;
    background-attachment: fixed;
    /* Be careful on mobile */
    padding: 100px 0;
    overflow: hidden;
}

.sec3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15), transparent 70%);
    z-index: 0;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.sec3_title_wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.sec3_title {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    font-weight: 700;
    color: var(--light-purple);
    text-shadow: 0 0 20px var(--purple-glow);
    animation: purple-glow 4s ease-in-out infinite alternate;
    margin-bottom: 20px;
}

.sec3_title_line {
    background-color: var(--primary-purple);
    width: 200px;
    height: 3px;
    margin: 0 auto;
    box-shadow: 0 0 15px var(--purple-glow);
}

.sec3_cont {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 60px);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02), rgba(168, 85, 247, 0.04));
    backdrop-filter: blur(20px) saturate(80%);
    border: 2px solid rgba(167, 139, 250, 0.4);
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 1;
    box-shadow:
        0 8px 32px rgba(124, 58, 237, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sec3_cont::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;

    background-size: 300% 300%;
    animation: gradient-shift 6s ease infinite;
}

.sec3_cont:hover::before {
    opacity: 0.6;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.sec3_items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    width: 100%;
}

.sec3_item1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(30px, 5vw, 40px) clamp(20px, 3vw, 30px);
    border-radius: var(--border-radius-md);
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(167, 139, 250, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sec3_item1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.1), transparent);
    transition: left 0.6s ease;
}

.sec3_item1:hover::before {
    left: 100%;
}

.sec3_item1:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.4),
        0 0 40px rgba(168, 85, 247, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sec_item1_profile {
    width: clamp(100px, 15vw, 140px);
    height: clamp(100px, 15vw, 140px);
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(167, 139, 250, 0.4);
    box-shadow:
        0 0 40px rgba(168, 85, 247, 0.6),
        0 0 80px rgba(124, 58, 237, 0.4),
        inset 0 0 20px rgba(168, 85, 247, 0.2);
    transition: all 0.4s ease;
}

.sec3_item1:hover .sec_item1_profile {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 0 60px rgba(168, 85, 247, 0.9),
        0 0 100px rgba(124, 58, 237, 0.6),
        inset 0 0 30px rgba(168, 85, 247, 0.3);
    border-color: rgba(167, 139, 250, 0.8);
}

.sec_item1_name {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--light-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    transition: all 0.3s ease;
}

.sec3_item1:hover .sec_item1_name {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8));
}

.sec_item1_role {
    font-size: 0.95rem;
    color: var(--purple-glow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.sec3_item1:hover .sec_item1_role {
    background: rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
    transform: scale(1.05);
}

.sec_item1_bio {
    max-width: 600px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition: color 0.3s ease;
    font-family: Yekan;
}

.sec3_item1:hover .sec_item1_bio {
    color: rgba(255, 255, 255, 0.95);
}

/* Section 4 */
.sec4 {
    position: relative;
    padding: clamp(80px, 12vh, 120px) 0;
    overflow: hidden;
    
}

.sec4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
    background-size: cover;
    z-index: 0;
}

.sec4_cont {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 8vw, 100px) clamp(20px, 4vw, 80px);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(124, 58, 237, 0.08));
    backdrop-filter: blur(20px) saturate(80%);
    border: 2px solid rgba(236, 72, 153, 0.4);
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 1;
    box-shadow:
        0 8px 32px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sec4_items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.sec4_title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-pink), var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    animation: title-glow 4s ease-in-out infinite alternate;
    margin-bottom: 20px;
}

@keyframes title-glow {
    0% {
        filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 40px rgba(236, 72, 153, 0.8));
    }
}

.sec4_description {
    font-size: clamp(1rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.sec4_join_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--deep-pink), var(--primary-purple));
    border: 2px solid rgba(236, 72, 153, 0.5);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sec4_join_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.sec4_join_btn:hover::before {
    left: 100%;
}

.sec4_join_btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.6);
    border-color: rgba(236, 72, 153, 0.8);
}

.sec4_features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
    width: 100%;
}

.sec4_feature {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.sec4_feature:hover {
    background: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.sec4_feature_icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 12px;
}

.sec4_feature_title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-pink);
    margin-bottom: 8px;
}

.sec4_feature_text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Section 5 */
.sec5 {
    padding: clamp(80px, 10vh, 10vh) 0;
    position: relative;
}

.sec5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
    background-size: cover;
    z-index: 0;
}

.sec5_cont {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(40px, 8vw, 100px) clamp(20px, 4vw, 80px);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(124, 58, 237, 0.08));
    backdrop-filter: blur(20px) saturate(80%);
    border: 2px solid rgba(236, 72, 153, 0.4);
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sec5_items {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sec5_title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-pink), var(--primary-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    animation: title-glow 4s ease-in-out infinite alternate;
    margin-bottom: 30px;
}

.sec5_text {
    font-size: 1rem;
    text-shadow: 0 2px 2px rgb(115, 15, 182);
    font-family: Yekan;
}

.ts_status, .ts_users, .teamspeek_ip {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 900;
}

.sec5_btns {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.sec5_btn1, .sec5_btn2, .copy_btn {
    padding: 14px 28px;
    font-size: 1rem;
    margin: 10px 0;
    border-radius: var(--border-radius-sm);
    color: #ffffff;
    font-weight: 600;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(210, 180, 140, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.sec5_btn1:hover, .sec5_btn2:hover, .copy_btn:hover {
    box-shadow: 0 4px 40px rgb(132, 0, 255);
    background-color: rgba(124, 58, 237, 0.7);
    transform: translateY(-2px) translateZ(0);
    border-color: rgb(183, 0, 255);
}

.teamspeek_ip {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin: 20px 0;
    border-radius: var(--border-radius-sm);
    color: #ffffff;
    font-weight: 600;
    background: rgba(26, 26, 26, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    word-break: break-all;
    transition: color 0.3s;
}

.teamspeek_ip:hover {
    color: #a78bfa;
}

#icon1 {
    transition: ease-in-out 0.2s;
    position: relative;
    top: 4px;
}

#icon1:hover {
    color: var(--primary-purple);
    background-color: rgba(255, 255, 255, 0.288);
}

.icon2 {
    color: red;
    display: inline;
    transition: color 0.3s;
}

.ts_status:hover .icon2 {
    color: green;
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */

/* Large tablets & small desktops */
@media screen and (max-width: 1200px) {
    .sec2_items {
        flex-direction: column;
        align-items: center;
    }

    .sec_2_item_project1,
    .sec_2_item_project2 {
        width: min(90%, 500px);
        height: 300px;
    }

    .sec1_cont {
        width: 95%;
    }
}

/* Tablets & large phones */
@media screen and (max-width: 768px) {
    .sec1 {
        padding-top: 60px;
    }

    .sec1_cont {
        width: 100%;
        border-left: none;
        border-right: none;
        border-radius: 0;
        padding: 2rem 0.5rem;
    }

    .sec1_btn1_box {
        flex-direction: column;
        gap: 10px;
    }

    .mouse {
        display: none;
        /* hide scroll indicator on touch devices */
    }

    .sec2_cont,
    .sec3_cont,
    .sec4_cont,
    .sec5_cont {
        width: 95%;
        padding: 2rem 1rem;
        border-radius: 25px;
    }

    .sec2_items {
        flex-direction: column;
        align-items: center;
    }

    .sec3_items {
        grid-template-columns: 1fr;
    }

    .sec4_features {
        grid-template-columns: 1fr;
    }

    .sec5_btns {
        flex-direction: column;
        align-items: center;
    }
}

/* Small phones */
@media screen and (max-width: 480px) {
    .sec_title_text {
        font-size: 1.8rem;
    }

    .sec1_under_title {
        font-size: 1.5rem;
        padding: 0.6rem 1.5rem;
    }

    .sec2_title,
    .sec3_title,
    .sec4_title,
    .sec5_title {
        font-size: 2rem;
    }

    .sec_2_item_project1,
    .sec_2_item_project2 {
        width: 90%;
        height: 200px;
    }

    .sec_item1_profile {
        width: 90px;
        height: 90px;
    }

    .sec4_join_btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .teamspeek_ip {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


@media (max-width: 768px) {

    .sec1 {
        top: -200px;
    }

}