/*!
Theme Name: Vulkan Vegas Cyberpunk
Theme URI: #
Version: 1.0.0
Tested up to: 7.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: vulkan-vegas
*/

:root {
  --primary: #1A2D6B;
  --accent: #E31E24;
  --bg-dark: #050A1F;
  --bg-card: rgba(26, 45, 107, 0.4);
  --text-light: #FFFFFF;
  --text-dim: #A0B0E0;
  --token-radius-base: 999px;
  --layout-density: 100px;
  --shadow-neon: 0 0 15px rgba(227, 30, 36, 0.6);
  --font-main: 'Inter', sans-serif;
  --font-tech: 'Orbitron', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(26, 45, 107, 0.1) 50%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

/* Signature Element: Diagonal Light Streaks */
.diagonal-streak {
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: rotate(-45deg);
  opacity: 0.3;
  z-index: 0;
}

h2 {
  font-family: var(--font-tech);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  color: var(--text-light);
  text-shadow: 0 0 10px var(--accent);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: var(--layout-density) 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: var(--token-radius-base);
  font-family: var(--font-tech);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--accent);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: var(--primary);
}

/* Header */
.header {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: rgba(5, 10, 31, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(227, 30, 36, 0.3);
}

.logo {
  width: 180px;
  height: 50px;
  background: url('images/style-1.webp') no-repeat center;
  background-size: contain;
}

.header ul { display: flex; list-style: none; gap: 20px; }
.header ul li a { font-family: var(--font-tech); font-size: 0.9rem; }
.header ul li a:hover { color: var(--accent); }

.header-actions { display: flex; gap: 15px; align-items: center; }

/* Hero */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at center, #1A2D6B 0%, #050A1F 100%);
  overflow: hidden;
}

.hero-content { max-width: 700px; z-index: 2; }
.hero h1 { font-size: 4.5rem; font-family: var(--font-tech); line-height: 1; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: var(--text-dim); }

/* Cards */
.card-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
}

.card-neon {
  border: 2px solid var(--accent);
  box-shadow: inset 0 0 15px rgba(227, 30, 36, 0.2);
  padding: 30px;
  border-radius: var(--token-radius-base);
}

.card-cyber {
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
  padding: 30px;
}

/* Grid Masonry */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.masonry-item { grid-column: span 2; }
.masonry-item.wide { grid-column: span 3; }
.masonry-item.tall { grid-row: span 2; }

/* Horizontal Scroll */
.h-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.h-scroll::-webkit-scrollbar { display: none; }

/* Responsive */
@media (max-width: 768px) {
  .header ul { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-item, .masonry-item.wide { grid-column: span 2; }
  .layout-density { --layout-density: 50px; }
}

img {max-width: 100% !important;height: auto;display: block;}
html {overflow-x: hidden;}
.wp-block-image {margin: 20px auto;max-width: 100%;}
.wp-block-image img {margin: 0 auto;}
.logo img {max-height: 50px;}
table{margin-top: 20px;margin-bottom: 20px;}
.content-block p,.content-block h2, .content-block h3, .content-block ul, .content-block ol,
.content p,.content h2, .content h3, .content ul, .content ol{margin-top: 1em;margin-bottom: 1em;}
