* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background with bokeh effect */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: -1;
    overflow: hidden;
}

.background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 100, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(75, 0, 130, 0.2) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    filter: blur(60px);
}

.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 30% 80%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: sparkle 15s linear infinite;
    opacity: 0.6;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sparkle {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Anonymous Masks Decoration */
.anonymous-masks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.mask {
    position: absolute;
    width: 50px;
    height: 60px;
    opacity: 0.15;
    animation: floatMask 20s ease-in-out infinite;
    filter: blur(1px);
    user-select: none;
}

.mask svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}

.mask-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.mask-2 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.mask-3 {
    top: 50%;
    left: 3%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.mask-4 {
    top: 60%;
    right: 5%;
    animation-delay: 6s;
    animation-duration: 24s;
}

.mask-5 {
    bottom: 15%;
    left: 10%;
    animation-delay: 8s;
    animation-duration: 19s;
}

.mask-6 {
    bottom: 25%;
    right: 12%;
    animation-delay: 10s;
    animation-duration: 21s;
}

.mask-7 {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 12s;
    animation-duration: 23s;
}

.mask-8 {
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 14s;
    animation-duration: 25s;
}

@keyframes floatMask {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    25% {
        transform: translate(30px, -40px) rotate(5deg) scale(1.1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-20px, 30px) rotate(-5deg) scale(0.9);
        opacity: 0.12;
    }
    75% {
        transform: translate(40px, 20px) rotate(3deg) scale(1.05);
        opacity: 0.18;
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.main-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #cc0000;
    text-shadow: 
        0 0 10px rgba(204, 0, 0, 0.5),
        0 0 20px rgba(204, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6);
    position: relative;
    display: inline-block;
    animation: moveTitle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(204, 0, 0, 0.3));
}

@keyframes moveTitle {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.main-title::before {
    content: 'ANONYMOUS';
    position: absolute;
    top: 0;
    left: 0;
    color: #cc0000;
    z-index: -1;
    filter: blur(3px);
    opacity: 0.4;
    animation: moveTitle 3s ease-in-out infinite;
}

.tagline {
    font-size: 18px;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact:hover {
    color: #6a5acd;
    border-bottom-color: #6a5acd;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.auth-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-link {
    color: #6a5aaf;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid rgba(106, 90, 205, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-link:hover {
    background: rgba(106, 90, 205, 0.2);
    border-color: #6a5aaf;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(106, 90, 205, 0.3);
}

.auth-link.admin-link {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.5);
    color: #ff6b6b;
    display: none; /* Hidden by default, shown only for admins */
}

.auth-link.admin-link:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: #ff6b6b;
    box-shadow: 0 4px 10px rgba(255, 68, 68, 0.3);
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(20, 20, 30, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    gap: 20px;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-btn-main {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    justify-content: space-between;
}

.lang-btn-main:hover {
    background: rgba(74, 60, 143, 0.6);
    border-color: rgba(106, 90, 205, 0.5);
}

.lang-btn-main.active {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f);
    border-color: rgba(106, 90, 205, 0.8);
    box-shadow: 0 4px 15px rgba(74, 60, 143, 0.4);
}

.lang-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-switcher.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(106, 90, 205, 0.2);
    color: #6a5acd;
}

.lang-option.active {
    background: rgba(106, 90, 205, 0.3);
    color: #9370db;
}

/* Auth Links Top */
.auth-links-top {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.auth-link-top {
    color: #6a5aaf;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid rgba(106, 90, 205, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-link-top:hover {
    background: rgba(106, 90, 205, 0.2);
    border-color: #6a5aaf;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(106, 90, 205, 0.3);
}

.auth-link-top.admin-link {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.5);
    color: #ff6b6b;
}

.auth-link-top.admin-link:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: #ff6b6b;
    box-shadow: 0 4px 10px rgba(255, 68, 68, 0.3);
}

/* Old lang-btn for compatibility */
.lang-btn {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lang-btn:hover {
    background: rgba(74, 60, 143, 0.6);
    border-color: rgba(106, 90, 205, 0.5);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f);
    border-color: rgba(106, 90, 205, 0.8);
    box-shadow: 0 4px 15px rgba(74, 60, 143, 0.4);
}

