* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    padding: 0;
    margin: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bg.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(174, 156, 207, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(174, 156, 207, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(174, 156, 207, 0.1) 0%, transparent 50%);
    z-index: -2;
}

.header {
    text-align: center;
    padding: 25px 20px 10px;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.logo-image {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 0 25px rgba(174, 156, 207, 0.6));
}

.logo-text {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ae9ccf, #b8a6d9, #c2b0e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 35px rgba(174, 156, 207, 0.6);
    letter-spacing: 5px;
    line-height: 1;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #B19CD9;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 1.4;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    position: relative;
    z-index: 5;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 20;
}

.carousel-nav {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(174, 156, 207, 0.2), rgba(174, 156, 207, 0.1));
    border: 2px solid rgba(174, 156, 207, 0.3);
    border-radius: 50%;
    color: #ae9ccf;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(174, 156, 207, 0.2);
}

.carousel-nav:hover {
    background: linear-gradient(135deg, rgba(174, 156, 207, 0.3), rgba(174, 156, 207, 0.2));
    border-color: rgba(174, 156, 207, 0.5);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(174, 156, 207, 0.3);
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

.cards-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    perspective: 1400px;
}

.cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card {
    position: absolute;
    width: 380px;
    height: 620px;
    background: linear-gradient(145deg, 
        rgba(174, 156, 207, 0.08), 
        rgba(174, 156, 207, 0.08),
        rgba(174, 156, 207, 0.05)
    );
    border-radius: 24px;
    border: 1px solid rgba(174, 156, 207, 0.2);
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform-origin: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    top: 50%;
    left: 50%;
    margin-top: -310px;
    margin-left: -190px;
}

.card[data-position="center"] {
    z-index: 15;
    transform: translateX(0) rotateY(0deg) scale(1.1);
    opacity: 1;
    border-color: rgba(174, 156, 207, 0.8);
    box-shadow: 0 40px 80px rgba(174, 156, 207, 0.4);
}

.card[data-position="left"] {
    z-index: 10;
    transform: translateX(-250px) rotateY(25deg) scale(0.85);
    opacity: 0.7;
}

.card[data-position="right"] {
    z-index: 10;
    transform: translateX(250px) rotateY(-25deg) scale(0.85);
    opacity: 0.7;
}

.card[data-position="hidden-left"] {
    z-index: 5;
    transform: translateX(-450px) rotateY(45deg) scale(0.6);
    opacity: 0.3;
}

.card[data-position="hidden-right"] {
    z-index: 5;
    transform: translateX(450px) rotateY(-45deg) scale(0.6);
    opacity: 0.3;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s;
    z-index: 1;
}

.card:hover::before {
    transform: translateX(100%);
}

.card-header {
    padding: 24px 20px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(174, 156, 207, 0.15);
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: #ae9ccf;
    filter: drop-shadow(0 0 10px rgba(174, 156, 207, 0.5));
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(174, 156, 207, 0.3);
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #B19CD9;
    opacity: 0.9;
    font-weight: 400;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.discord-modern-card {
    background: linear-gradient(145deg, 
        rgba(174, 156, 207, 0.1), 
        rgba(174, 156, 207, 0.05)
    );
    border-radius: 20px;
    border: 1px solid rgba(174, 156, 207, 0.2);
    backdrop-filter: blur(20px);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header-modern {
    padding: 24px 24px 16px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(174, 156, 207, 0.15);
}

.header-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ae9ccf, transparent);
    opacity: 0.8;
}

.discord-icon {
    width: 40px;
    height: 40px;
    color: #ae9ccf;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 15px rgba(174, 156, 207, 0.5));
}

.modern-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 20px rgba(174, 156, 207, 0.3);
}

.server-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 24px 24px;
}

.server-banner {
    background: linear-gradient(135deg, 
        rgba(174, 156, 207, 0.2), 
        rgba(174, 156, 207, 0.1)
    );
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(174, 156, 207, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(174, 156, 207, 0.15), transparent 60%);
    pointer-events: none;
}

.server-info {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.server-avatar {
    width: 60px;
    height: 60px;
    position: relative;
}

.server-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(174, 156, 207, 0.4);
}

