* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: url('/wallpaper.png') center/cover no-repeat fixed;
    min-height: 100vh;
    color: #2c2c2c;
    opacity: 0;
    animation: pageFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.header {
    text-align: center;
    padding: 60px 20px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    margin: 0 20px 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: headerFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c2c2c;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.tagline {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.main-content {
    padding: 0 20px;
    animation: contentSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
@keyframes contentSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    animation: cardFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.product-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.4);
}
.product-card:active {
    transform: scale(1.01);
    transition: all 0.1s ease;
}
.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-icon {
    transform: scale(1.05);
}
.product-icon i {
    font-size: 3rem;
}
.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c2c2c;
}
.product-price {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.25);
    margin: 80px auto;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}
.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes modalFadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    color: #6c757d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    transform: scale(1.1);
}
.modal-close:active {
    transform: scale(0.95);
}
.modal-close i {
    font-size: 18px;
}
.modal-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}
.modal-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}
.modal-icon i {
    font-size: 3rem;
}
.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
}
.modal-body {
    padding: 30px 40px;
}
#modalDescription {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    white-space: pre-line;
}
.modal-price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
.price-label {
    font-size: 0.95rem;
    color: #6c757d;
}
.price-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
}
.quantity-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
.quantity-label {
    font-size: 0.95rem;
    color: #6c757d;
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    color: #2c2c2c;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.quantity-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.3s;
}
.quantity-btn:hover::before {
    left: 100%;
}
.quantity-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    transform: scale(1.08);
}
.quantity-btn:active {
    transform: scale(0.98);
    transition: all 0.1s ease;
}
.quantity-btn i {
    font-size: 14px;
}
.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}
.total-section {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 10px;
}
.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}
.total-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
}
.modal-footer {
    padding: 0 40px 40px;
}
.btn-primary {
    width: 100%;
    padding: 16px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}
.btn-primary:hover {
    background: #333333;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.btn-primary:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-block {
    display: block;
    width: 100%;
}
.purchase-summary {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 3px solid #000000;
    border-radius: 8px;
}
.purchase-summary p {
    margin-bottom: 8px;
    color: #333333;
    font-size: 0.95rem;
}
.purchase-summary p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #000000;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
    font-size: 0.95rem;
}
.label-icon {
    font-size: 20px;
    margin-right: 6px;
}
.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}
.form-group input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
    transform: scale(1.01);
}
.form-group input::placeholder {
    color: #999999;
}
.nickname-status {
    margin-top: 8px;
    font-size: 0.85rem;
    min-height: 20px;
    transition: all 0.3s ease;
}
.nickname-status.valid {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5),
                 0 0 20px rgba(34, 197, 94, 0.3),
                 0 0 30px rgba(34, 197, 94, 0.2);
    animation: glowPulse 2s ease-in-out infinite;
}
.nickname-status.invalid {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5),
                 0 0 20px rgba(239, 68, 68, 0.3),
                 0 0 30px rgba(239, 68, 68, 0.2);
    animation: glowPulse 2s ease-in-out infinite;
}
.nickname-status.checking {
    color: #666666;
}
@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px currentColor,
                     0 0 20px currentColor,
                     0 0 30px currentColor;
    }
    50% {
        text-shadow: 0 0 15px currentColor,
                     0 0 30px currentColor,
                     0 0 45px currentColor;
    }
}
.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}
.notification {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: all;
    animation: notificationSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
}
.notification.removing {
    animation: notificationSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes notificationSlideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes notificationSlideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}
