.brat-different-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.bfg-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 32px 20px;
}

.bfg-main-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.bfg-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a4a4a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.bfg-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.brat-different-header {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #8ACE00 0%, #A1E01A 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
}

.brat-different-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 10px 0;
    text-transform: lowercase;
}

.brat-different-subtitle {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.brat-different-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .brat-different-grid {
        grid-template-columns: 1fr;
    }
}

.brat-different-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
}

.brat-different-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brat-different-icon {
    font-size: 1.4rem;
}

/* Text Input Section */
.brat-different-text-input {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    background: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.brat-different-text-input:focus {
    outline: none;
    border-color: #8ACE00;
    box-shadow: 0 0 0 3px rgba(138, 206, 0, 0.1);
}

.brat-different-char-count {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
    text-align: right;
}

/* Dimensions Section */
.brat-different-dimensions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.brat-different-dimension-group {
    display: flex;
    flex-direction: column;
}

.brat-different-dimension-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.brat-different-dimension-input {
    padding: 12px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.brat-different-dimension-input:focus {
    outline: none;
    border-color: #8ACE00;
    box-shadow: 0 0 0 3px rgba(138, 206, 0, 0.1);
}

/* Colors Section */
.brat-different-color-section {
    margin-bottom: 25px;
}

.brat-different-color-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.brat-different-color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.brat-different-color-btn {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.brat-different-color-btn:hover {
    transform: scale(1.1);
}

.brat-different-color-btn.active {
    border-color: #333;
    transform: scale(1.2);
}

.brat-different-color-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.brat-different-custom-color {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.brat-different-color-picker {
    width: 50px;
    height: 50px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    cursor: pointer;
}

/* Border Section */
.brat-different-border-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.brat-different-border-group {
    display: flex;
    flex-direction: column;
}

.brat-different-border-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.brat-different-range-input {
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #dee2e6;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

.brat-different-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #8ACE00;
    border-radius: 50%;
    cursor: pointer;
}

.brat-different-range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #8ACE00;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.brat-different-select {
    padding: 10px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    font-weight: 600;
}

.brat-different-select:focus {
    outline: none;
    border-color: #8ACE00;
}

/* Gradient Section */
.brat-different-gradient-presets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.brat-different-gradient-btn {
    height: 60px;
    border: 3px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.brat-different-gradient-btn:hover {
    transform: scale(1.05);
}

.brat-different-gradient-btn.active {
    border-color: #333;
    transform: scale(1.1);
}

.brat-different-gradient-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    font-size: 1.2rem;
}

/* Action Buttons */
.brat-different-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.brat-different-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.brat-different-btn-primary {
    background: linear-gradient(135deg, #8ACE00 0%, #A1E01A 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 206, 0, 0.3);
}

.brat-different-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 206, 0, 0.4);
}

.brat-different-btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.brat-different-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.brat-different-btn-download {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8e53 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    display: none;
}

.brat-different-btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.brat-different-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Preview Section */
.brat-different-preview {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.brat-different-preview.empty {
    display: none;
}

.brat-different-canvas {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brat-different-preview-info {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Font Styles */
.brat-different-font-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.brat-different-font-btn {
    padding: 15px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.brat-different-font-btn:hover {
    border-color: #8ACE00;
    background: #f8fff0;
}

.brat-different-font-btn.active {
    border-color: #8ACE00;
    background: #8ACE00;
    color: white;
}

.brat-different-font-preview {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.brat-different-font-name {
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .brat-different-container {
        margin: 10px;
        padding: 20px;
    }
    
    .brat-different-title {
        font-size: 2rem;
    }
    
    .brat-different-dimensions {
        grid-template-columns: 1fr;
    }
    
    .brat-different-actions {
        flex-direction: column;
    }
    
    .brat-different-border-controls {
        grid-template-columns: 1fr;
    }
}