* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 188, 212, 0.8);
    }
    100% {
        text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(var(--team-color), 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(var(--team-color), 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(var(--team-color), 0.3);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float-dots {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(-45deg, 
        rgba(26, 26, 46, 0.95), 
        rgba(67, 22, 126, 0.95), 
        rgba(22, 33, 62, 0.95), 
        rgba(83, 28, 140, 0.95));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.main-content {
 
    justify-content: flex-end;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem;
}

.left-section {
    flex: 0.45;
    max-width: 450px;
}

.right-section {
    flex: 0.35;
    max-width: 400px;
    margin-right: 30px;
}

.marinbot-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-out;
    width: 100%;
}

.marinbot-section h2 {
    font-size: 1.4rem;
    color: #FF69B4;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

.marinbot-intro {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #b3b3b3;
    margin-bottom: 1rem;
}
.feature-card-container{
    display: flex;
    gap: 10px;
}
.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #00bcd4;
    margin-bottom: 0.75rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    margin-bottom: 0.4rem;
    padding-left: 0.75rem;
    position: relative;
    color: #d1d1d1;
    font-size: 0.8rem;
    line-height: 1.3;
}

/* .feature-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00bcd4;
    font-size: 0.8rem;
} */

.feature-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.15);
}

.music { animation-delay: 0.2s; }
.moderation { animation-delay: 0.4s; }
.bg-remover { animation-delay: 0.6s; }
.afk { animation-delay: 0.8s; }

.dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float-dots 6s ease-in-out infinite;
}

/* Generate multiple dots with different positions and animation delays */
.dot:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.dot:nth-child(2) { left: 20%; top: 40%; animation-delay: 0.5s; }
.dot:nth-child(3) { left: 30%; top: 60%; animation-delay: 1s; }
.dot:nth-child(4) { left: 40%; top: 80%; animation-delay: 1.5s; }
.dot:nth-child(5) { left: 50%; top: 20%; animation-delay: 2s; }
.dot:nth-child(6) { left: 60%; top: 40%; animation-delay: 2.5s; }
.dot:nth-child(7) { left: 70%; top: 60%; animation-delay: 3s; }
.dot:nth-child(8) { left: 80%; top: 80%; animation-delay: 3.5s; }
.dot:nth-child(9) { left: 90%; top: 20%; animation-delay: 4s; }
.dot:nth-child(10) { left: 10%; top: 60%; animation-delay: 4.5s; }
.dot:nth-child(11) { left: 85%; top: 30%; animation-delay: 5s; }
.dot:nth-child(12) { left: 25%; top: 85%; animation-delay: 5.5s; }
.dot:nth-child(13) { left: 45%; top: 15%; animation-delay: 6s; }
.dot:nth-child(14) { left: 65%; top: 75%; animation-delay: 6.5s; }
.dot:nth-child(15) { left: 15%; top: 45%; animation-delay: 7s; }

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        url('../images/char1.png'),
        url('../images/char2.png'),
        url('../images/char3.png');
    background-position: 
        right -50px top 10%,
        left -30px bottom 15%,
        right 15% bottom -30px;
    background-repeat: no-repeat;
    background-size: 500px auto;
    opacity: 0.2;
    filter: grayscale(10%) contrast(110%) blur(1px);
    animation: bgFloat 15s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

body:hover::before {
    opacity: 0.25;
}

@keyframes bgFloat {
    0% {
        background-position: 
            right -50px top 10%,
            left -30px bottom 15%,
            right 15% bottom -30px;
        filter: grayscale(10%) contrast(110%) blur(1px);
    }
    33% {
        background-position: 
            right -40px top 12%,
            left -20px bottom 18%,
            right 18% bottom -20px;
        filter: grayscale(15%) contrast(115%) blur(0.8px);
    }
    66% {
        background-position: 
            right -60px top 8%,
            left -40px bottom 13%,
            right 13% bottom -40px;
        filter: grayscale(5%) contrast(105%) blur(1.2px);
    }
    100% {
        background-position: 
            right -50px top 10%,
            left -30px bottom 15%,
            right 15% bottom -30px;
        filter: grayscale(10%) contrast(110%) blur(1px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(10px);
}

h1 {
    font-size: 3rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite;
}

.welcome-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #b3b3b3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out;
}

.vc-activities {
    margin: 3rem auto 2rem;
    padding: 2rem 1rem;
    animation: fadeIn 1s ease-out;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vc-activities h2 {
    font-size: 1.8rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
    animation: glow 2s ease-in-out infinite;
}

.activities-grid {
    display: flex;
    gap: 1rem;
    
    margin: 0 auto;
}

.activity-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.activity-card.gaming { animation: fadeIn 0.5s ease-out 0.1s forwards; }
.activity-card.editing { animation: fadeIn 0.5s ease-out 0.2s forwards; }
.activity-card.hangout { animation: fadeIn 0.5s ease-out 0.3s forwards; }
.activity-card.battles { animation: fadeIn 0.5s ease-out 0.4s forwards; }

.activity-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.15);
}

