// ============================================
// FILE 1: style.css (REQUIRED)
// ============================================
/*
Theme Name: Blank Theme
Theme URI: https://yoursite.com/
Author: Your Name
Author URI: https://yoursite.com/
Description: A completely blank WordPress theme for custom applications
Version: 1.0.0
License: GPL v2 or later
Text Domain: blank-theme
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

img {
    max-width: 100%;
    height: auto;
}