/* Основные стили */
:root {
    --primary: #6c5ce7;
    --primary-dark: #5b4fd8;
    --secondary: #00cec9;
    --success: #00b894;
    --danger: #e17055;
    --warning: #fdcb6e;
    --dark: #2d3436;
    --light: #f9f9f9;
    --gray: #636e72;
    --border: #dfe6e9;
    
    --space-bg: #0f0f23;
    --space-primary: #00ff88;
    --space-secondary: #0088ff;
    --space-accent: #ff0088;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: var(--space-bg);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 136, 255, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--space-primary), var(--space-secondary));
    color: white;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-danger {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #00a085);
    color: white;
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Хедер */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 32px;
    color: var(--space-primary);
}

.logo h1, .logo h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 24px;
    background: linear-gradient(45deg, var(--space-primary), var(--space-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    color: var(--space-accent);
}

/* Главная страница */
.landing-page .main-header nav {
    display: flex;
    gap: 30px;
}

.landing-page .main-header nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.landing-page .main-header nav a:hover {
    color: var(--space-primary);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
    align-items: center;
}

.hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--space-primary), var(--space-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 32px;
    color: var(--space-primary);
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--space-primary);
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.hero-animation {
    position: relative;
}

.click-button-demo {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

.click-button-demo .button-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 136, 255, 0.1));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--space-primary);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(0, 255, 136, 0); }
}

.click-button-demo i {
    font-size: 80px;
    color: var(--space-primary);
    margin-bottom: 20px;
}

.click-button-demo .button-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--space-primary);
}

.coins-falling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.coins-falling i {
    position: absolute;
    font-size: 24px;
    color: gold;
    animation: fall linear infinite;
}

.coins-falling i:nth-child(1) {
    left: 20%;
    animation-duration: 2s;
    animation-delay: 0s;
}

.coins-falling i:nth-child(2) {
    left: 50%;
    animation-duration: 2.5s;
    animation-delay: 0.5s;
}

.coins-falling i:nth-child(3) {
    left: 80%;
    animation-duration: 3s;
    animation-delay: 1s;
}

@keyframes fall {
    0% {
        top: -50px;
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        top: 300px;
        opacity: 0;
        transform: rotate(360deg);
    }
}

/* Формы */
.auth-forms {
    max-width: 400px;
    margin: 0 auto 60px;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--space-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--space-primary);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.2);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox input[type="checkbox"] {
    width: auto;
}

.form-switch {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.form-switch a {
    color: var(--space-primary);
    text-decoration: none;
}

.form-switch a:hover {
    text-decoration: underline;
}

/* Секции */
.section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--space-primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--space-primary);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--space-primary), var(--space-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--space-primary);
}

/* Рейтинги */
.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--space-primary), var(--space-secondary));
    color: white;
    border-color: transparent;
}

.rating-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.rating-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.rating-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.rating-item:last-child {
    border-bottom: none;
}

.rating-position {
    width: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--space-primary);
}

.rating-email {
    flex: 1;
    font-size: 18px;
}

.rating-earnings {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--space-primary);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--space-primary);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Футер */
footer {
    margin-top: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--space-primary);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--space-primary);
}

.footer-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--warning);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Реклама */
.ad-banner {
    margin: 20px 0;
    text-align: center;
}

.ad-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.native-ad {
    margin: 40px 0;
    text-align: center;
}

.sidebar-ad {
    position: fixed;
    top: 450px;
    right: 20px;
    width: 300px;
    z-index: 100;
}

.popup-ad {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Личный кабинет */
.dashboard-page .container {
    max-width: 1400px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-email {
    color: rgba(255, 255, 255, 0.8);
}

.user-balance {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.balance-vers {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--space-primary);
}

.balance-rub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 30px;
}

/* Кнопка заработка */
.click-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.click-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.click-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--space-primary);
}

.rate-info {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--space-primary);
    border-radius: 10px;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    color: var(--space-primary);
}

.click-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.click-button {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 136, 255, 0.1));
    border: 4px solid var(--space-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.click-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
}

.click-button.holding {
    animation: pulse 1s infinite;
    border-color: var(--space-accent);
    background: linear-gradient(135deg, rgba(255, 0, 136, 0.1), rgba(0, 136, 255, 0.1));
}

.button-inner {
    text-align: center;
    z-index: 2;
}

.click-button i {
    font-size: 80px;
    color: var(--space-primary);
    margin-bottom: 20px;
}

.click-button.holding i {
    color: var(--space-accent);
}

.button-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--space-primary);
    margin-bottom: 10px;
}

.click-button.holding .button-text {
    color: var(--space-accent);
}

.earn-rate {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.progress-ring-circle {
    stroke-dasharray: 565;
    stroke-dashoffset: 565;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1s linear;
}

.click-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--space-primary);
}

.click-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.click-info i {
    color: var(--space-primary);
}

/* Статистика */
.stats-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.stats-panel h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--space-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--space-primary);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--space-primary), var(--space-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-content {
    flex: 1;
}

.stat-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 5px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--space-primary);
}

/* Реферальная система */
.referral-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.referral-panel h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--space-primary);
}

.referral-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.level {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.level-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--space-primary), var(--space-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.level-percent {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--space-primary);
    margin-bottom: 5px;
}

.level-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.referral-link label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.link-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.link-container input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
}

.btn-copy {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--space-primary), var(--space-secondary));
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    transform: scale(1.05);
}

.referral-stats {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Боковая панель */
.sidebar-panel > * {
    margin-bottom: 30px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.bonus-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--space-primary);
}

.bonus-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-amount i {
    font-size: 48px;
    color: gold;
}

.bonus-amount span {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: gold;
}

.bonus-claimed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-claimed i {
    font-size: 48px;
    color: var(--space-primary);
}

.bonus-claimed span {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--space-primary);
}

/* Магазин */
.shop-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-panel h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--space-primary);
}

.shop-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.shop-item:hover {
    border-color: var(--space-primary);
    transform: translateX(5px);
}

.item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--space-primary), var(--space-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 700;
    color: var(--space-primary);
    margin-bottom: 5px;
}

.item-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.item-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: gold;
}

.btn-buy {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--space-primary), var(--space-secondary));
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    transform: scale(1.05);
}

/* Вывод средств */
.withdrawal-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.withdrawal-panel h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--space-primary);
}

.withdrawal-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.withdrawal-form {
    margin-bottom: 30px;
}

.withdrawal-history h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--space-primary);
}

.withdrawal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.withdrawal-amount {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--space-primary);
}

.withdrawal-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-completed {
    background: rgba(0, 200, 83, 0.2);
    color: #00c853;
    border: 1px solid rgba(0, 200, 83, 0.3);
}

.status-rejected {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.withdrawal-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.no-data {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Алерты */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border-color: rgba(244, 67, 54, 0.3);
}

.alert-success {
    background: rgba(0, 200, 83, 0.2);
    color: #00c853;
    border-color: rgba(0, 200, 83, 0.3);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar-ad {
        position: static;
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-header nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .user-info {
        flex-direction: column;
        align-items: center;
    }
    
    .user-balance {
        align-items: center;
    }
    
    .click-stats {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .referral-levels {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}