* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "clother", sans-serif;
}

body {
    background-color: #F2F2F2;
    color: #1F2937;
    line-height: 1.6;
    padding: 40px 20px;
    min-height: 100vh;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-title-steps {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1F2937;
  }

.calculator-title-steps-number {
      font-size: 1.5rem;
      font-weight: bold;
      margin-right: 8px;
      background-color: #ec4f82;
      color: #fff;
      border-radius: 50%;
      padding: 2px 8px;
      width: 24px;
      height: 24px;
      display: inline-block;
      text-align: center;
      line-height: 1.2;
      font-size: 1rem;
      font-weight: bold;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.logo-container > .logo-text {
    font-size: 0.9rem;
    color: #4B5563;
    text-align: center;
    margin: 0;
}

.logo {
    max-width: 100px;
    height: auto;
    display: inline-block;
}

.model-info p,
.cpu-value {
    color: #4B5563;
}

.model-info b {
    color: #1F2937;
}

.calculator-content {
    background-color: #F2F2F2;
}

.config-box {
    background: linear-gradient(135deg, rgba(179, 191, 255, 0.15), rgba(237, 78, 130, 0.15));
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.config-intro {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

.config-section {
    margin-bottom: 10px;
}

.section-header {
    margin-bottom: 8px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1F2937;
}

.section-description {
    font-size: 0.9rem;
    color: #4B5563;
    margin-bottom: 20px;
}

.section-divider {
    border: none;
    border-top: 1px solid #D1D5DB;
    margin: 30px 0;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider {
    flex: 1;
    height: 6px;
    background-color: #D1D5DB;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background-color: #B3BFFF;
    border-radius: 50%;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background-color: #B3BFFF;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.number-input {
    width: 80px;
    padding: 8px 12px;
    background-color: #ffffff;
    border: 1px solid #D1D5DB;
    color: #1F2937;
    font-size: 1rem;
    text-align: center;
    -moz-appearance: textfield;
}

.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input:focus {
    outline: 1px solid #B3BFFF;
    outline-offset: 2px;
}

.unit {
    color: #4B5563;
    font-size: 0.9rem;
}

.model-selector {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.model-selector--half .model-option {
    flex: 1 1 calc(50% - 6px);
}

.model-selector--half .model-label {
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.model-option {
    position: relative;
    cursor: pointer;
}

.model-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.model-label {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #9CA3AF;
    background-color: #ffffff;
    color: #1F2937;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    user-select: none;
}

.model-option input[type="radio"]:checked + .model-label {
    background-color: #B3BFFF;
    color: #1F2937;
    border-color: #B3BFFF;
}

.model-option:hover .model-label {
    background-color: #E5E7EB;
}

.model-option input[type="radio"]:checked + .model-label:hover {
    background-color: #9CA8FF;
    border-color: #9CA8FF;
    color: #1F2937;
}

.model-info-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.model-info-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-info-features li {
    font-size: 0.9rem;
    color: #4B5563;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.model-info-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ec4f82;
    font-weight: bold;
}

.price-display {
    text-align: right;
    margin-top: 20px;
}

.price-monthly {
    color: #4B5563;
    font-size: 1rem;
    margin-bottom: 8px;
}

.price-yearly {
    color: #1F2937;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.price-yearly strong {
    font-weight: bold;
}

.price-note {
    color: #6B7280;
    font-size: 0.85rem;
    margin-top: 8px;
}

.export-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .export-form {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .export-form-field {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .export-form .export-text-input {
        max-width: none;
    }
}

.export-form-field label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 6px;
}

.export-text-input {
    width: 100%;
    max-width: 320px;
    padding: 10px 12px;
    font-size: 1rem;
    background-color: #fff;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    box-sizing: border-box;
}

.export-text-input:focus {
    outline: 1px solid #B3BFFF;
    outline-offset: 2px;
}

.export-button {
    width: 100%;
    padding: 15px 30px;
    background-color: #B3BFFF;
    color: #1F2937;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0;
}

.export-button:hover:not(:disabled) {
    background-color: #9CA8FF;
}

.export-button:active:not(:disabled) {
    background-color: #8B96E8;
}

.export-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .input-wrapper {
        justify-content: flex-end;
    }
}