/* Glowing Title Effect */
.glowing-title {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #6a5acd, #4169e1, #9370db, #6a5acd);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 
        0 0 20px rgba(106, 90, 205, 0.8),
        0 0 40px rgba(65, 105, 225, 0.6),
        0 0 60px rgba(147, 112, 219, 0.4);
    filter: drop-shadow(0 0 15px rgba(106, 90, 205, 0.5));
    position: relative;
}

.glowing-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6a5acd, #4169e1, #9370db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(3px);
    opacity: 0.5;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Services Grid */
.offers-section {
    margin-bottom: 60px;
}

.service-section {
    margin-bottom: 60px;
}

.service-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(106, 90, 205, 0.5);
    text-align: center;
    text-shadow: 0 0 15px rgba(106, 90, 205, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-height: 400px;
}

.service-card > * {
    width: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(106, 90, 205, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.service-icon.id-card {
    background: linear-gradient(135deg, #4169e1, #1e3a8a);
}

.service-icon.license {
    background: linear-gradient(135deg, #00b67a, #00a86b);
}

.service-icon.passport {
    background: linear-gradient(135deg, #e60012, #cc0010);
}

.service-icon.salary {
    background: linear-gradient(135deg, #ffd700, #ffb347);
}

.service-icon.mediamarkt {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.service-icon.saturn {
    background: linear-gradient(135deg, #ff6600, #ff4400);
}

.service-icon.apple {
    background: linear-gradient(135deg, #808080, #606060);
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-desc {
    font-size: 12px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -5px;
    text-align: center;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-price {
    font-size: 28px;
    color: #6a5aaf;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-btn {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f, #4a3c8f);
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(74, 60, 143, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 0;
    width: 100%;
    max-width: 200px;
}

.order-btn:hover {
    background: linear-gradient(135deg, #5a4a9f, #6a5aaf, #5a4a9f);
    box-shadow: 
        0 6px 20px rgba(106, 90, 205, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.order-btn:active {
    transform: translateY(0);
}

.preview-btn {
    background: linear-gradient(135deg, #2a2a3a, #3a3a4a, #2a2a3a);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 40px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: auto;
    width: 100%;
    max-width: 200px;
}

.preview-btn:hover {
    background: linear-gradient(135deg, #3a3a4a, #4a4a5a, #3a3a4a);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(106, 90, 205, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.preview-btn:active {
    transform: translateY(0);
}

/* Preview Modal */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preview-modal.active {
    opacity: 1;
    visibility: visible;
}

.preview-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.95), rgba(40, 40, 55, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.preview-modal.active .preview-modal-content {
    transform: scale(1);
}

.preview-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.preview-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.preview-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(106, 90, 205, 0.5);
}

.preview-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: #ffffff;
}

.preview-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.preview-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    user-select: none;
}

.preview-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.preview-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.preview-nav-btn:disabled:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1);
}

.preview-nav-prev {
    left: 10px;
}

.preview-nav-next {
    right: 10px;
}

.preview-image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.watermark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.watermark {
    position: absolute;
    font-size: 28px;
    font-weight: 700;
    color: rgba(255, 0, 0, 0.4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: rotate(-45deg);
    letter-spacing: 2px;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 5;
}

.watermark-1 {
    top: 15%;
    left: 15%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.watermark-2 {
    top: 15%;
    right: 15%;
    transform: translate(50%, -50%) rotate(-45deg);
}

.watermark-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.watermark-4 {
    bottom: 15%;
    left: 15%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

.watermark-5 {
    bottom: 15%;
    right: 15%;
    transform: translate(50%, 50%) rotate(-45deg);
}

.preview-note {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 60px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-link {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.social-link:hover {
    color: #6a5acd;
    border-bottom-color: #6a5acd;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

/* Sidebar */
.sidebar-toggle {
    position: fixed;
    left: 20px;
    top: 20px;
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 10px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: rgba(74, 60, 143, 0.6);
    border-color: rgba(106, 90, 205, 0.5);
    transform: translateY(-2px);
}

.sidebar-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    left: -350px;
    top: 0;
    width: 350px;
    height: 100%;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
    left: 0;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 80px 30px 30px;
    height: 100%;
    overflow-y: auto;
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid rgba(106, 90, 205, 0.5);
    padding-bottom: 15px;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(106, 90, 205, 0.2);
    border-color: rgba(106, 90, 205, 0.5);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(106, 90, 205, 0.3);
}

.sidebar-link-icon {
    font-size: 24px;
}

.sidebar-link-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}


/* Payment Page Styles */
.payment-details-section {
    max-width: 900px;
    margin: 0 auto;
}

.order-info {
    margin-bottom: 50px;
}

.info-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.info-card p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-card p span:first-child {
    font-weight: 700;
    color: #aaaaaa;
}

.info-card p span:last-child {
    font-weight: 700;
    color: #ffd700;
}

.payment-addresses {
    margin-bottom: 50px;
}

.addresses-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.address-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.address-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(106, 90, 205, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.address-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.network-label {
    font-size: 12px;
    color: #aaaaaa;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.address-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crypto-address {
    font-size: 14px;
    color: #ffffff;
    word-break: break-all;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: all 0.3s ease;
}

.crypto-address:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.5);
    color: #b19cd9;
    transform: scale(1.02);
}

.copy-btn {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f, #4a3c8f);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(74, 60, 143, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    width: 100%;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #5a4a9f, #6a5aaf, #5a4a9f);
    box-shadow: 
        0 6px 20px rgba(106, 90, 205, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.payment-confirmation-section {
    text-align: center;
    margin: 50px 0 30px;
}

.confirm-payment-btn {
    background: linear-gradient(135deg, #00b67a, #00a86b);
    border: none;
    border-radius: 8px;
    padding: 15px 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 182, 122, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.confirm-payment-btn:hover {
    background: linear-gradient(135deg, #00c88a, #00b87b);
    box-shadow: 
        0 6px 20px rgba(0, 182, 122, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.confirm-payment-btn:active {
    transform: translateY(0);
}

/* Confirmation Modal */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirmation-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.confirmation-modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b67a, #00a86b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    margin: 0 auto 30px;
    box-shadow: 0 8px 20px rgba(0, 182, 122, 0.4);
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-message {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.modal-instructions {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.instruction-item:last-child {
    margin-bottom: 0;
}

.instruction-number {
    font-size: 18px;
    font-weight: 700;
    color: #6a5acd;
    min-width: 25px;
}

.instruction-text {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
    flex: 1;
}

.service-name-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.service-copy-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
}

.service-name-display {
    font-size: 14px;
    color: #ffd700;
    font-weight: 600;
    flex: 1;
    word-break: break-word;
}

.copy-service-btn {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f);
    border: none;
    border-radius: 6px;
    padding: 6px 15px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 
        0 2px 8px rgba(74, 60, 143, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.copy-service-btn:hover {
    background: linear-gradient(135deg, #5a4a9f, #6a5aaf);
    box-shadow: 
        0 4px 12px rgba(106, 90, 205, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.modal-contact {
    margin-bottom: 30px;
}

.modal-contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #0088cc, #006699);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 136, 204, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modal-contact-link:hover {
    background: linear-gradient(135deg, #0099dd, #0077aa);
    box-shadow: 
        0 6px 20px rgba(0, 136, 204, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.modal-close-btn {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f, #4a3c8f);
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(74, 60, 143, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modal-close-btn:hover {
    background: linear-gradient(135deg, #5a4a9f, #6a5aaf, #5a4a9f);
    box-shadow: 
        0 6px 20px rgba(106, 90, 205, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.back-section {
    text-align: center;
    margin-top: 40px;
}

.back-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f, #4a3c8f);
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(74, 60, 143, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.back-btn:hover {
    background: linear-gradient(135deg, #5a4a9f, #6a5aaf, #5a4a9f);
    box-shadow: 
        0 6px 20px rgba(106, 90, 205, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .addresses-container {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .glowing-title {
        font-size: 42px;
    }
    
    .language-switcher {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 640px) {
    .mask {
        width: 35px;
        height: 42px;
        opacity: 0.1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .service-section {
        margin-bottom: 40px;
    }
    
    .addresses-container {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .glowing-title {
        font-size: 32px;
    }
    
    .container {
        padding: 20px 15px;
    }
    
    .top-bar {
        flex-direction: column;
        gap: 15px;
        padding: 10px 15px;
    }
    
    .language-switcher {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        margin-bottom: 0;
    }
    
    .auth-links-top {
        justify-content: center;
        width: 100%;
    }
    
    .info-card p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .sidebar {
        width: 100%;
        left: -100%;
    }
    
    .sidebar-toggle {
        left: 10px;
        top: 10px;
        padding: 10px 8px;
    }
    
    .sidebar-toggle span {
        width: 20px;
    }
    
    .preview-modal-content {
        padding: 20px;
        max-width: 95%;
    }
    
    .preview-modal-title {
        font-size: 20px;
    }
    
    .watermark {
        font-size: 24px;
        letter-spacing: 2px;
        color: rgba(255, 0, 0, 0.35);
    }
    
    .watermark-1 {
        top: 15%;
        left: 15%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    
    .watermark-2 {
        top: 15%;
        right: 15%;
        transform: translate(50%, -50%) rotate(-45deg);
    }
    
    .watermark-3 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    
    .watermark-4 {
        bottom: 15%;
        left: 15%;
        transform: translate(-50%, 50%) rotate(-45deg);
    }
    
    .watermark-5 {
        bottom: 15%;
        right: 15%;
        transform: translate(50%, 50%) rotate(-45deg);
    }
    
    .preview-note {
        font-size: 12px;
        padding: 10px;
    }
    
    .preview-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .preview-nav-prev {
        left: -20px;
    }
    
    .preview-nav-next {
        right: -20px;
    }
    
    .preview-image-counter {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-card {
        padding: 20px;
    }
    
    .tracking-info {
        grid-template-columns: 1fr;
    }
}

/* Auth Section Styles */
.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 40px 20px;
}

.auth-card {
    background: rgba(20, 20, 30, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(106, 90, 205, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: cardEntrance 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(106, 90, 205, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(106, 90, 205, 0.4),
        0 0 0 1px rgba(106, 90, 205, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #6a5acd, #4169e1, #9370db);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(106, 90, 205, 0.5);
    position: relative;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: #6a5acd;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group input:focus {
    border-color: rgba(106, 90, 205, 0.6);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(106, 90, 205, 0.3),
        inset 0 0 0 1px rgba(106, 90, 205, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: #cccccc;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.toggle-password:hover {
    color: #6a5acd;
    background: rgba(106, 90, 205, 0.2);
    transform: scale(1.1);
}

.form-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 8px;
    display: none;
    animation: errorShake 0.5s ease;
    font-weight: 500;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.form-message {
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    animation: messageSlide 0.4s ease;
    display: block;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0 20px;
    margin: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.form-message.error,
.form-message.success {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    padding: 15px 20px;
    margin-top: 10px;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: rgba(0, 182, 122, 0.2);
    border: 1px solid rgba(0, 182, 122, 0.5);
    color: #00b67a;
    box-shadow: 0 0 20px rgba(0, 182, 122, 0.3);
}

.form-message.error {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.5);
    color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-submit-btn {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f, #6a5aaf);
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(74, 60, 143, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.auth-submit-btn::before {
    content: '';
    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.5s ease;
}

.auth-submit-btn:hover::before {
    left: 100%;
}

.auth-submit-btn:hover {
    background: linear-gradient(135deg, #5a4a9f, #6a5aaf, #7a5abf);
    box-shadow: 
        0 12px 35px rgba(106, 90, 205, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.auth-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(106, 90, 205, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 300;
}

.auth-footer a {
    color: #6a5acd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.auth-footer a:hover {
    color: #9370db;
    border-bottom-color: #9370db;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
    transform: translateY(-2px);
}

/* Checkbox Group Styles */
.checkbox-group {
    margin: 15px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 50px;
    height: 26px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f);
    border-color: rgba(106, 90, 205, 0.6);
    box-shadow: 0 0 15px rgba(106, 90, 205, 0.4);
}

.checkbox-label input[type="checkbox"]::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.checkbox-label input[type="checkbox"]:checked::before {
    left: 26px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: rgba(106, 90, 205, 0.5);
}

.checkbox-label input[type="checkbox"]:checked:hover {
    box-shadow: 0 0 20px rgba(106, 90, 205, 0.6);
}

.checkbox-label span {
    color: #cccccc;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.checkbox-label:hover span {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

/* Admin Section Styles */
.admin-section {
    padding: 40px 20px;
}

.admin-dashboard {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6a5acd, #4169e1, #9370db);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(106, 90, 205, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(106, 90, 205, 0.3);
}

.stat-icon {
    font-size: 48px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.2), rgba(65, 105, 225, 0.2));
    border-radius: 15px;
    border: 1px solid rgba(106, 90, 205, 0.3);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.admin-card {
    background: rgba(20, 20, 30, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(106, 90, 205, 0.5);
    text-shadow: 0 0 15px rgba(106, 90, 205, 0.5);
}

.activity-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 20px;
    color: #cccccc;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(106, 90, 205, 0.2);
    border-color: rgba(106, 90, 205, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f);
    border-color: rgba(106, 90, 205, 0.8);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(74, 60, 143, 0.4);
}

.activity-log {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.activity-log::-webkit-scrollbar {
    width: 8px;
}

.activity-log::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.activity-log::-webkit-scrollbar-thumb {
    background: rgba(106, 90, 205, 0.5);
    border-radius: 4px;
}

.activity-log::-webkit-scrollbar-thumb:hover {
    background: rgba(106, 90, 205, 0.7);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(106, 90, 205, 0.1);
    border-color: rgba(106, 90, 205, 0.3);
    transform: translateX(5px);
}

.activity-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(106, 90, 205, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.activity-time {
    color: #aaaaaa;
    font-size: 12px;
    font-weight: 300;
}

.no-activity {
    text-align: center;
    color: #666666;
    font-size: 14px;
    padding: 40px 20px;
    font-style: italic;
}

.users-list, .orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-item, .order-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.user-item:hover, .order-item:hover {
    background: rgba(106, 90, 205, 0.1);
    border-color: rgba(106, 90, 205, 0.3);
    transform: translateX(5px);
}

.user-username, .order-service {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(106, 90, 205, 0.5);
}

.user-details, .order-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #aaaaaa;
}

.user-details span, .order-details span {
    display: flex;
}

/* Profile Page Styles */
.profile-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar {
    font-size: 64px;
    margin-bottom: 15px;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-username {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.balance-section {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: rgba(74, 60, 143, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-title {
    font-size: 18px;
    color: #aaaaaa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-amount {
    font-size: 48px;
    font-weight: 900;
    color: #00b67a;
    text-shadow: 0 0 20px rgba(0, 182, 122, 0.5);
    margin: 0;
}

.topup-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.topup-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-actions {
    margin-top: 30px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 182, 122, 0.5);
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.toast-notification.toast-show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.toast-notification.toast-success {
    border-color: rgba(0, 182, 122, 0.5);
    background: rgba(0, 182, 122, 0.1);
}

.toast-notification.toast-error {
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(255, 107, 107, 0.1);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    font-size: 24px;
    font-weight: bold;
    color: #00b67a;
}

.toast-notification.toast-error .toast-icon {
    color: #ff6b6b;
}

.toast-message {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    flex: 1;
}

/* Responsive for Profile */
@media (max-width: 640px) {
    .profile-avatar {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 48px;
    }
    
    .profile-username {
        font-size: 24px;
    }
    
    .balance-amount {
        font-size: 36px;
    }
    
    .toast-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .toast-notification.toast-show {
        transform: translateX(0);
    }
}

/* Topup Page Styles */
.topup-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topup-amount-title {
    font-size: 18px;
    color: #aaaaaa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.topup-amount-display {
    font-size: 48px;
    font-weight: 900;
    color: #00b67a;
    text-shadow: 0 0 20px rgba(0, 182, 122, 0.5);
    margin: 0;
}

.payment-methods {
    margin: 30px 0;
}

.payment-methods-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-method-card {
    background: rgba(74, 60, 143, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    background: rgba(74, 60, 143, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.payment-method-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.payment-method-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.payment-method-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.payment-method-icon.btc-icon {
    background: transparent;
}

.payment-method-icon.ltc-icon {
    background: transparent;
}

.payment-method-icon.usdt-icon {
    background: transparent;
}

.payment-method-icon.eth-icon {
    background: transparent;
}

.payment-method-name {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.payment-method-details {
    margin-top: 15px;
}

.crypto-amount {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crypto-amount-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 5px;
}

.crypto-amount-input {
    flex: 1;
    background: rgba(0, 182, 122, 0.1);
    border: 1px solid rgba(0, 182, 122, 0.3);
    border-radius: 8px;
    padding: 12px 15px;
    color: #00b67a;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    text-align: right;
    min-height: 44px;
    box-sizing: border-box;
}

.crypto-amount-input:focus {
    outline: none;
    border-color: rgba(0, 182, 122, 0.5);
    box-shadow: 0 0 10px rgba(0, 182, 122, 0.2);
}

.crypto-currency {
    font-size: 16px;
    font-weight: 700;
    color: #00b67a;
    min-width: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.crypto-rate {
    display: block;
    color: #aaaaaa;
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
}

.crypto-address {
    margin-bottom: 10px;
}

.crypto-label {
    display: block;
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 8px;
}

.crypto-address-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.crypto-address-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    min-height: 44px;
    box-sizing: border-box;
}

.crypto-address-input:focus {
    outline: none;
    border-color: rgba(0, 182, 122, 0.5);
}

.copy-btn {
    background: linear-gradient(135deg, #4a3c8f, #5a4a9f);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 44px;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #5a4a9f, #6a5aaf);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 60, 143, 0.4);
}

.payment-instructions {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instructions-title {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructions-list {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
}

.instructions-list li {
    margin-bottom: 10px;
}

.payment-actions {
    margin-top: 30px;
    text-align: center;
}

/* Responsive for Topup */
@media (max-width: 640px) {
    .topup-amount-display {
        font-size: 36px;
    }
    
    .crypto-amount-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .crypto-address-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-btn {
        width: 44px;
        min-width: 44px;
    }
    
    .crypto-currency {
        justify-content: flex-start;
        padding: 12px 15px;
        background: rgba(0, 182, 122, 0.1);
        border: 1px solid rgba(0, 182, 122, 0.3);
        border-radius: 8px;
        min-height: 44px;
    }
    
    .payment-method-icon {
        font-size: 24px;
    }
    
    .payment-method-name {
        font-size: 16px;
    }
}

.monitoring-status {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 182, 122, 0.1);
    border: 1px solid rgba(0, 182, 122, 0.3);
    border-radius: 8px;
    text-align: center;
}

.monitoring-status p {
    margin: 0;
    color: #00b67a;
    font-size: 14px;
}

.monitoring-status small {
    display: block;
    margin-top: 5px;
    color: #aaaaaa;
    font-size: 12px;
}
    align-items: center;
    gap: 5px;
}

/* Tracking Info Styles */
.tracking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tracking-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tracking-label {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tracking-value {
    font-size: 13px;
    color: #cccccc;
    font-weight: 500;
    word-break: break-all;
}

/* Admin Login Modal */
.admin-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.admin-login-modal-content {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-login-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #6a5acd, #4169e1, #9370db);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(106, 90, 205, 0.5);
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Payment Methods Section */
.payment-methods-section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.payment-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.payment-method-btn {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.2));
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 12px;
    padding: 20px 40px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.payment-method-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.payment-method-btn:hover::before {
    left: 100%;
}

.payment-method-btn:hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4), rgba(75, 0, 130, 0.4));
    border-color: rgba(138, 43, 226, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.payment-method-btn:active {
    transform: translateY(-2px);
}

.crypto-icon {
    font-size: 32px;
    font-weight: bold;
}

.crypto-name {
    font-size: 16px;
    letter-spacing: 1px;
}

/* Payment methods inside service cards */
.service-payment-methods {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card .payment-method-btn {
    padding: 10px 16px;
    min-width: 60px;
    font-size: 14px;
    flex: 1;
    max-width: calc(25% - 6px);
}

.service-card .crypto-icon {
    font-size: 20px;
}

.service-card .crypto-name {
    font-size: 12px;
}

/* Payment Address Modal */
.payment-address-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-address-modal.active {
    display: flex;
    opacity: 1;
}

.payment-address-modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(30, 30, 50, 0.95));
    border: 2px solid rgba(138, 43, 226, 0.5);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(138, 43, 226, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.payment-address-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-address-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.payment-address-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #6a5acd, #4169e1, #9370db);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.payment-address-display {
    margin-bottom: 20px;
}

.payment-address-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-address-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    padding: 15px;
}

.payment-address-text {
    flex: 1;
    font-size: 14px;
    color: #ffffff;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    margin: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.payment-address-text:hover {
    background: rgba(138, 43, 226, 0.2);
    color: #b19cd9;
}

.payment-address-copy-btn {
    background: linear-gradient(135deg, #00b67a, #00a86b);
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.payment-address-copy-btn:hover {
    background: linear-gradient(135deg, #00a86b, #00995c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 182, 122, 0.4);
}

.payment-address-network {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-buttons-container {
        gap: 15px;
    }
    
    .payment-method-btn {
        padding: 15px 30px;
        min-width: 100px;
        font-size: 16px;
    }
    
    .crypto-icon {
        font-size: 28px;
    }
    
    .payment-address-modal-content {
        padding: 30px 20px;
    }
    
    .payment-address-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .payment-address-copy-btn {
        width: 100%;
    }
}


