  * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --orange: #ff8c42;
            --green: #52b788;
            --dark: #1b4332;
            --light: #d8f3dc;
            --bg: #f1faee;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            background: var(--bg);
            color: var(--dark);
            font-size: 14px;
        }
        
        /* НОВАЯ ШАПКА */
        .header {
            background: linear-gradient(90deg, var(--green) 0%, var(--dark) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .header-wrap {
            max-width: 1150px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        
        .logo-new {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .logo-badge {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .logo-info h1 {
            color: white;
            font-size: 22px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 3px;
        }
        
        .logo-info span {
            color: var(--light);
            font-size: 11px;
            font-weight: 600;
        }
        
        .main-nav {
            display: flex;
            gap: 8px;
        }
        
        .main-nav a {
            padding: 10px 20px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 7px;
        }
        
        .main-nav a:hover {
            background: rgba(255,255,255,0.15);
        }
        
        .main-nav a.active {
            background: white;
            color: var(--green);
        }
        
        .mob-toggle {
            display: none;
            background: rgba(255,255,255,0.2);
            border: 2px solid white;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 8px;
            font-size: 18px;
            cursor: pointer;
        }
        
        /* СТАТИСТИКА */
        .stats-bar {
            background: white;
            border-bottom: 3px solid var(--light);
            padding: 18px 0;
        }
        
        .stats-wrap {
            max-width: 1150px;
            margin: 0 auto;
            padding: 0 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .stat-card {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border: 2px solid var(--light);
            border-radius: 12px;
            padding: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(82,183,136,0.2);
            border-color: var(--green);
        }
        
        .stat-ico {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--orange), #ff6b35);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 4px 8px rgba(255,140,66,0.3);
        }
        
        .stat-card:nth-child(2) .stat-ico {
            background: linear-gradient(135deg, var(--green), #2d6a4f);
        }
        
        .stat-card:nth-child(3) .stat-ico {
            background: linear-gradient(135deg, #4cc9f0, #3a86ff);
        }
        
        .stat-card:nth-child(4) .stat-ico {
            background: linear-gradient(135deg, #7209b7, #560bad);
        }
        
        .stat-txt {
            flex: 1;
        }
        
        .stat-lbl {
            font-size: 10px;
            color: #6c757d;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 3px;
        }
        
        .stat-num {
            font-size: 17px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }
        
        .container {
            max-width: 1150px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: linear-gradient(180deg, var(--green), var(--dark));
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 15px;
                transform: translateX(-100%);
                transition: transform 0.3s;
                z-index: 999;
            }
            
            .main-nav.open {
                transform: translateX(0);
            }
            
            .main-nav a {
                width: 220px;
                padding: 15px;
                justify-content: center;
            }
            
            .mob-toggle {
                display: block;
                z-index: 1000;
            }
            
            .stats-wrap {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
        }
		
		.layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.panel {
    background: white;
    border: 2px solid var(--light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.panel-head {
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.panel-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 4px 10px rgba(255,140,66,0.3);
}

.panel-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.panel-subtitle {
    font-size: 12px;
    color: #6c757d;
}

.notice {
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    text-align: center;
    color: #856404;
    font-weight: 600;
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field input {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.field input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(82,183,136,0.1);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
}

.checkbox input {
    width: 18px;
    height: 18px;
}

.checkbox a {
    color: var(--orange);
    font-weight: 700;
}

.submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--green), #2d6a4f);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(82,183,136,0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(82,183,136,0.4);
}

.error-msg {
    background: #f8d7da;
    border: 2px solid #f5c2c7;
    color: #842029;
    padding: 11px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.tabs-nav {
    display: flex;
    background: var(--light);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 16px;
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    color: #6c757d;
    font-weight: 700;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tab-btn:hover {
    color: var(--dark);
}

.tab-btn.active {
    background: white;
    color: var(--green);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.cultures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.culture-box {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--light);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.culture-box:hover {
    border-color: var(--orange);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(255,140,66,0.2);
}

.culture-emoji {
    font-size: 32px;
    flex-shrink: 0;
}

.culture-info {
    flex: 1;
}

.culture-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.culture-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--orange);
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.benefit-item {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 2px solid #a5d6a7;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.benefit-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.benefit-text {
    font-size: 11px;
    color: #2e7d32;
    font-weight: 600;
    line-height: 1.4;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-block {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    border: 2px solid #ffe082;
    border-radius: 10px;
    padding: 14px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.info-heading {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.info-text {
    font-size: 13px;
    color: #5d4037;
    line-height: 1.5;
    font-weight: 600;
}

.activities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activity-panel {
    background: white;
    border: 2px solid var(--light);
    border-radius: 12px;
    padding: 18px;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light);
}

.activity-ico {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.activity-panel:nth-child(2) .activity-ico {
    background: linear-gradient(135deg, var(--green), #2d6a4f);
}

.activity-panel:nth-child(3) .activity-ico {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.activity-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
}

.activity-row {
    background: #f8f9fa;
    border: 1px solid var(--light);
    border-radius: 6px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.activity-row:hover {
    background: var(--light);
    transform: translateX(3px);
}

.activity-user {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    font-family: monospace;
}

.activity-sum {
    font-size: 13px;
    font-weight: 800;
    color: var(--green);
}

.empty {
    text-align: center;
    padding: 35px 20px;
    color: #adb5bd;
}

.empty-ico {
    font-size: 42px;
    margin-bottom: 10px;
    opacity: 0.4;
}

.empty-txt {
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .panel:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    .activities {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .layout {
        grid-template-columns: 1fr;
    }
    
    .panel:nth-child(3) {
        grid-column: auto;
    }
    
    /* Блоки в 2 столбика для мобильной версии */
    .cultures-grid,
    .benefits {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    /* Уменьшенные иконки для культур */
    .culture-emoji {
        font-size: 24px;
    }
    
    .culture-box {
        padding: 10px;
        gap: 8px;
    }
    
    .culture-name {
        font-size: 12px;
    }
    
    .culture-price {
        font-size: 14px;
    }
    
    /* Уменьшенные иконки для преимуществ */
    .benefit-icon {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .benefit-item {
        padding: 10px;
    }
    
    .benefit-title {
        font-size: 12px;
    }
    
    .benefit-text {
        font-size: 10px;
    }
    
    /* Блоки информации в 2 столбика */
    .info-blocks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .info-block {
        padding: 10px;
    }
    
    /* Уменьшенные иконки для информации */
    .info-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .info-heading {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .info-text {
        font-size: 11px;
        line-height: 1.4;
    }
}
.footer-section {
    margin-top: 30px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a3a2e 100%);
    padding: 20px 0 15px;
}

.footer-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-about h3 {
    color: white;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-block h4 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer-copy strong {
    color: var(--orange);
    font-weight: 800;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-badge {
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
	max-width: 110px;
}

.user-btn-tg {
	max-width: 50px;
	}
	
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.terms-page {
    max-width: 1150px;
    margin: 0 auto;
    padding: 30px 20px;
}

.terms-header {
    background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 35px;
    box-shadow: 0 8px 25px rgba(82,183,136,0.25);
}

.terms-icon {
    font-size: 60px;
    color: white;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.terms-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.terms-subtitle {
    font-size: 16px;
    color: var(--light);
    font-weight: 600;
}

.terms-content {
    background: white;
    border: 2px solid var(--light);
    border-radius: 14px;
    padding: 45px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading::before {
    content: '';
    width: 6px;
    height: 32px;
    background: linear-gradient(180deg, var(--orange), var(--green));
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(255,140,66,0.4);
}

.section-text {
    color: #495057;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.section-text:last-child {
    margin-bottom: 0;
}

.section-text strong {
    color: var(--dark);
    font-weight: 700;
}

.highlight-text {
    color: var(--orange);
    font-weight: 700;
}

.rules-list {
    margin-top: 16px;
    padding-left: 0;
    list-style: none;
}

.rules-list li {
    color: #495057;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid var(--green);
    border-radius: 8px;
    transition: all 0.3s;
}

.rules-list li:hover {
    background: var(--light);
    border-left-width: 6px;
    transform: translateX(6px);
    box-shadow: 0 3px 10px rgba(82,183,136,0.15);
}

.warning-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 3px solid var(--orange);
    border-left-width: 8px;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(255,140,66,0.2);
}

.warning-icon {
    font-size: 40px;
    color: var(--orange);
    flex-shrink: 0;
}

.warning-content {
    flex: 1;
}

.warning-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.warning-text {
    color: #5d4037;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
}

@media (max-width: 768px) {
    .terms-page {
        padding: 20px 15px;
    }
    
    .terms-header {
        padding: 35px 25px;
    }
    
    .terms-icon {
        font-size: 48px;
    }
    
    .terms-title {
        font-size: 28px;
    }
    
    .terms-content {
        padding: 30px 20px;
    }
    
    .section-heading {
        font-size: 19px;
    }
    
    .section-text,
    .rules-list li {
        font-size: 14px;
    }
    
    .warning-box {
        padding: 25px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .warning-icon {
        font-size: 36px;
    }
}
.help-page {
    max-width: 1150px;
    margin: 0 auto;
    padding: 30px 20px;
}

.help-header {
    background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 35px;
    box-shadow: 0 8px 25px rgba(82,183,136,0.25);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.help-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.help-subtitle {
    font-size: 16px;
    color: var(--light);
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.contact-card {
    background: white;
    border: 2px solid var(--light);
    border-radius: 14px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: 0 10px 30px rgba(82,183,136,0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 6px 18px rgba(255,140,66,0.35);
}

.contact-card:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, var(--green), #2d6a4f);
}

.contact-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.contact-link {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--green), #2d6a4f);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(82,183,136,0.3);
}

.contact-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(82,183,136,0.4);
    text-decoration: none;
    color: white;
}

.faq-section {
    background: white;
    border: 2px solid var(--light);
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--light);
}

.faq-header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.faq-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
}

.faq-item {
    margin-bottom: 22px;
    padding: 22px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 5px solid var(--green);
    border-radius: 10px;
    transition: all 0.3s;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    background: var(--light);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(82,183,136,0.15);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.faq-question-icon {
    color: var(--orange);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-answer {
    color: #495057;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .help-page {
        padding: 20px 15px;
    }
    
    .help-header {
        padding: 35px 25px;
    }
    
    .help-icon {
        width: 65px;
        height: 65px;
        font-size: 32px;
    }
    
    .help-title {
        font-size: 28px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 25px;
    }
    
    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-header h3 {
        font-size: 22px;
    }
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.stats-header {
    background: linear-gradient(135deg, var(--green), #2d6a4f);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 40px;
    color: white;
    box-shadow: 0 10px 40px rgba(82, 183, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.stats-header::before {
    content: '🌾';
    position: absolute;
    font-size: 200px;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stats-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.stats-header p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.chart-card {
    background: white;
    border: 2px solid var(--light);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.chart-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.chart-wrapper {
    position: relative;
    height: 350px;
}

@media (max-width: 768px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-card {
        padding: 15px;
    }
    
    .chart-wrapper {
        height: 300px;
    }
    
    .stats-header {
        padding: 25px 15px;
    }
    
    .stats-header h1 {
        font-size: 24px;
    }
    
    .stats-container {
        padding: 10px;
    }
}
.calc-pg { max-width: 1200px; margin: 20px auto; padding: 15px; }
.calc-pg h1 { background: linear-gradient(135deg, #52b788, #2d6a4f); color: white; padding: 20px; border-radius: 10px; text-align: center; font-size: 26px; margin-bottom: 20px; }
.calc-pg .table-wrap { overflow-x: auto; margin-bottom: 20px; }
.calc-pg table { width: 100%; background: white; border-radius: 10px; font-size: 14px; border-collapse: collapse; min-width: 600px; }
.calc-pg th { background: #52b788; color: white; padding: 10px 8px; text-align: left; font-size: 12px; }
.calc-pg td { padding: 8px; border-bottom: 1px solid #e8f5e9; }
.calc-pg tr:hover { background: #f8fdf9; }
.calc-pg .box { background: white; border-radius: 10px; padding: 20px; }
.calc-pg .box b { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: #2d3436; }
.calc-pg select { width: 100%; padding: 10px; margin-bottom: 15px; font-size: 15px; border: 2px solid #e8f5e9; border-radius: 8px; }
.calc-pg input[type="range"] { width: 100%; height: 6px; background: #e8f5e9; outline: none; -webkit-appearance: none; margin-bottom: 20px; border-radius: 5px; }
.calc-pg input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #52b788; cursor: pointer; }
.calc-pg input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #52b788; cursor: pointer; border: none; }
.calc-pg .res { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.calc-pg .card { background: #e8f5e9; padding: 15px 10px; border-radius: 8px; text-align: center; border: 2px solid #52b788; }
.calc-pg .card b { display: block; font-size: 10px; color: #7f8c8d; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.calc-pg .card span { font-size: 20px; font-weight: 800; color: #52b788; }
@media (max-width: 768px) { .calc-pg .res { grid-template-columns: repeat(3, 1fr); } }
.farm-decorations-right {
    position: fixed;
    top: 180px;
    right: 30px;
    width: 80px;
    bottom: 190px;
    z-index: 998;
    pointer-events: none;
    overflow: hidden;
}

/* СОЛНЦЕ */
.farm-sun {
    position: absolute;
    top: 20px;
    left: 15px;
    font-size: 40px;
    animation: sunSpin 15s linear infinite;
    filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.4));
}

@keyframes sunSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ОБЛАКА */
.farm-cloud {
    position: absolute;
    font-size: 28px;
    opacity: 0.6;
    animation: cloudDrift 18s ease-in-out infinite;
}

.fc-1 {
    top: 60px;
    left: 5px;
    animation-delay: 0s;
}

.fc-2 {
    top: 120px;
    left: 20px;
    font-size: 24px;
    animation-delay: 6s;
}

.fc-3 {
    top: 180px;
    left: 10px;
    font-size: 30px;
    animation-delay: 12s;
}

@keyframes cloudDrift {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(15px);
    }
}

/* ОВОЩИ РАСТУТ */
.farm-veggie {
    position: absolute;
    font-size: 26px;
    animation: vegGrow 4s ease-in-out infinite;
}

.fv-1 {
    top: 240px;
    left: 10px;
    animation-delay: 0s;
}

.fv-2 {
    top: 310px;
    left: 30px;
    animation-delay: 1s;
}

.fv-3 {
    top: 380px;
    left: 15px;
    animation-delay: 2s;
}

.fv-4 {
    top: 450px;
    left: 25px;
    animation-delay: 3s;
}

@keyframes vegGrow {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.35);
    }
}

/* СКРЫВАЕМ НА ПЛАНШЕТАХ И МОБИЛКАХ */
@media (max-width: 1024px) {
    .farm-decorations-right {
        display: none !important;
    }
}
* { box-sizing: border-box; }

.farm-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px;
	background: white;
    border: 2px solid var(--light);
    border-radius: 14px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* СООБЩЕНИЯ */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid;
}

.alert.success {
    background: #d1f2eb;
    color: #0f5132;
    border-color: #badbcc;
}

.alert.error {
    background: #f8d7da;
    color: #842029;
    border-color: #f5c2c7;
}

.alert.warning {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeeba;
}

/* СЕКЦИИ */
.section {
    background: white;
    border: 2px solid var(--light);
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* СТАТИСТИКА ДАШБОРДА */
.farm-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.farm-stat-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--light);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.farm-stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.farm-stat-card:nth-child(2) .farm-stat-icon {
    background: linear-gradient(135deg, var(--green), #2d6a4f);
}

.farm-stat-card:nth-child(3) .farm-stat-icon {
    background: linear-gradient(135deg, #4cc9f0, #3a86ff);
}

.farm-stat-content {
    flex: 1;
}

.farm-stat-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.farm-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

/* СПОЙЛЕР */
.spoiler-btn {
    width: 100%;
    padding: 10px 15px;
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.spoiler-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,140,66,0.4);
}

.spoiler-arrow {
    font-size: 18px;
    transition: transform 0.3s;
}

.spoiler-btn.active .spoiler-arrow {
    transform: rotate(180deg);
}

.spoiler-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.spoiler-content.active {
    max-height: 2000px;
}

.spoiler-inner {
    padding: 20px;
    background: var(--light);
    border-radius: 10px;
    margin-bottom: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.info-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 8px 0;
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid #f8f9fa;
}

.info-box li:last-child {
    border-bottom: none;
}

.spoiler-text {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 12px;
}

.spoiler-text strong {
    color: var(--green);
    font-weight: 800;
}

/* СЕТКА КУЛЬТУР */
.crops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.crop-card {
    background: white;
    border: 2px solid var(--light);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
}

.crop-card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: 0 8px 20px rgba(82,183,136,0.2);
}

.crop-emoji {
    font-size: 40px;
    margin-bottom: 10px;
}

.crop-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.crop-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px;
}

.crop-info {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 10px;
}

.btn-plant {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--green), #2d6a4f);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-plant:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(82,183,136,0.4);
}

/* МОИ КУЛЬТУРЫ */
.my-plants {
    display: grid;
    gap: 20px;
}

.plant-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--light);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.plant-item:hover {
    box-shadow: 0 6px 18px rgba(82,183,136,0.15);
}

.plant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.plant-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.plant-title-emoji {
    font-size: 30px;
}

.plant-status {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
}

.status-active {
    background: #d1f2eb;
    color: #0f5132;
}

.status-dead {
    background: #f8d7da;
    color: #842029;
}

.plant-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.stat {
    text-align: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--light);
}

.stat-label {
    font-size: 11px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--green);
}

/* ПРОГРЕСС БАР */
.progress {
    margin-bottom: 15px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.progress-bar {
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), #2d6a4f);
    border-radius: 6px;
    transition: width 0.3s;
}

/* ТАЙМЕРЫ */
.plant-timers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.plant-timer {
    padding: 12px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    text-align: center;
}

.plant-timer-label {
    font-size: 12px;
    color: #856404;
    font-weight: 700;
    margin-bottom: 5px;
}

.plant-timer-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

/* КНОПКИ ДЕЙСТВИЙ */
.plant-actions {
    display: flex;
    gap: 10px;
}

.plant-actions form {
    flex: 1;
}

.action-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-water {
    background: linear-gradient(135deg, #4cc9f0, #3a86ff);
    color: white;
}

.btn-water:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(76,201,240,0.4);
}

.btn-collect {
    background: linear-gradient(135deg, var(--orange), #ff6b35);
    color: white;
}

.btn-collect:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255,140,66,0.4);
}

/* ПУСТО */
.empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty p {
    font-size: 18px;
    color: #6c757d;
    font-weight: 600;
}

/* АДАПТИВ */
@media (max-width: 768px) {
    .farm-stats {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .crops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plant-stats {
        grid-template-columns: 1fr;
    }
    
    .plant-timers {
        grid-template-columns: 1fr;
    }
    
    .plant-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .crops-grid {
        grid-template-columns: 1fr;
    }
}
/* HEADER */
.refs-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.refs-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), #2d6a4f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 12px rgba(82,183,136,0.3);
}

.refs-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.refs-subtitle {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}

/* БОКОВОЕ МЕНЮ КАК НА ГЛАВНОЙ */
.sidebar {
    position: fixed;
    top: 105px;
    left: 15px;
    width: 160px;
    z-index: 999;
}

.nav-link {
    display: block;
    margin-bottom: 8px;
    padding: 12px 16px;
    background: white;
    border: 2px solid var(--light);
    border-radius: 10px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link:hover {
    background: var(--light);
    border-color: var(--green);
    transform: translateX(5px);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--green), #2d6a4f);
    border-color: var(--green);
    color: white;
    box-shadow: 0 4px 12px rgba(82,183,136,0.3);
}

.nav-link i {
    font-size: 16px;
}

.nav-link.logout-link {
    background: #fff5f5;
    border-color: #fccfd7;
    color: #dc3545;
}

.nav-link.logout-link:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

/* КОНТЕЙНЕР */
.container {
    margin-left: 160px;
    margin-right: 20px;
    margin-top: 20px;
    padding: 20px;
    max-width: 1200px;
}

/* МОБИЛКА */

/* ДЕСКТОП OVERRIDE - ВАРИАНТ 1 */
@media (min-width: 769px) {
    .sidebar {
        width: 75px !important;
        gap: 10px !important;
    }

    .nav-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        padding: 0 !important;
        height: 75px !important;
        border: 2px solid var(--light) !important;
        border-radius: 16px !important;
        margin-bottom: 10px !important;
    }

    .nav-link i {
        width: 40px !important;
        height: 40px !important;
        background: var(--light) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 19px !important;
    }

    .nav-link:hover {
        transform: translateX(8px) scale(1.05) !important;
    }

    .nav-link:hover i {
        background: var(--green) !important;
        color: white !important;
        transform: rotate(10deg) !important;
    }

    .nav-link.active {
        background: linear-gradient(135deg, var(--green), #2d6a4f) !important;
    }

    .nav-link.active i {
        background: rgba(255,255,255,0.2) !important;
        color: white !important;
    }

    .container {
        margin-left: 120px !important;
    }
}

@media (max-width: 768px) {
    .header-wrap {
        flex-direction: column;
        height: auto;
        padding: 12px 15px;
        gap: 10px;
    }
    
    .logo-info h1 {
        font-size: 18px;
    }
    
    .logo-badge {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }
    
    .user-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .user-btns {
        width: 100%;
        justify-content: space-between;
    }
    
    .user-btn {
        flex: 1;
        padding: 10px;
        font-size: 12px;
        justify-content: center;
    }
    
    .stats-bar {
        display: none;
    }
    
    .sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        display: flex;
        justify-content: space-around;
        background: white;
        border-top: 2px solid var(--light);
        padding: 8px 5px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 1001;
    }
    
    .nav-link {
        margin: 0;
        padding: 6px 4px;
        min-width: 55px;
        flex-direction: column;
        font-size: 10px;
        border: none;
        box-shadow: none;
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    .nav-link i {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .container {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 70px;
        padding: 15px;
    }
}

 .refs-header {
            background: white;
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .refs-icon {
            font-size: 50px;
        }
        .refs-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
        }
        .refs-subtitle {
            color: #666;
            margin-top: 5px;
        }
        .balance-card {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            padding: 15px 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .balance-label {
            font-size: 14px;
            opacity: 0.9;
        }
        .balance-value {
            font-size: 28px;
            font-weight: bold;
        }
 
        .crops-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        .crop-card {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            transition: transform 0.2s;
            cursor: pointer;
        }
        .crop-card:hover {
            transform: translateY(-5px);
        }
        .crop-emoji {
            font-size: 48px;
            display: block;
            margin-bottom: 10px;
        }
        .crop-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .crop-price {
            color: #4CAF50;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .crop-info {
            font-size: 12px;
            color: #666;
            margin-bottom: 15px;
        }
        .btn-plant {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
        }
        .btn-plant:hover {
            opacity: 0.9;
        }
        .plant-item {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
        }
        .plant-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .plant-title {
            font-size: 20px;
            font-weight: bold;
        }
        .plant-title-emoji {
            margin-right: 10px;
        }
        .plant-status {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        .status-active {
            background: #d4edda;
            color: #155724;
        }
        .status-withered {
            background: #f8d7da;
            color: #721c24;
        }
        .plant-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 15px;
        }
        .stat {
            text-align: center;
        }
        .stat-label {
            font-size: 12px;
            color: #666;
            margin-bottom: 5px;
        }
        .stat-value {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        .progress {
            margin-bottom: 15px;
        }
        .progress-label {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            margin-bottom: 5px;
        }
        .progress-bar {
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            height: 8px;
        }
        .progress-fill {
            background: linear-gradient(90deg, #667eea, #764ba2);
            height: 100%;
            transition: width 0.3s;
        }
        .timer-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 15px;
            padding: 10px;
            background: #e9ecef;
            border-radius: 10px;
        }
        .timer-box {
            text-align: center;
        }
        .timer-label {
            font-size: 11px;
            color: #666;
        }
        .timer-value {
            font-size: 14px;
            font-weight: bold;
            color: #333;
        }
        .plant-actions {
            display: flex;
            gap: 10px;
        }
        .action-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.2s;
        }
        .btn-water {
            background: #2196F3;
            color: white;
        }
        .btn-collect {
            background: #4CAF50;
            color: white;
        }
        .action-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .action-btn:hover:not(:disabled) {
            opacity: 0.8;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        .info-box {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
        }
        .info-box h3 {
            margin-bottom: 10px;
            color: #764ba2;
        }
        .info-box ul {
            padding-left: 20px;
        }
        .info-box li {
            margin-bottom: 5px;
        }
        .countdown {
            font-family: monospace;
            font-size: 16px;
            font-weight: bold;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .water-timer {
            color: #2196F3;
            animation: pulse 1s infinite;
        }
		.balance-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.balance-info {
    flex: 1;
}

.balance-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.balance-value {
    font-size: 32px;
    font-weight: bold;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.balance-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.balance-badge i {
    font-size: 20px;
}

.balance-value-mini {
    font-size: 18px;
    font-weight: bold;
}

.user-btns {
    display: flex;
    gap: 12px;
}

.user-btn {
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.user-btn-add {
    background: #4CAF50;
    color: white;
}

.user-btn-add:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.user-btn-out {
    background: #ff9800;
    color: white;
}

.user-btn-out:hover {
    background: #e68900;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .balance-card {
        flex-direction: column;
        text-align: center;
    }
    
    .user-actions {
        justify-content: center;
    }
}