.calculator-container:before {
            content: "";
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
            border-radius: 20px;
            z-index: -1;
        }
        
        .calculator-header {
            background: linear-gradient(90deg, var(--primary-color), var(--accent-pink));
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .calculator-header h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .calculator-header p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .calculator-body {
            padding: 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        @media (max-width: 768px) {
            .calculator-body {
                grid-template-columns: 1fr;
				padding: 0px;
            }
        }
        
        .input-section, .results-section {
            background: #262342;
			border-radius: 15px;
			padding: 25px;
        }
        
        .section-title {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--text-light);
            padding-bottom: 10px;
        }
        
        .input-group {
            margin-bottom: 20px;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-light);
        }
        
        select, input {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            color: var(--text-light);
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }

        /* Стили для выпадающего списка */
        select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2309fbd3' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 12px;
            padding-right: 40px;
        }

        /* Стили для опций в выпадающем списке */
        select option {
            background: var(--card-bg);
            color: var(--text-light);
            padding: 10px;
            border: none;
        }

        /* Стили для выпадающего списка при открытии */
        select:focus {
            border-color: var(--accent-cyan);
            outline: none;
            box-shadow: 0 0 0 3px rgba(9, 251, 211, 0.2);
        }

        /* Убираем стандартные стили для IE */
        select::-ms-expand {
            display: none;
        }

        /* Стили для активного элемента в списке */
        select option:checked {
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
            color: var(--dark-bg);
            font-weight: 600;
        }

        /* Стили при наведении на опции */
        select option:hover {
            background: var(--accent-cyan);
            color: var(--dark-bg);
        }
        
        input:focus {
            border-color: var(--accent-cyan);
            outline: none;
            box-shadow: 0 0 0 3px rgba(9, 251, 211, 0.2);
        }
        
        .result-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            border-left: 4px solid #6876df;
        }
        
        .result-label {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 5px;
        }
        
        .result-value {
            font-size: 22px;
            font-weight: 400;
            color: var(--accent-cyan);
        }
        
        .server-specs {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px dashed rgba(255, 255, 255, 0.2);
        }
        
        .spec-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .spec-label {
            font-weight: 600;
            color: var(--text-light);
        }
        
        .spec-value {
            color: var(--accent-cyan);
            font-weight: 600;
        }
        
        .highlight {
            border-left-color: var(--accent-pink);
        }
        
        .info-text {
            font-size: 14px;
            color: var(--text-gray);
            margin-top: 5px;
            font-style: italic;
        }
        
        
        .reset-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 10px;
            width: 100%;
        }
        
        .reset-btn:hover {
            background: linear-gradient(135deg, #3e59d3 0%, #552b7f 100%);
        }

        .efficiency-note {
            background: rgba(9, 251, 211, 0.1);
            border-left: 5px solid var(--accent-cyan);
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            font-size: 14px;
            color: var(--text-light);
        }
		
		.disclaimer {
            background: rgba(254, 83, 187, 0.1);
            border-left: 5px solid var(--accent-pink);
            padding: 20px;
            border-radius: 10px;
            margin-top: 25px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .disclaimer strong {
            color: var(--accent-pink);
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .disclaimer ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        .disclaimer li {
            margin-bottom: 5px;
            position: relative;
        }

        .disclaimer li:before {
            content: "•";
            color: var(--accent-cyan);
            position: absolute;
            left: -15px;
        }