 body {
     margin: 0;
     background-color: #0d0d0d;
     color: white;
     font-family: 'Space Grotesk', sans-serif;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     min-height: 100vh;
     text-align: center;
     position: relative;
     overflow-x: hidden;
     padding: 20px;
     box-sizing: border-box;
 }

 .particles {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 1;
 }

 .particle {
     position: absolute;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     animation: float 6s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
         opacity: 0.3;
     }

     50% {
         transform: translateY(-20px) rotate(180deg);
         opacity: 0.8;
     }
 }

 .main-content {
    background: rgba(15, 15, 15, 0);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
 }

 .main-content:hover {
     animation-play-state: paused;
     transform: scale(1.01);
 }

 .avatar-container {
     position: relative;
     width: 89px;
     height: 89px;
     margin: 0 auto 0.8rem;
     border-radius: 50%;
     border: 4px solid transparent;
     transition: all 0.3s ease;
     cursor: pointer;
     overflow: visible;
 }

 .avatar-container:hover {
     transform: scale(1.08);
     box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
     filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
 }

 .avatar-container:active {
     transform: scale(0.95);
     transition: all 0.1s ease;
 }

 .avatar {
     width: 100%;
     height: 100%;
     border-radius: 55%;
     object-fit: cover;
     border: 2px solid #0d0d0d;
     transition: all 0.4s ease;
     filter: saturate(1);
     z-index: 1;
 }

 .avatar-decoration {
     position: absolute;
     top: -15px;
     left: -15px;
     width: 120px;
     height: 120px;
     object-fit: contain;
     z-index: 3;
     pointer-events: none;
     transition: all 0.4s ease;
     display: none;
 }

 .avatar-container:hover .avatar,
 .avatar-container:hover .avatar-decoration {
     filter: brightness(1.15) saturate(1.2) contrast(1.1);
 }

 .avatar-container:hover .avatar-decoration {
     transform: scale(1.08);
 }

 @media (max-width: 480px) {
     .avatar-decoration {
         width: 135px;
         height: 135px;
         top: -12.5px;
         left: -12.5px;
     }
 }

 .status-circle {
     position: absolute;
     bottom: -4px;
     right: -4px;
     width: 18px;
     height: 18px;
     border-radius: 50%;
     border: 2px solid #0d0d0d;
     background-color: #3b3b3b;
     transition: all 0.3s ease;
     z-index: 4;
 }

 .status-circle.clicked {
     animation: pulse 0.6s ease-out;
 }

 .username {
     font-size: 1.4rem;
     font-weight: 700;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 6px;
     color: white;
     background: linear-gradient(45deg, #fff, #ccc);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: textGlow 3s ease-in-out infinite alternate;
     transition: all 0.3s ease;
     margin-bottom: 0.2rem;
 }

 @keyframes textGlow {
     0% {
         filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
     }

     100% {
         filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
     }
 }

 .username:hover {
     transform: translateY(-2px);
     animation-play-state: paused;
 }

 .platform-icons {
     display: flex;
     gap: 4px;
     font-size: 1rem;
     color: white;
 }

 .platform-icons img {
     transition: transform 0.3s ease;
 }

 .platform-icons img:hover {
     transform: scale(1.2);
 }

 .user-handle {
     margin-bottom: 0.6rem;
     font-size: 0.85rem;
     color: #b3b3b3;
     opacity: 0.8;
     transition: opacity 0.3s ease;
 }

 .user-handle:hover {
     opacity: 1;
 }

 .activity-status {
     margin-top: 0.6rem;
     font-size: 0.8rem;
     color: #aaa;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     flex-wrap: wrap;
     padding: 0.8rem;
     border-radius: 12px;
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .activity-status:before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
     transform: rotate(45deg);
     animation: shimmerActivity 4s infinite;
 }

 @keyframes shimmerActivity {
     0% {
         transform: translateX(-100%) translateY(-100%) rotate(45deg);
     }

     100% {
         transform: translateX(100%) translateY(100%) rotate(45deg);
     }
 }

 .activity-status:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
 }

 .activity-status img {
     width: 32px;
     height: 32px;
     border-radius: 6px;
     object-fit: cover;
     box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
     transition: all 0.3s ease;
 }

 .activity-status img:hover {
     transform: scale(1.1);
     box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
 }

 .no-activity {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     padding: 1rem;
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
     border: 2px dashed rgba(255, 255, 255, 0.2);
     border-radius: 12px;
     position: relative;
     overflow: hidden;
     width: 100%;
     box-sizing: border-box;
 }

 .no-activity:before {
     content: '';
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(45deg,
             rgba(255, 255, 255, 0.1) 0%,
             rgba(255, 255, 255, 0.05) 25%,
             rgba(255, 255, 255, 0.1) 50%,
             rgba(255, 255, 255, 0.05) 75%,
             rgba(255, 255, 255, 0.1) 100%);
     border-radius: 18px;
     z-index: -1;
     animation: gradientShift 3s ease-in-out infinite;
 }

 @keyframes gradientShift {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 .no-activity-text {
     font-size: 0.9rem;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.8);
     margin-bottom: 0.3rem;
     background: linear-gradient(45deg, #fff, #ccc);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .no-activity-subtext {
     font-size: 0.7rem;
     color: rgba(255, 255, 255, 0.5);
     text-align: center;
     line-height: 1.3;
 }

 .floating-dots {
     display: flex;
     gap: 3px;
     margin-top: 6px;
 }

 .dot {
     width: 6px;
     height: 6px;
     background: rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     animation: dotFloat 1.5s ease-in-out infinite;
 }

 .dot:nth-child(1) {
     animation-delay: 0s;
 }

 .dot:nth-child(2) {
     animation-delay: 0.3s;
 }

 .dot:nth-child(3) {
     animation-delay: 0.6s;
 }

 @keyframes dotFloat {

     0%,
     100% {
         transform: translateY(0);
         opacity: 0.3;
     }

     50% {
         transform: translateY(-8px);
         opacity: 1;
     }
 }

 .activities-container {
     display: flex;
     flex-direction: column;
     gap: 12px;
     width: 100%;
     margin: 0 auto;
 }

 .main-content.expanded {
     max-width: 320px;
     transition: all 0.3s ease;
 }

 .activity-item {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 8px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .activity-item:hover {
     background: rgba(255, 255, 255, 0.08);
     transform: translateY(-2px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
 }

 .activity-item:before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.02), transparent);
     transform: rotate(45deg);
     animation: shimmer 3s infinite;
 }

 @keyframes shimmer {
     0% {
         transform: translateX(-100%) translateY(-100%) rotate(45deg);
     }

     100% {
         transform: translateX(100%) translateY(100%) rotate(45deg);
     }
 }

 .activity-item img {
     width: 28px;
     height: 28px;
     border-radius: 6px;
     object-fit: cover;
     flex-shrink: 0;
 }

 .activity-info {
     flex: 1;
     text-align: left;
 }

 .activity-name {
     font-weight: 600;
     color: white;
     font-size: 0.75rem;
     margin-bottom: 1px;
 }

 .activity-state {
     color: #aaa;
     font-size: 0.7rem;
 }

 .show-more-btn {
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 20px;
     color: white;
     padding: 8px 16px;
     font-size: 0.8rem;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-top: 8px;
     backdrop-filter: blur(5px);
     position: relative;
     overflow: hidden;
 }

 .show-more-btn:before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
     transition: left 0.5s ease;
 }

 .show-more-btn:hover:before {
     left: 100%;
 }

 .show-more-btn:hover {
     background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
     border-color: rgba(255, 255, 255, 0.3);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .hidden-activities {
     display: none;
     opacity: 0;
     transform: translateY(-10px);
     transition: none;
 }

 .hidden-activities.show {
     display: flex !important;
     flex-direction: column !important;
     gap: 12px !important;
     opacity: 1 !important;
     transform: translateY(0) !important;
     transition: opacity 0.4s ease, transform 0.4s ease !important;
 }

 .hidden-activities .activity-item {
     animation: none !important;
     transform: none !important;
     will-change: auto;
 }

 .support-info {
     margin-top: 0.8rem;
     font-size: 0.7rem;
     color: #888;
     padding: 0.6rem;
     border-radius: 8px;
     background: rgba(255, 255, 255, 0.03);
     backdrop-filter: blur(5px);
     border: 1px solid rgba(255, 255, 255, 0.05);
 }

 .support-info a {
     color: #5c9aff;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
 }

 .support-info a:hover {
     color: #7db4ff;
     text-shadow: 0 0 10px rgba(92, 154, 255, 0.5);
 }

 .support-info a:after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 0;
     height: 2px;
     background: #5c9aff;
     transition: width 0.3s ease;
 }

 .support-info a:hover:after {
     width: 100%;
 }

 .footer {
     margin-top: 0.6rem;
     font-size: 0.65rem;
     color: #666;
     opacity: 0.7;
     transition: opacity 0.3s ease;
 }

 .footer:hover {
     opacity: 1;
 }

 .progress-container {
     display: flex;
     align-items: center;
     gap: 8px;
     width: 250px;
     margin-top: 4px;
     font-size: 0.85rem;
     color: #ccc;
     user-select: none;
 }

 .progress-bar {
     flex-grow: 1;
     height: 3px;
     background: #fff5;
     border-radius: 2px;
     overflow: hidden;
     position: relative;
 }

 .progress-fill {
     height: 100%;
     background: linear-gradient(90deg, #1db954, #1ed760);
     border-radius: 2px;
     transition: width 0.3s ease;
     width: 0%;
     position: relative;
 }

 .progress-fill:after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     animation: shimmer 2s infinite;
 }

 .music-visualizer {
     display: flex;
     align-items: end;
     gap: 2px;
     height: 20px;
     margin-left: 8px;
 }

 .bar {
     width: 3px;
     background: #1db954;
     border-radius: 2px;
     animation: musicBar 0.8s ease-in-out infinite alternate;
 }

 .bar:nth-child(1) {
     animation-delay: 0.1s;
     height: 5px;
 }

 .bar:nth-child(2) {
     animation-delay: 0.2s;
     height: 10px;
 }

 .bar:nth-child(3) {
     animation-delay: 0.3s;
     height: 15px;
 }

 .bar:nth-child(4) {
     animation-delay: 0.4s;
     height: 8px;
 }

 @keyframes musicBar {
     from {
         transform: scaleY(0.3);
     }

     to {
         transform: scaleY(1);
     }
 }

 @keyframes floatUp {
     0% {
         transform: translateY(0px) rotate(0deg);
         opacity: 0.7;
     }

     50% {
         transform: translateY(-10px) rotate(180deg);
         opacity: 1;
     }

     100% {
         transform: translateY(-20px) rotate(360deg);
         opacity: 0.3;
     }
 }

 @keyframes breathe {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.02);
     }
 }

 @media (max-width: 768px) {
     body {
         padding: 15px;
     }

     .main-content {
         padding: 1.5rem;
         max-width: 100%;
         min-width: unset;
         width: 100%;
     }
 }

 @media (max-width: 480px) {
     body {
         padding: 10px;
     }

     .main-content {
         padding: 1rem;
         min-width: unset;
     }

     .avatar-container {
         width: 110px;
         height: 110px;
     }

     .avatar {
         width: 110px;
         height: 110px;
     }

     .avatar-decoration {
         width: 140px;
         height: 140px;
         top: -15px;
         left: -15px;
     }

     .status-circle {
         width: 22px;
         height: 22px;
         bottom: -5px;
         right: -5px;
     }

     .username {
         font-size: 1.6rem;
     }

     .user-handle {
         font-size: 0.9rem;
     }

     .activity-status {
         font-size: 0.8rem;
     }

     .no-activity {
         padding: 1rem;
     }
 }

 @media (min-width: 769px) {
     body {
         padding: 20px;
     }

     .main-content {
         max-width: 320px;
         min-width: 280px;
         padding: 1.2rem;
     }
 }

 @media (min-width: 1200px) {
     .main-content {
         max-width: 320px;
         min-width: 300px;
         padding: 1.4rem;
     }
 }

 /* #loadingScreen {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #0d0d0d;
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
 }

 .loader {
     border: 5px solid #3b3b3b;
     border-top: 5px solid #ffffff;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     animation: spin 1s linear infinite;
 } */

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 .links-section {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
 }

 .link-card {
     background-color: var(--card);
     border-radius: 10px;
     padding: 15px;
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
     color: var(--text);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .link-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
 }

 .link-text {
     align-items: center;
     font-size: 13px;
     font-weight: 300;
 }

 .custom-cursor {
     cursor: url(./pointer.png), auto !important;
 }

 .badges {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 6px;
     margin-top: 4px;
 }

 .badge {
     position: relative;
     display: inline-block;
 }

 .badge img {
     width: 19px;
     border-radius: 50%;
     transform: scale(0.9);
     height: 19px;
     object-fit: contain;
     transition: transform 0.3s ease;
 }

 .badge:hover img {
     transform: scale(1.2);
 }

 .badge-tooltip {
     visibility: hidden;
     position: absolute;
     bottom: 100%;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(0, 0, 0, 0.9);
     color: white;
     font-size: 0.7rem;
     padding: 4px 8px;
     border-radius: 4px;
     white-space: nowrap;
     z-index: 5;
     opacity: 0;
     transition: opacity 0.2s ease, visibility 0.2s ease;
 }

 .badge:hover .badge-tooltip {
     visibility: visible;
     opacity: 1;
 }

 .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
    animation: gridfade 0.8s ease-out 0.4s both;
}

