:root {
  --background: 0 0% 0%;
  --foreground: 0 0% 100%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 65%;
  --border: 0 0% 15%;
  --radius: 0.5rem;
}

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

@font-face {
  font-family: 'Söhne Breit';
  font-weight: 750;
  font-style: normal;
  src: url('fonts/sohne-breit-dreiviertelfett.woff2') format('woff2'),
       url('fonts/sohne-breit-dreiviertelfett.woff') format('woff');
  font-display: swap;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Söhne Breit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #000;
  color: hsl(var(--foreground));
  line-height: 1.5;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  animation: fadeIn 0.6s ease-out;
}

.logo {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 15px 36px rgba(0, 0, 0, 0.45));
  display: block;
}

.company-name {
  font-family: 'Söhne Breit', 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

@media (max-width: 768px) {
  .logo {
    width: 150px;
    height: 150px;
  }
  
  .company-name {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 120px;
    height: 120px;
  }
  
  .company-name {
    font-size: 2rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Import Space Mono font */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400&display=swap');

/* App container - full viewport with black background */
.app-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  padding: 4.5px;
}

/* Content area - main content with border radius */
.content-area {
  flex: 1;
  position: relative;
  background: hsl(var(--background));
  border-radius: 4.5px 4.5px 9px 9px;
  overflow: hidden;
}

/* Chin area - bottom section */
.chin-area {
  height: 30px;
  background: #000;
  display: flex;
  align-items: center;
}

/* Copyright text */
.copyright-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
}

.copyright-left {
  display: flex;
  align-items: center;
}

.copyright-right {
  display: flex;
  align-items: center;
  gap: 9px;
}

.copyright-text {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: hsl(var(--muted-foreground));
  opacity: 0.7;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.copyright-contact {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: hsl(var(--muted-foreground));
  text-decoration: underline;
  opacity: 0.7;
}

.copyright-contact:hover {
  opacity: 1;
}

/* Gradient Canvas Styles */
.gradient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}

/* Canvas Grid Styles */
.pixel-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: auto;
  background: transparent;
}



/* Ensure logo stays on top */
.container {
  position: relative;
  z-index: 10;
}

.logo-wrapper {
  cursor: grab;
  display: inline-block;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}


