 html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; 
    max-width: 100vw;
}

 * {
     font-family: 'Vazir', sans-serif;
         box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
 }

@media (max-width: 768px) {
    .animated-bg, 
    .parallax {
        background-attachment: scroll !important;
        background-size: cover;
    }

    .floating, .pulse, .glitch, .card-3d, .card-3d-enhanced {
        animation: none !important;
        transform: none !important;
    }
}

body::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    position: relative;
}

 ::-webkit-scrollbar {
     width: 10px;
 }

 ::-webkit-scrollbar-track {
     background: #0a0a0a;
 }

 ::-webkit-scrollbar-thumb {
     background: linear-gradient(45deg, #ee2929 0%, #692727 100%);
     border-radius: 5px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(45deg, #ee2929 0%, #692727 100%);
 }

 .gradient-text {
     background: linear-gradient(45deg, #ee2929 0%, #692727 50%, #ff0000 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     background-size: 200% 200%;
     animation: gradient 3s ease infinite;
 }

 @keyframes gradient {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 .neon-glow {
     text-shadow: 0 0 10px rgba(255, 107, 107, 0.8),
         0 0 20px rgba(255, 107, 107, 0.6),
         0 0 30px rgba(255, 107, 107, 0.4);
 }

 .animated-bg {
     background: linear-gradient(-45deg, #0a0a0a, #1a1a1a, #2a2a2a, #1a1a1a);
     background-size: 400% 400%;
     animation: gradientBG 15s ease infinite;
 }

 @keyframes gradientBG {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 .glass {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .glass-enhanced {
     background: rgba(255, 255, 255, 0.03);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.05);
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .floating {
     animation: float 6s ease-in-out infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 1;
     }

     50% {
         transform: scale(1.05);
         opacity: 0.8;
     }

     100% {
         transform: scale(1);
         opacity: 1;
     }
 }

 .pulse {
     animation: pulse 2s ease-in-out infinite;
 }

 @keyframes glitch {

     0%,
     100% {
         transform: translate(0);
     }

     20% {
         transform: translate(-2px, 2px);
     }

     40% {
         transform: translate(-2px, -2px);
     }

     60% {
         transform: translate(2px, 2px);
     }

     80% {
         transform: translate(2px, -2px);
     }
 }

 .glitch:hover {
     animation: glitch 0.3s linear infinite;
 }

 .card-3d {
     transform-style: preserve-3d;
     transition: transform 0.6s;
 }

 .card-3d:hover {
     transform: rotateY(10deg) rotateX(10deg);
 }

 .btn-glow {
     position: relative;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .btn-glow::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     width: 0;
     height: 0;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     transform: translate(-50%, -50%);
     transition: width 0.6s, height 0.6s;
 }

 .btn-glow:hover::before {
     width: 300px;
     height: 300px;
 }

 .cursor {
     width: 20px;
     height: 20px;
     border: 2px solid #ff6b6b;
     border-radius: 50%;
     position: fixed;
     pointer-events: none;
     transition: all 0.1s ease;
     z-index: 9999;
     mix-blend-mode: difference;
 }

 .cursor-follower {
     width: 40px;
     height: 40px;
     background: rgba(255, 107, 107, 0.1);
     border-radius: 50%;
     position: fixed;
     pointer-events: none;
     transition: all 0.3s ease;
     z-index: 9998;
 }

 #particles-js {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     z-index: -1;
 }

 .status-indicator {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     display: inline-block;
     animation: pulse 2s ease-in-out infinite;
 }

 .status-online {
     background-color: #4ade80;
 }

 .status-offline {
     background-color: #ef4444;
 }

 .status-maintenance {
     background-color: #fbbf24;
 }

 .tab-active {
     background: linear-gradient(45deg, #ee2929 0%, #692727 100%);
     color: #fff;
 }

 .swiper {
     width: 100%;
     height: 100%;
 }

 .swiper-slide {
     text-align: center;
     font-size: 18px;
     background: #000;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .news-card {
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .news-card::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;
 }

 .news-card:hover::before {
     left: 100%;
 }

 .news-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
 }

 .vip-badge {
     background: linear-gradient(45deg, #ee2929, #692727);
     color: #fff;
     padding: 2px 8px;
     border-radius: 12px;
     font-size: 12px;
     font-weight: bold;
     animation: pulse 2s ease-in-out infinite;
 }

 .players-counter {
     background: linear-gradient(45deg, #4ade80, #22c55e);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .server-card {
     background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 217, 61, 0.1) 100%);
     border: 1px solid rgba(255, 107, 107, 0.2);
     transition: all 0.3s ease;
 }

 .server-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
     border-color: rgba(255, 107, 107, 0.5);
 }

 .feature-icon {
     background: linear-gradient(45deg, #ee2929, #692727);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .team-card {
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .team-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
     transform: translateX(-100%);
     transition: transform 0.6s;
 }

 .team-card:hover::after {
     transform: translateX(100%);
 }

 .team-card:hover {
     transform: scale(1.05);
 }

 .countdown {
     display: flex;
     gap: 20px;
     justify-content: center;
 }

 .countdown-item {
     text-align: center;
     background: rgba(255, 107, 107, 0.1);
     padding: 20px;
     border-radius: 10px;
     min-width: 80px;
 }

 .countdown-number {
     font-size: 2rem;
     font-weight: bold;
     color: #ff6b6b;
 }

 .shop-item {
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .shop-item::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 217, 61, 0.1), transparent);
     transform: rotate(45deg);
     transition: all 0.5s;
 }

 .shop-item:hover::before {
     left: 100%;
 }

 .shop-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(255, 217, 61, 0.3);
 }

 .testimonial-card {
     background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 217, 61, 0.05) 100%);
     border: 1px solid rgba(255, 107, 107, 0.1);
     transition: all 0.3s ease;
 }

 .testimonial-card:hover {
     transform: scale(1.02);
     border-color: rgba(255, 107, 107, 0.3);
 }

 .form-input {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     transition: all 0.3s ease;
 }

 .form-input:focus {
     background: rgba(255, 255, 255, 0.1);
     border-color: #ff6b6b;
     outline: none;
     box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
 }

 .footer-link {
     position: relative;
     transition: color 0.3s ease;
 }

 .footer-link::after {
     content: '';
     position: absolute;
     bottom: -2px;
     right: 0;
     width: 0;
     height: 2px;
     background: linear-gradient(45deg, #ee2929, #692727);
     transition: width 0.3s ease;
 }

 .footer-link:hover::after {
     width: 100%;
 }

 .mobile-menu {
     transform: translateX(100%);
     transition: transform 0.3s ease;
 }

 .mobile-menu.active {
     transform: translateX(0);
 }

 .scroll-top {
     position: fixed;
     bottom: 30px;
     left: 30px;
     width: 50px;
     height: 50px;
     background: linear-gradient(45deg, #ee2929, #692727);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 1000;
 }

 .scroll-top.show {
     opacity: 1;
     visibility: visible;
 }

 .scroll-top:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
 }

 .header-hidden {
     transform: translateY(-100%);
 }

 .connection-guide {
     position: relative;
     overflow: hidden;
 }

 .connection-guide::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://picsum.photos/seed/connection/1920/1080') center/cover no-repeat;
     opacity: 0.1;
     z-index: -1;
 }

 .step-card {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 16px;
     padding: 30px;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
     height: 100%;
 }

 .step-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, #ee2929, #692727, #ff0000);
     transform: translateX(-100%);
     transition: transform 0.6s ease;
 }

 .step-card:hover::before {
     transform: translateX(0);
 }

 .step-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
     border-color: rgba(255, 107, 107, 0.3);
 }

 .step-number {
     width: 60px;
     height: 60px;
     background: linear-gradient(45deg, #ee2929, #692727);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: bold;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
 }

 .step-number::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.2);
     z-index: -1;
     animation: pulse 2s ease-in-out infinite;
 }

 .step-icon {
     width: 80px;
     height: 80px;
     background: rgba(255, 107, 107, 0.1);
     border-radius: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 20px;
     font-size: 36px;
     color: #ee2929;
     transition: all 0.3s ease;
 }

 .step-card:hover .step-icon {
     background: rgba(255, 107, 107, 0.2);
     transform: scale(1.1);
 }

 .step-title {
     font-size: 22px;
     font-weight: bold;
     margin-bottom: 15px;
     color: #fff;
 }

 .step-description {
     color: #ccc;
     line-height: 1.6;
 }

 .step-code {
     background: rgba(0, 0, 0, 0.3);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 8px;
     padding: 10px;
     margin-top: 15px;
     font-family: monospace;
     color: #6bcf7f;
     direction: ltr;
     text-align: left;
 }

 .faq-section {
     position: relative;
     overflow: hidden;
 }

 .faq-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('https://picsum.photos/seed/faq/1920/1080') center/cover no-repeat;
     opacity: 0.05;
     z-index: -1;
 }

 .faq-item {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 16px;
     margin-bottom: 20px;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .faq-item:hover {
     border-color: rgba(255, 107, 107, 0.3);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }

 .faq-question {
     padding: 20px 30px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 18px;
     font-weight: bold;
     transition: all 0.3s ease;
 }

 .faq-question:hover {
     background: rgba(255, 107, 107, 0.1);
 }

 .faq-question.active {
     background: rgba(255, 107, 107, 0.2);
     color: #ee2929;
 }

 .faq-icon {
     transition: transform 0.3s ease;
     font-size: 20px;
 }

 .faq-question.active .faq-icon {
     transform: rotate(180deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s ease, padding 0.5s ease;
     padding: 0 30px;
 }

 .faq-answer.active {
     max-height: 500px;
     padding: 0 30px 20px;
 }

 .faq-answer p {
     color: #ccc;
     line-height: 1.8;
 }

 .faq-highlight {
     color: #ee2929;
     font-weight: bold;
 }

 .parallax {
     background-attachment: fixed;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
 }

 .fade-in-up {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .fade-in-up.active {
     opacity: 1;
     transform: translateY(0);
 }

 .scale-in {
     opacity: 0;
     transform: scale(0.9);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .scale-in.active {
     opacity: 1;
     transform: scale(1);
 }

 .glow-on-hover {
     position: relative;
     transition: all 0.3s ease;
 }

 .glow-on-hover::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border-radius: inherit;
     background: linear-gradient(45deg, #ee2929, #692727, #ff0000);
     opacity: 0;
     z-index: -1;
     transition: opacity 0.3s ease;
 }

 .glow-on-hover:hover::before {
     opacity: 0.3;
 }

 .glow-on-hover:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(255, 107, 107, 0.3);
 }

 .card-3d-enhanced {
     transform-style: preserve-3d;
     transition: transform 0.6s;
     position: relative;
 }

 .card-3d-enhanced::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 217, 61, 0.1));
     border-radius: inherit;
     opacity: 0;
     z-index: -1;
     transition: opacity 0.3s ease;
 }

 .card-3d-enhanced:hover::before {
     opacity: 1;
 }

 .card-3d-enhanced:hover {
     transform: rotateY(10deg) rotateX(10deg) translateZ(20px);
 }

 .shimmer {
     position: relative;
     overflow: hidden;
 }

 .shimmer::after {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     animation: shimmer 2s infinite;
 }

 @keyframes shimmer {
     0% {
         left: -100%;
     }

     100% {
         left: 100%;
     }
 }

 .text-reveal {
     position: relative;
     overflow: hidden;
 }

 .text-reveal::after {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     transform: translateX(0);
     transition: transform 0.8s ease;
 }

 .text-reveal.revealed::after {
     transform: translateX(100%);
 }

 .server-browser {
     background: rgba(255, 255, 255, 0.02);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     padding: 30px;
 }

 .server-browser-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 30px;
     flex-wrap: wrap;
     gap: 20px;
 }

 .server-filters {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .server-filter {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     padding: 10px 20px;
     color: #fff;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .server-filter:hover {
     background: rgba(255, 107, 107, 0.2);
     border-color: rgba(255, 107, 107, 0.5);
 }

 .server-filter.active {
     background: linear-gradient(45deg, #ee2929, #692727);
     color: #fff;
 }

 .server-list {
     display: grid;
     gap: 20px;
 }

 .server-item {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 15px;
     padding: 20px;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .server-item:hover {
     background: rgba(255, 255, 255, 0.05);
     border-color: rgba(255, 107, 107, 0.3);
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
 }

 .server-icon {
     width: 80px;
     height: 80px;
     border-radius: 15px;
     object-fit: cover;
 }

 .server-info {
     flex: 1;
 }

 .server-name {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 5px;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .server-address {
     color: #888;
     font-size: 14px;
     margin-bottom: 10px;
 }

 .server-stats {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
 }

 .server-stat {
     display: flex;
     align-items: center;
     gap: 5px;
     color: #ccc;
     font-size: 14px;
 }

 .server-actions {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 10px;
 }

 .server-players {
     font-size: 24px;
     font-weight: bold;
     color: #4ade80;
 }

 .server-connect-btn {
     background: linear-gradient(45deg, #4ade80, #22c55e);
     color: #000;
     border: none;
     border-radius: 10px;
     padding: 10px 20px;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .server-connect-btn:hover {
     transform: scale(1.05);
     box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
 }

 .shop-section {
     background: rgba(255, 255, 255, 0.02);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     padding: 30px;
 }

 .shop-categories {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .shop-category {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 50px;
     padding: 12px 25px;
     color: #fff;
     transition: all 0.3s ease;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .shop-category:hover {
     background: rgba(255, 107, 107, 0.2);
     border-color: rgba(255, 107, 107, 0.5);
 }

 .shop-category.active {
     background: linear-gradient(45deg, #ee2929, #692727);
     color: #dfdfdf;
 }

 .shop-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .shop-card {
     background: rgba(255, 0, 0, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     padding: 30px;
     text-align: center;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .shop-card::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: linear-gradient(45deg, transparent, rgba(255, 217, 61, 0.1), transparent);
     transform: rotate(45deg);
     transition: all 0.5s;
 }

 .shop-card:hover::before {
     left: 100%;
 }

 .shop-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
 }

 .shop-icon {
     width: 100px;
     height: 100px;
     margin: 0 auto 20px;
     background: linear-gradient(45deg, #ee2929, #692727);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 40px;
     color: #fff;
 }

 .shop-title {
     font-size: 22px;
     font-weight: bold;
     margin-bottom: 10px;
 }

 .shop-description {
     color: #ccc;
     margin-bottom: 20px;
 }

 .shop-price {
     font-size: 28px;
     font-weight: bold;
     background: linear-gradient(45deg, #ee2929, #692727);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 20px;
 }

 .shop-buy-btn {
     background: linear-gradient(45deg, #ee2929, #692727);
     color: #fff;
     border: none;
     border-radius: 50px;
     padding: 15px 30px;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
     width: 100%;
 }

 .shop-buy-btn:hover {
     transform: scale(1.05);
     box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
 }

 .team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
 }

 .team-card {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     padding: 30px;
     text-align: center;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .team-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
     transform: translateX(-100%);
     transition: transform 0.6s;
 }

 .team-card:hover::after {
     transform: translateX(100%);
 }

 .team-card:hover {
     transform: scale(1.05);
     box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
 }

 .team-avatar {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     margin: 0 auto 20px;
     border: 4px solid;
     border-image: linear-gradient(45deg, #ee2929, #692727) 1;
     position: relative;
 }

 .team-status {
     position: absolute;
     bottom: 10px;
     right: 10px;
     width: 20px;
     height: 20px;
     background: #4ade80;
     border-radius: 50%;
     border: 3px solid #000;
 }

 .team-name {
     font-size: 20px;
     font-weight: bold;
     margin-bottom: 5px;
 }

 .team-role {
     color: #ffd93d;
     margin-bottom: 20px;
 }

 .team-social {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .team-social a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .team-social a:hover {
     background: rgba(255, 107, 107, 0.3);
     transform: scale(1.1);
 }

 @media (max-width: 768px) {
     .server-item {
         flex-direction: column;
         text-align: center;
     }

     .server-stats {
         justify-content: center;
     }

     .server-actions {
         flex-direction: row;
         width: 100%;
         justify-content: space-between;
     }

     .countdown {
         flex-wrap: wrap;
         justify-content: center;
     }

     .countdown-item {
         min-width: 60px;
         padding: 15px;
     }

     .countdown-number {
         font-size: 1.5rem;
     }
 }

 @media (max-width: 640px) {
     .step-card {
         padding: 20px;
     }

     .step-icon {
         width: 60px;
         height: 60px;
         font-size: 28px;
     }

     .step-title {
         font-size: 18px;
     }

     .faq-question {
         padding: 15px 20px;
         font-size: 16px;
     }

     .faq-answer {
         padding: 0 20px 15px;
     }

     .shop-grid {
         grid-template-columns: 1fr;
     }

     .team-grid {
         grid-template-columns: 1fr;
     }
 }