.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}
.notification-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.notification-icon.success {
    color: #22c55e;
}
.notification-icon.error {
    color: #ef4444;
}
.notification-icon.info {
    color: #3b82f6;
}
.notification-text {
    flex: 1;
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.4;
}
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    overflow: hidden;
}
.notification-progress-bar {
    height: 100%;
    background: #666666;
    width: 100%;
    animation: progressShrink 10s linear;
}
@keyframes progressShrink {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}
.error-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: #000000;
    color: #ffffff;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 8px;
    animation: errorShake 0.4s ease;
}
@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}
.success-page {
    text-align: center;
    background: rgba(255, 255, 255, 0.25);
    padding: 80px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    margin-top: 80px;
    animation: successFadeIn 0.6s ease;
    position: relative;
    overflow: hidden;
}
.success-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.success-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: successIconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s both;
}
@keyframes successIconPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.success-icon i {
    font-size: 5rem;
    color: #000000;
}
.success-page h1 {
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.8rem;
}
.success-page p {
    color: #666666;
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
}
.back-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.back-btn:hover {
    background: #333333;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.back-btn:active {
    transform: scale(0.98);
}
.tops-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    animation: contentSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.tops-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}
.tops-list {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}
.tops-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.top-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: topItemSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.top-item:nth-child(1) { animation-delay: 0.1s; }
.top-item:nth-child(2) { animation-delay: 0.2s; }
.top-item:nth-child(3) { animation-delay: 0.3s; }
.top-item:nth-child(4) { animation-delay: 0.4s; }
.top-item:nth-child(5) { animation-delay: 0.5s; }
.top-item:nth-child(6) { animation-delay: 0.6s; }
.top-item:nth-child(7) { animation-delay: 0.7s; }
.top-item:nth-child(8) { animation-delay: 0.8s; }
.top-item:nth-child(9) { animation-delay: 0.9s; }
.top-item:nth-child(10) { animation-delay: 1.0s; }
@keyframes topItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.top-item:last-child {
    border-bottom: none;
}
.top-item:hover {
    background: #f8f8f8;
    transform: translateX(4px);
}
.top-position {
    width: 60px;
    display: flex;
    justify-content: center;
    margin-right: 20px;
}
.position-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    min-width: 30px;
    text-align: center;
}
.top-item:nth-child(1) .position-number {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.top-item:nth-child(2) .position-number {
    color: #c0c0c0;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}
.top-item:nth-child(3) .position-number {
    color: #cd7f32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}
.top-player {
    flex: 1;
    margin-right: 20px;
}
.player-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}
.top-value {
    text-align: right;
}
.value-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}
.empty-tops {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
}
.empty-tops i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}
.empty-tops p {
    font-size: 1.1rem;
    font-weight: 500;
}
.dockbar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dockbar-container {
    display: flex;
    gap: 4px;
    position: relative;
}
.dockbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 80px;
}
.dockbar-item:hover {
}
.dockbar-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dockbar-item:hover .dockbar-icon {
    transform: scale(1.1);
}
.dockbar-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
    line-height: 1;
}
.dockbar-highlight {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 80px;
    height: 64px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    opacity: 0;
}
.dockbar-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #000000;
    border-radius: 2px;
}
.server-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.server-card {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    position: relative;
    overflow: hidden;
}
.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.server-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.server-avatar {
    margin-bottom: 24px;
}
.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.server-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.server-description {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.5;
}
.connection-info {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: cardSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.connection-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.connection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}
.connection-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}
.platform-switcher {
    display: flex;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}
