    :root {
      --gap: 25px;
      --radius: 30px;
    }

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

    body {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--gap);
      width: calc(100vw - var(--gap));
      height: 100vh;
      overflow: hidden;
      font-family: 'Rubik', sans-serif;
      font-weight: 300;
    }

    .frame {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: var(--gap);
    }

    .row {
      display: grid;
      gap: var(--gap);
    }

    .top {
      grid-template-columns: 70% 30%;
    }

    .bottom {
      grid-template-columns: 30% 70%;
    }

    .box {
      border-radius: var(--radius);
      color: white;
      position: relative;
      overflow: hidden;
      padding: 20px;
    }

    /* Икона */
    .box .icon {
      position: absolute;
      top: 40px;
      left: 40px;
      font-size: 2rem;
      color: white;
    }

    /* Текст */
    .box .label {
      position: absolute;
      bottom: 35px;
      left: 40px;
      font-size: 2.0rem;
      width: 60%;
    }

    /* Копче */
    .box .arrow-btn {
      position: absolute;
      bottom: 33px;
      right: 37px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      text-decoration: none;
      color: white;
      transition: all 0.3s ease;
    }

    /* Hover ефект за копчињата */
    .heraldika .arrow-btn:hover {
      background: white;
      color: #434343;
    }
    .zname .arrow-btn:hover {
      background: white;
      color: #9a1e21;
    }
    .nadreden .arrow-btn:hover {
      background: white;
      color: #192644;
    }
    .dizajn .arrow-btn:hover {
      background: white;
      color: #a16d46;
    }

    .heraldika {
      background-color: #434343;
    }

    .zname {
      background-color: #9a1e21;
    }

    .nadreden {
      background: #192644;
    }

    .dizajn {
      background: #a16d46;
    }



/* МОБИЛЕН */

@media (max-width: 768px) {
  :root {
    --gap: 15px;
    --radius: 20px;
  }

  body {
    padding: var(--gap);
    width: 100vw;
    height: calc(100vh - var(--gap) *2);
  }

  .frame {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: var(--gap);
    align-items: stretch;
  }

  .row {
    display: contents;
  }

  /* Позиционирање на боксовите */
  .dizajn {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: stretch;
  }

  .zname {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
  }

  .nadreden {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
  }

  .heraldika {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: stretch;
  }

  .box {
    overflow: visible;
    padding: 20px;
    min-height: 120px;
    cursor: pointer; /* Покажува дека е кликабилно */
    transition: opacity 0.3s ease; /* Subtle tap ефект */
  }

  .box:active {
    opacity: 0.8; /* Ефект при допир */
  }

  .box .icon {
    top: 23px;
    left: 23px;
    font-size: 1.6rem;
  }

  .box .label {
    bottom: 23px;
    left: 23px;
    font-size: 1.4rem;
    width: auto;
    max-width: 70%;
    word-break: break-word;
  }

  /* Без копче */
  .box .arrow-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Невидливо */
    border-radius: var(--radius);
    opacity: 0; /* Комплетно невидливо, но кликабилно */
    z-index: 20;
    display: block; /* За да покрива */
    transition: none; /* Нема hover на мобилен */
  }

  .box .arrow-btn i {
    display: none;
  }

  /* Без hover */
  .box .arrow-btn:hover {
    background: transparent;
    color: inherit;
  }
}