/*
Theme Name: WOCOO AI Subtitles
Theme URI: https://aisubtitles.wocoo.tv
Author: WOCOO
Author URI: https://wocoo.tv
Description: AI-powered subtitle translation service landing page
Version: 1.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wocoo-ai-subtitles
Tags: landing-page, business, translation
GitHub Theme URI: andrei-munte/wocoo_subtitles
GitHub Branch: main
*/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #18191A 0%, #0E0E0F 100%);
    color: #FFFFFF;
    min-height: 100vh;
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hide WordPress admin bar spacing on frontend */
body.admin-bar {
    margin-top: 0 !important;
}