@media (max-width: 768px) {
    .contact-item.donate-item {
        padding: 20px;
        margin-bottom: 8px;
        transform: none !important;
    }
    
    .contact-item.donate-item:hover {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .fixed-nav {
        top: 20px;
        left: 15px;
        right: 15px;
        transform: none;
        width: calc(100% - 30px);
        gap: 2px;
        padding: 4px;
        transition: none !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .fixed-nav:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
        transform: none !important;
    }

    .nav-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 2px;
    }

    .nav-link {
        flex: 1;
        padding: 10px 8px;
        font-size: 13px;
        min-height: 38px;
        min-width: 60px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: none !important;
        transition: background-color 0.2s ease, color 0.2s ease !important;
    }

    .nav-link:hover {
        transform: none !important;
    }

    .nav-link:active {
        transform: none !important;
    }

    .nav-link:focus {
        transform: none !important;
    }

    .nav-link::before {
        transform: none !important;
        transition: opacity 0.2s ease !important;
    }

    .name {
        font-size: 2.8rem;
    }

    .tagline {
        font-size: 16px;
    }

    .content {
        max-width: 400px;
    }

    .container {
        padding: 100px 15px 60px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px; 
        margin-bottom: 24px; 
    }

    .info-item {
        padding: 20px; 
        margin-bottom: 8px; 
    }

    .discord-card {
        margin-bottom: 20px;
        padding: 20px; 
    }

    .profile-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;  
    }

    .user-details {
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px; 
        margin-bottom: 8px;
    }

    .contact-grid {
        gap: 12px;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 90vh;
    }

    .modal-header {
        padding: 24px 24px 12px;
    }

    .avatars-container-wrapper {
        padding: 16px 24px 24px;
    }

    .avatars-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .contact-item.donate-item {
        padding: 18px;
        margin-bottom: 6px;
    }
}