.platform-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #666666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}
.platform-btn.active {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.platform-btn:hover:not(.active) {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
}
.connection-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 200px;
    overflow: hidden;
}
.connection-details.hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    max-height: 0;
    margin: 0;
    padding: 0;
}
.connection-details.showing {
    opacity: 0;
    transform: translateY(-10px);
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    max-height: 200px;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.detail-item:last-child {
    border-bottom: none;
}
.detail-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #000000;
    font-size: 1rem;
}
.detail-label i {
    font-size: 1.1rem;
    color: #666666;
}
.detail-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #000000;
    font-size: 1rem;
}
.ip-text {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
}
.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    color: #666666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.3s;
}
.copy-btn:hover::before {
    left: 100%;
}
.copy-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    transform: scale(1.05);
}
.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    animation: cardSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
}
.action-btn:hover::before {
    left: 100%;
}
.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.4);
}
.telegram-btn:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #ffffff;
}
.store-btn:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}
.tops-btn:hover {
    background: #ffd700;
    border-color: #ffd700;
    color: #000000;
}
.action-btn i {
    font-size: 1.2rem;
}
.rules-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: contentSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
.search-section {
    margin-bottom: 40px;
}
.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}
.search-box input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.search-box input::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.search-box input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}
.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    font-size: 1.1rem;
}
.clear-search {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    color: #666666;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.clear-search:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}
.categories-section {
    margin-bottom: 40px;
}
.categories-switcher {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.category-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}
.category-btn.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.category-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}
.category-btn.active .category-number {
    background: rgba(255, 255, 255, 0.2);
}
.rules-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.category-rules {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-rules.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.rule-item {
    display: flex;
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: ruleSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.rule-item:nth-child(1) { animation-delay: 0.1s; }
.rule-item:nth-child(2) { animation-delay: 0.2s; }
.rule-item:nth-child(3) { animation-delay: 0.3s; }
.rule-item:nth-child(4) { animation-delay: 0.4s; }
.rule-item:nth-child(5) { animation-delay: 0.5s; }
.rule-item:nth-child(6) { animation-delay: 0.6s; }
.rule-item:nth-child(7) { animation-delay: 0.7s; }
.rule-item:nth-child(8) { animation-delay: 0.8s; }
.rule-item:nth-child(9) { animation-delay: 0.9s; }
.rule-item:nth-child(10) { animation-delay: 1.0s; }
@keyframes ruleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.rule-item:last-child {
    border-bottom: none;
}
.rule-item:hover {
    background: #f8f8f8;
    transform: translateX(4px);
}
.rule-header {
    margin-right: 20px;
    flex-shrink: 0;
}
.rule-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000000;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}
.rule-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rule-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    font-weight: 400;
}
.rule-punishment {
    display: inline-block;
    background: #ef4444;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
}
.search-highlight {
    background: #e0e0e0;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666666;
}
.no-results i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}
.no-results p {
    font-size: 1.1rem;
    font-weight: 500;
}
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #000000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: #ef4444;
}
.error-container i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.7;
}
.error-container p {
    font-size: 1.1rem;
    font-weight: 500;
}
.main-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 1000;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}
.nav-item:hover::before {
    left: 100%;
}
.nav-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    color: #2c2c2c;
}
.nav-item.active {
    background: #000000;
    color: #ffffff;
}
.nav-item i {
    font-size: 1rem;
}
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    .header {
        padding: 40px 15px 30px;
        margin-bottom: 40px;
    }
    .logo {
        font-size: 2rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-card {
        padding: 30px 20px;
    }
    .modal-content {
        width: 95%;
        margin: 40px auto;
    }
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 25px;
        padding-right: 25px;
    }
    .success-page {
        padding: 60px 30px;
        margin-top: 40px;
    }
    .notification-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .notification {
        padding: 12px;
    }
    .tops-container {
        padding: 0 15px;
    }
    .tops-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .top-item {
        padding: 16px 20px;
    }
    .position-number {
        font-size: 1.25rem;
    }
    .player-name {
        font-size: 1rem;
    }
    .value-amount {
        font-size: 1rem;
        padding: 6px 12px;
    }
    .dockbar {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        width: auto;
    }
    .dockbar-container {
        justify-content: space-around;
    }
    .dockbar-item {
        min-width: 60px;
        padding: 10px 12px;
    }
    .dockbar-icon {
        font-size: 1.25rem;
    }
    .dockbar-label {
        font-size: 0.7rem;
    }
    .main-nav {
        top: 10px;
        right: 10px;
        flex-direction: column;
    }
    .nav-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
.semi-transparent-block {
    position: relative;
}
.semi-transparent-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: inherit;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.background-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.switcher-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    z-index: 2;
}
.switcher-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.switcher-button i {
    font-size: 1.2rem;
    color: #2c2c2c;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
}
.switcher-options {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px;
    padding-right: 58px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 50px;
    display: flex;
    gap: 8px;
    align-items: center;
    width: 50px;
    z-index: 1;
}
.switcher-options.active {
    opacity: 1;
    visibility: visible;
    width: 170px;
    padding-left: 8px;
}
.switcher-option {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: scale(0.5);
}
.switcher-options.active .switcher-option {
    opacity: 1;
    transform: scale(1);
}
.switcher-options.active .switcher-option:nth-child(1) {
    transition-delay: 0.1s;
}
.switcher-options.active .switcher-option:nth-child(2) {
    transition-delay: 0.15s;
}
.switcher-option:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}
.switcher-option.active {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}
.switcher-option.white {
    background: #ffffff;
}
.switcher-option.apple {
    background: transparent;
    position: relative;
}
.switcher-option.apple::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,<svg xmlns="http:
}
.liquid-glass-btn {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.liquid-glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
}
.liquid-glass-btn:hover::before {
    left: 100%;
}
.liquid-glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}