 :root {
      /* --bg-main:    #1a1a1a; */
      --bg-panel:   #2a2a2a;
      --bg-element: #333; 
      --border:     #444;
      --border-btn: #555;
      --text:       #cccccc;
      --text-dim:   #aaa;
      --text-bright:#ffffff;
    }

    body {
      /* background: var(--bg-main); folosind custom */
		background-image: url("fundal_landing/space.gif");
      color: var(--text);
      /* nu pune prea multe ca dupaia sunt prea multe
      einstein
      scot fonturile, lasa defaultu ca e sexy */
      font-family: sexy ;
      font-size: 16px;
      margin: 0;
      padding: 0;
    }

    .container {
      position: relative;
      display: inline-block;
    }

    .tabs {
      background: var(--bg-panel);
      border-bottom: 1px solid var(--border);
      padding: 4px 4px 0 4px;
    }

    .tab {
      display: inline-block;
      padding: 4px 12px;
      border: 1px solid var(--border);
      border-bottom: none;
      background: var(--bg-element);
      color: var(--text-dim);
      cursor: pointer;
      font-size: 12px;
      margin-right: 2px;
    }

    .tab.active {
      background: var(--bg-main);
      color: var(--text-bright);
      font-weight: bold;
    }

    .page {
      display: none;
      padding: 20px;
    }

    .page.active {
      display: block;
    }

    button {
      background: var(--bg-element);
      color: var(--text);
      border: 1px solid var(--border-btn);
      padding: 3px 12px;
      font-size: 12px;
      cursor: pointer;
      margin: 4px;
    }

    .button {
      padding: 0;
      border: 0px;
      cursor: pointer;
      line-height: 0;
      border-radius: 0;
    }

    .imagebutton-wrap {
      position: relative;
      flex-wrap: nowrap;
      display: inline-block;
    }

    .imagebutton-wrap img { display: block; }

    .imagebutton-label {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      font-family: sexy ;
      color:#ffffff;
      font-size: 18px;
    }

    .imagebutton img {
      display: block;
      width: 100px;
      height: auto;
    }

    button:active {
      background: var(--border);
    }

    hr {
      border: 1px solid var(--bg-element);
    }

    input {
      background: var(--bg-panel);
      color: var(--text);
      border: 1px solid var(--border-btn);
      padding: 2px 6px;
      font-size: 12px;
    }