/*
Theme Name: Trópico Vince
Theme URI: https://tropicovince.com
Author: VIBECODE26
Author URI: https://vibecode26.com
Description: Um tema WordPress que recria a experiência nostálgica do Windows XP. Quando o usuário acessa o site, ele experimenta o boot, login e desktop do Windows XP com funcionalidades completas. Tema exclusivo Trópico Vince.
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tropico-vince-theme
Tags: retro, nostalgic, windows-xp, full-site, interactive, tropico-vince

Trópico Vince - Windows XP Experience WordPress Theme
Copyright (C) 2026 VIBECODE26

This theme is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

This theme is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/

/* 
========================================
  GLOBAL RESET & BASE STYLES
========================================
*/

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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

body {
    position: relative;
    background-color: #000;
}

/* 
========================================
  MAIN CONTAINER
========================================
*/

#xp-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
}

#xp-container > * {
    pointer-events: auto;
}

/* Prevent scroll on main page */
.xp-active {
    overflow: hidden !important;
}
