/* ========================================
   MAIN RESPONSIVE CSS - CYBERK 2025
   ======================================== */

/* Import page-specific responsive styles */
@import url('./Home-res.css');

/* ========================================
   GLOBAL RESPONSIVE SETTINGS
   ======================================== */

/* Base responsive settings */
html, body {
  background-color: #000;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* Responsive container */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