.avatar-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(45deg, #ae9ccf, transparent, #ae9ccf);
    z-index: -1;
    opacity: 0.6;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.server-details {
    flex: 1;
}

.server-name {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    text-shadow: 0 0 15px rgba(174, 156, 207, 0.4);
}

.server-description {
    color: #c2b0e3;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

.server-stats-modern {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-box {
    flex: 1;
    background: linear-gradient(135deg, 
        rgba(174, 156, 207, 0.08), 
        rgba(174, 156, 207, 0.03)
    );
    border: 1px solid rgba(174, 156, 207, 0.2);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(174, 156, 207, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    border-color: rgba(174, 156, 207, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(174, 156, 207, 0.2);
}

.stat-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-icon.online {
    background: #00d26a;
    box-shadow: 0 0 10px rgba(0, 210, 106, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2); 
    }
}

.stat-icon.members {
    background: #ae9ccf;
    box-shadow: 0 0 10px rgba(174, 156, 207, 0.5);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    color: #c2b0e3;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.join-section {
    margin-top: auto;
}

.join-btn-modern {
    width: 100%;
    background: linear-gradient(135deg, #ae9ccf, #b8a6d9);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(174, 156, 207, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-glow {
    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;
}

.join-btn-modern:hover .btn-glow {
    left: 100%;
}

.join-btn-modern:hover {
    background: linear-gradient(135deg, #9d88bf, #ae9ccf);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(174, 156, 207, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.join-btn-modern:hover .btn-arrow {
    transform: translateX(4px);
}

.video-container {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid rgba(174, 156, 207, 0.2);
}

.video-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-slide.active {
    opacity: 1;
}

.video-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.video-nav {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.video-nav:hover {
    background: rgba(174, 156, 207, 0.8);
    transform: scale(1.1);
}

.video-nav svg {
    width: 16px;
    height: 16px;
}

.video-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(174, 156, 207, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ae9ccf;
    transform: scale(1.2);
}

.package-preview {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 2px solid rgba(174, 156, 207, 0.2);
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-preview:hover .package-image {
    transform: scale(1.05);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(174, 156, 207, 0.4), rgba(174, 156, 207, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

.patreon-stats {
    text-align: center;
}

.supporter-count {
    margin-bottom: 16px;
}

.support-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ae9ccf;
    text-shadow: 0 0 20px rgba(174, 156, 207, 0.5);
    line-height: 1;
    margin-bottom: 5px;
}

.support-label {
    font-size: 0.9rem;
    color: #B19CD9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.tier-list {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.tier-item {
    flex: 1;
    padding: 12px 10px;
    background: rgba(174, 156, 207, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(174, 156, 207, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.tier-item:hover {
    background: rgba(174, 156, 207, 0.12);
    border-color: rgba(174, 156, 207, 0.3);
    transform: translateY(-2px);
}

.tier-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ae9ccf;
    margin-bottom: 4px;
}

.tier-name {
    font-size: 0.75rem;
    color: #B19CD9;
    font-weight: 500;
    line-height: 1.3;
}

.card-footer {
    padding: 0 20px 24px;
    position: relative;
    z-index: 2;
}

.card-button {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    border: 2px solid;
}

.card-button::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;
}

.card-button:hover::before {
    left: 100%;
}

.button-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.card-button:hover .button-arrow {
    transform: translateX(4px);
}

.discord-button {
    background: linear-gradient(45deg, #5865F2, #7983F5);
    color: white;
    border-color: #5865F2;
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
    background: linear-gradient(45deg, #4752C4, #5865F2);
    box-shadow: 0 12px 30px rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
}

.youtube-button {
    background: linear-gradient(45deg, #FF0000, #FF3333);
    color: white;
    border-color: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3);
}

.youtube-button:hover {
    background: linear-gradient(45deg, #CC0000, #FF0000);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.patreon-button {
    background: linear-gradient(45deg, #ae9ccf, #b8a6d9);
    color: white;
    border-color: #ae9ccf;
    box-shadow: 0 8px 20px rgba(174, 156, 207, 0.3);
}

.patreon-button:hover {
    background: linear-gradient(45deg, #9d88bf, #ae9ccf);
    box-shadow: 0 12px 30px rgba(174, 156, 207, 0.4);
    transform: translateY(-2px);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(174, 156, 207, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-indicator.active {
    background: #ae9ccf;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(174, 156, 207, 0.5);
}

@media (max-width: 1200px) {
    .carousel-container {
        height: 680px;
    }
    
    .card {
        width: 340px;
        height: 580px;
        margin-top: -290px;
        margin-left: -170px;
    }
    
    .card[data-position="left"] {
        transform: translateX(-200px) rotateY(20deg) scale(0.8);
    }
    
    .card[data-position="right"] {
        transform: translateX(200px) rotateY(-20deg) scale(0.8);
    }
}

@media (max-width: 1024px) {
    .main-content {
        min-height: 75vh;
        padding: 15px;
    }
    
    .carousel-container {
        height: 620px;
    }
    
    .card {
        width: 320px;
        height: 540px;
        margin-top: -270px;
        margin-left: -160px;
    }
    
    .card[data-position="left"] {
        transform: translateX(-150px) rotateY(15deg) scale(0.75);
    }
    
    .card[data-position="right"] {
        transform: translateX(150px) rotateY(-15deg) scale(0.75);
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
    }
    
    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .logo-image {
        width: 100px;
        height: 100px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .modern-title {
        font-size: 1.2rem;
    }
    
    .server-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 10px;
        min-height: 70vh;
    }
    
    .header {
        padding: 15px 15px 8px;
    }
    
    .logo-container {
        gap: 15px;
        flex-direction: column;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .carousel-container {
        height: 560px;
    }
    
    .card {
        width: 280px;
        height: 480px;
        margin-top: -240px;
        margin-left: -140px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-subtitle {
        font-size: 0.8rem;
    }
    
    .modern-title {
        font-size: 1rem;
    }
    
    .server-name {
        font-size: 1rem;
    }
    
    .server-description {
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .support-number {
        font-size: 2.2rem;
    }
    
    .tier-price {
        font-size: 1.3rem;
    }
    
    .tier-name {
        font-size: 0.75rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-header {
        padding: 24px 20px 20px;
    }
    
    .card-footer {
        padding: 0 20px 24px;
    }
    
    .video-container {
        height: 180px;
    }
    
    .package-preview {
        height: 160px;
    }
    
    .package-title {
        font-size: 1.1rem;
    }
    
    .card[data-position="center"] {
        transform: translateX(0) rotateY(0deg) scale(1.05);
    }
    
    .card[data-position="left"] {
        transform: translateX(-120px) rotateY(10deg) scale(0.7);
    }
    
    .card[data-position="right"] {
        transform: translateX(120px) rotateY(-10deg) scale(0.7);
    }
    
    .card[data-position="hidden-left"],
    .card[data-position="hidden-right"] {
        opacity: 0;
    }
    
    .carousel-navigation {
        padding: 0 10px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .main-content {
        min-height: 65vh;
        padding: 5px;
    }
    
    .header {
        padding: 10px 10px 5px;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .subtitle {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .carousel-container {
        height: 500px;
    }
    
    .card {
        width: 250px;
        height: 420px;
        margin-top: -210px;
        margin-left: -125px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-subtitle {
        font-size: 0.75rem;
    }
    
    .modern-title {
        font-size: 0.9rem;
    }
    
    .server-name {
        font-size: 0.9rem;
    }
    
    .server-description {
        font-size: 0.7rem;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .support-number {
        font-size: 2rem;
    }
    
    .tier-price {
        font-size: 1.1rem;
    }
    
    .tier-name {
        font-size: 0.7rem;
    }
    
    .package-title {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-header {
        padding: 20px 16px 16px;
    }
    
    .card-footer {
        padding: 0 16px 20px;
    }
    
    .video-container {
        height: 160px;
    }
    
    .package-preview {
        height: 140px;
    }
    
    .tier-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .card[data-position="center"] {
        transform: translateX(0) rotateY(0deg) scale(1);
    }
    
    .card[data-position="left"] {
        transform: translateX(-100px) rotateY(5deg) scale(0.6);
    }
    
    .card[data-position="right"] {
        transform: translateX(100px) rotateY(-5deg) scale(0.6);
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav svg {
        width: 16px;
        height: 16px;
    }
    
    .card-button {
        font-size: 0.9rem;
        padding: 14px 20px;
    }
    
    .join-btn-modern {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

::selection {
    background: rgba(174, 156, 207, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(174, 156, 207, 0.3);
    color: white;
}