.invite-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.invite-card {
    background: rgb(0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.invite-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.invite-card.server-invite {
    border-color: rgba(88, 101, 242, 0.3);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.invite-card.bot-invite {
    border-color: rgba(67, 181, 129, 0.3);
    background: linear-gradient(135deg, rgba(67, 181, 129, 0.08) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.invite-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.invite-icon {
    flex-shrink: 0;
}

.invite-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    transition: all 0.3s ease;
}

.invite-card:hover .invite-avatar {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.invite-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.invite-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.invite-description {
    font-size: 14px;
    color: #cccccc;
    font-weight: 400;
    line-height: 1.2;
}

.invite-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    margin-top: 2px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #aaaaaa;
    font-weight: 500;
}

.stat .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat .status-dot.online {
    background: #43b581;
}

.stat .status-dot.offline {
    background: #747f8d;
}

.invite-action {
    flex-shrink: 0;
    margin-left: 12px;
}

.join-btn {
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #5865f2;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-tap-highlight-color: transparent;
}

.join-btn.bot-btn {
    background: rgba(67, 181, 129, 0.15);
    border-color: rgba(67, 181, 129, 0.3);
    color: #43b581;
}

.join-btn:hover {
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-1px);
}

.join-btn.bot-btn:hover {
    background: rgba(67, 181, 129, 0.25);
    border-color: rgba(67, 181, 129, 0.5);
}

.invite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (max-width: 768px) {
    .invite-cards-container {
        gap: 12px;
        margin-top: 12px;
    }
    
    .invite-card {
        padding: 16px;
        transform: none !important;
    }
    
    .invite-card:hover {
        transform: none !important;
    }
    
    .invite-header {
        gap: 12px;
    }
    
    .invite-avatar {
        width: 40px;
        height: 40px;
    }
    
    .invite-name {
        font-size: 16px;
    }
    
    .invite-stats {
        gap: 12px;
        font-size: 12px;
    }
    
    .invite-action {
        margin-left: 8px;
    }
    
    .join-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .invite-cards-container {
        gap: 10px;
        margin-top: 10px;
    }
    
    .invite-card {
        padding: 14px;
    }
    
    .invite-header {
        gap: 10px;
    }
    
    .invite-avatar {
        width: 35px;
        height: 35px;
    }
    
    .invite-name {
        font-size: 15px;
    }
    
    .invite-description {
        font-size: 13px;
    }
    
    .invite-stats {
        gap: 10px;
        font-size: 11px;
    }
    
    .invite-action {
        margin-left: 6px;
    }
    
    .join-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}

.visitor-counter {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #888888;
    font-weight: 400;
}

.visitor-icon {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.8;
    animation: eye-blink 4s ease-in-out infinite;
}

.visitor-text {
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
}

.visitor-text #visitor-count {
    color: #ffffff;
    font-weight: 600;
    font-family: 'Inter', monospace;
    transition: all 0.3s ease;
}

.visitor-counter:hover .visitor-icon {
    color: #43b581;
    transform: scale(1.1);
}

.visitor-counter:hover .visitor-text #visitor-count {
    color: #43b581;
}

@keyframes eye-blink {
    0%, 90%, 100% { opacity: 0.8; }
    95% { opacity: 0.3; }
}

@media (max-width: 768px) {
    .visitor-counter {
        margin-top: 16px;
        padding-top: 16px;
        font-size: 13px;
    }
    
    .visitor-icon {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .visitor-counter {
        margin-top: 14px;
        padding-top: 14px;
        font-size: 12px;
    }
    
    .visitor-icon {
        font-size: 13px;
    }
}

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%);
}

