/*
Theme Name: Kali Creator Theme
Theme URI: https://kalicreator.c-portal.ru
Author: SolBianc
Author URI: https://kalicreator.c-portal.ru
Description: Тема для портфолио kali creator
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kalicreator
*/
/* Здесь будет ваш основной CSS-код */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
    overflow: hidden;
    padding: 20px;
  }
  
  .center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    padding: 20px 0;
  }
  
  .horizontal-line {
    width: 100%;
    max-width: 763px;
    height: 2px;
    background-color: #ffffff;
    opacity: 0.6;
    margin: 12px 0;
  }
  
  .text-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 763px;
    margin: 8px 0;
  }
  
  .side-line {
    width: 1px;
    background-color: #ffffff;
    opacity: 0.4;
    flex-shrink: 0;
    margin: 0 20px;
  }
  
  .logo-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .logo-text-block img {
    display: block;
    width: 100%;
    max-width: 763px;
    height: auto;
  }
  
  .creator-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 160px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }
  
  .coming-soon {
    font-family: 'Space Mono', monospace;
    font-size: 20px;
    color: #ffffff;
    opacity: 0.5;
    margin-top: 40px;
    letter-spacing: 0.15em;
  }
  
  @media (max-width: 768px) {
    .horizontal-line { max-width: 90%; }
    .text-wrapper { max-width: 90%; }
    .side-line { margin: 0 12px; }
    .creator-text { font-size: 80px; }
    .coming-soon { font-size: 18px; margin-top: 30px; }
  }
  
  @media (max-width: 480px) {
    .creator-text { font-size: 50px; margin-top: 6px; }
    .side-line { margin: 0 8px; }
    .horizontal-line { margin: 8px 0; }
    .coming-soon { font-size: 16px; margin-top: 24px; }
  }