.activity-card h3 {
    font-size: 1rem;
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

.activity-card p {
    font-size: 0.85rem;
    color: #b3b3b3;
    line-height: 1.4;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.discord {
    background: #7289da;
}

.youtube {
    background: #ff0000;
}

.team-container {
    margin-top: 3rem;
}

.team-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    opacity: 0;
}

.team-row:nth-child(odd) {
    animation: slideInLeft 0.8s ease-out forwards;
}

.team-row:nth-child(even) {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Delay animations for team members */
.team-row .team-member:nth-child(1) { animation-delay: 0.2s; }
.team-row .team-member:nth-child(2) { animation-delay: 0.4s; }
.team-row .team-member:nth-child(3) { animation-delay: 0.6s; }
.team-row .team-member:nth-child(4) { animation-delay: 0.8s; }

.team-member {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    width: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px currentColor;
}

.team-member p {
    color: #b3b3b3;
    transition: all 0.3s ease;
}

/* Custom colors for each member */
[data-insta="vizenn_ae"] {
    border-color: rgba(220, 20, 60, 0.3);
}
[data-insta="vizenn_ae"] h3 {
    color: #DC143C;
}
[data-insta="vizenn_ae"]::before {
    background: radial-gradient(circle at center, rgba(220, 20, 60, 0.2) 0%, transparent 100%);
}
[data-insta="vizenn_ae"]:hover {
    box-shadow: 0 5px 25px rgba(220, 20, 60, 0.3);
}

[data-insta="meerfx"] {
    border-color: rgba(138, 43, 226, 0.3);
}
[data-insta="meerfx"] h3 {
    color: #8A2BE2;
}
[data-insta="meerfx"]::before {
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.2) 0%, transparent 100%);
}
[data-insta="meerfx"]:hover {
    box-shadow: 0 5px 25px rgba(138, 43, 226, 0.3);
}

[data-insta="ezio_ae"] {
    border-color: rgba(0, 102, 255, 0.3);
}
[data-insta="ezio_ae"] h3 {
    color: #0066FF;
}
[data-insta="ezio_ae"]::before {
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.2) 0%, transparent 100%);
}
[data-insta="ezio_ae"]:hover {
    box-shadow: 0 5px 25px rgba(0, 102, 255, 0.3);
}

[data-insta="adityakarayat"] {
    border-color: rgba(255, 215, 0, 0.3);
}
[data-insta="adityakarayat"] h3 {
    color: #FFD700;
}
[data-insta="adityakarayat"]::before {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 100%);
}
[data-insta="adityakarayat"]:hover {
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
}

[data-insta="core.lutfy"] {
    border-color: rgba(80, 200, 120, 0.3);
}
[data-insta="core.lutfy"] h3 {
    color: #50C878;
}
[data-insta="core.lutfy"]::before {
    background: radial-gradient(circle at center, rgba(80, 200, 120, 0.2) 0%, transparent 100%);
}
[data-insta="core.lutfy"]:hover {
    box-shadow: 0 5px 25px rgba(80, 200, 120, 0.3);
}

[data-insta="mugiwara_1224"] {
    border-color: rgba(255, 255, 255, 0.3);
}
[data-insta="mugiwara_1224"] h3 {
    color: #FFFFFF;
}
[data-insta="mugiwara_1224"]::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
}
[data-insta="mugiwara_1224"]:hover {
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
}

[data-insta="_tempest_"] {
    border-color: rgba(0, 255, 255, 0.3);
}
[data-insta="_tempest_"] h3 {
    color: #00FFFF;
}
[data-insta="_tempest_"]::before {
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.2) 0%, transparent 100%);
}
[data-insta="_tempest_"]:hover {
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.3);
}

[data-insta="docx.scara_wanderer_0"] {
    border-color: rgba(255, 105, 180, 0.3);
}
[data-insta="docx.scara_wanderer_0"] h3 {
    color: #FF69B4;
}
[data-insta="docx.scara_wanderer_0"]::before {
    background: radial-gradient(circle at center, rgba(255, 105, 180, 0.2) 0%, transparent 100%);
}
[data-insta="docx.scara_wanderer_0"]:hover {
    box-shadow: 0 5px 25px rgba(255, 105, 180, 0.3);
}

.team-member:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover h3 {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.team-member:hover p {
    color: currentColor;
    opacity: 0.8;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.popup.active {
    background: rgba(0, 0, 0, 0.8);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    min-width: 300px;
    transition: all 0.3s ease;
    animation: popUp 0.5s ease-out forwards;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #b3b3b3;
}

.visit-profile {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
}

footer {
    text-align: center;
    margin-top: 3rem;
    color: #b3b3b3;
    font-size: 0.9rem;
}
@media  (max-width:775px) {
    .social-links{
        flex-direction: column;
    }
    .activities-grid{
        flex-direction: column;
    }
    .feature-card-container{
        flex-direction: column;
    }
}