.progress-time {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: #666666;
    font-family: 'Inter', monospace;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
    animation: gridfade 0.8s ease-out 0.4s both;
}

@keyframes gridfade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-item {
    background: rgba(12, 12, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.5s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.info-item:hover::before {
    left: 100%;
}

.info-label {
    font-size: 12px;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}


#myVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#backgroundMusic {
    display: none;
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.enter-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #ffffff6e;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    position: relative; 
    display: inline-block;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); 
}

.enter-text:hover {
    color: #ffffff;
    transform: scale(1.1) translateY(-5px); 
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.5);
    animation: wobble 0.4s ease-in-out;
    opacity: 1; 
}

@keyframes wobble {
    0% { transform: scale(1.1) translateY(-5px) rotate(0deg); }
    25% { transform: scale(1.1) translateY(-5px) rotate(2deg); }
    50% { transform: scale(1.1) translateY(-5px) rotate(-2deg); }
    75% { transform: scale(1.1) translateY(-5px) rotate(1deg); }
    100% { transform: scale(1.1) translateY(-5px) rotate(0deg); }
}

.main-content, .particles {
    position: relative;
    z-index: 1;
}

.corner-text {
    position: fixed;
    bottom: 6px;
    right: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.5rem; 
    color: #ffffff; 
    opacity: 0.9;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}
