/*
Theme Name: Fancy Power
Theme URI: https://fancy-power.com/
Author: Your Name or Company
Author URI: https://fancy-power.com/
Description: Custom WordPress theme based on original HTML layout.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fancy-power
Tags: custom-theme, one-page, landing
*/

@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap");
body {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  transition: transform 0.2s ease;
}

.platform-icon:hover {
  transform: scale(1.05);
}

.site-main {
  text-align: center;
  padding: 40px 20px;
}

.site-logo {
  width: 150px;
  margin: 0 auto 40px;
  display: block;
}

.site-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cover-image {
  max-width: 25%;
  height: auto;
  margin-bottom: 30px;
}

.platform-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
