.simple-brat-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    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;
}


.simple-brat-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #8ACE00;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.simple-brat-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.simple-brat-input-group {
    margin-bottom: 30px;
}

.simple-brat-text-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.2rem;
    border: 3px solid #e5e5e5;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

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

.simple-brat-text-input::placeholder {
    color: #aaa;
    font-weight: normal;
}

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

.simple-brat-generate-btn {
    background: linear-gradient(135deg, #8ACE00 0%, #A1E01A 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    box-shadow: 0 4px 15px rgba(138, 206, 0, 0.3);
    margin-bottom: 15px;
}

.simple-brat-download-btn {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8e53 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    display: none;
}

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

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

.simple-brat-generate-btn:active {
    transform: translateY(0);
}

.simple-brat-generate-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.simple-brat-canvas-container {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 12px;
    text-align: center;
}

.simple-brat-canvas-container.empty {
    display: none;
}

.simple-brat-canvas {
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.simple-brat-tips {
    margin-top: 30px;
    padding: 20px;
    background: #f0f8f0;
    border-radius: 12px;
    border-left: 4px solid #8ACE00;
}

.simple-brat-tips h3 {
    color: #8ACE00;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0;
}

.simple-brat-tips ul {
    text-align: left;
    color: #555;
    font-size: 0.9rem;
    margin: 0;
    padding-left: 20px;
}

.simple-brat-tips li {
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .simple-brat-container {
        margin: 20px;
        padding: 20px;
    }
    
    .simple-brat-title {
        font-size: 2rem;
    }
    
    .simple-brat-text-input {
        font-size: 1rem;
    }
    
    .simple-brat-generate-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}