/*
Theme Name: DJ Tech Reviews
Description: Custom WordPress theme for DJ gear reviews and buying guides
Version: 1.0.0
Author: Your Name
*/

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

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

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

/* Header */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.site-title {
    font-size: 2rem;
    color: #3b82f6;
    text-decoration: none;
}

/* Main content */
main {
    padding: 2rem 0;
}

h1 {
    color: #1a202c;
    margin-bottom: 1rem;
}