/*
Theme Name: Blank2026
Theme URI: https://example.com/blank2026
Author: Antigravity Code Assistant
Author URI: https://google.com/
Description: A custom utility-first WordPress theme powered by Tailwind CSS and Redux Framework Options Panel.
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: blank2026
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Uwaga: Nie piszemy stylów tutaj. Wynikowy CSS z Tailwinda ląduje w /assets/css/main.css */

.test {
    background: #f2f;
}

@property --deg01 {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}

.box_01 {
  background: #142d4a;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* potrzebne jest ręczne pozycjonowanie top/left w custom_css*/
.box_01::before,
.box_01::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(
    from var(--deg01) at center,
    #00c3ff,
    #4d0199,
    #6300c6,
    #009dcd
  );
  border-radius: inherit;
  z-index: -2;
  padding: 2px;
  animation: auto_rotate 3s linear infinite;
}

.box_01::after {
  filter: blur(10px);
}

@keyframes auto_rotate {
  to {
    --deg01: 360deg;
  }
}