/*
Theme Name: WP Hackathon Workspace Theme
Theme URI: https://github.com/ispe-japan-el/wp-hackathon-theme
Author: Antigravity AI
Author URI: https://github.com/google-deepmind
Description: A premium, minimalist, and highly responsive landing page theme designed specifically for the WP Hackathon Workspace.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-hackathon-theme
*/

:root {
    --theme-bg: #f8fafc;
    --theme-text: #0f172a;
    --theme-primary: #0062e6;
    --theme-primary-hover: #004dc0;
    --theme-card-bg: rgba(255, 255, 255, 0.85);
    --theme-border: #e2e8f0;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--theme-bg);
    color: var(--theme-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 98, 230, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 210, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.theme-site-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.theme-site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--theme-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 24px;
}

.theme-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--theme-text);
}

.theme-logo-icon {
    font-size: 1.6rem;
}

.theme-logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--theme-primary) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.theme-site-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.theme-site-footer {
    background: var(--theme-bg);
    border-top: 1px solid var(--theme-border);
    padding: 24px;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

.theme-footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
