
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,800;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,800;1,800&display=swap');

body {
	background: #0D1411;
	color: white;
	font-family: 'Montserrat';
	font-weight: 500;
	margin: 0px;
    margin-top: 170px;
}

@media (max-width: 1300px) {

	body {
		background: #0D1411;
	}
}

h1 {    
	color: #000;
	font-size: 24px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

h2 {
	color: #000;
	font-size: 22px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
}

h3 {
	color: #000;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}


p {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	font-family: 'Montserrat';
	color: rgba(255, 255, 255, 0.4);
}

small {
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	font-family: 'Montserrat';
	color: #000;
}

span.colored {
	color: #30BE81;
}

.container {
	max-width: 1200px !important;
	margin: 0 auto !important;
	padding-left: 10px;
    padding-right: 10px;
}

.content {
	margin-top: 50px;
}

a {
	color: #30BE81;
	text-decoration: none;
}

a:hover, a:active {
	text-decoration: underline;
} 

.sidebar {
	display: none;
	text-align: end;
	padding: 30px;
	max-width: 800px;
	min-width: 300px;
    height: 100%;
    max-height: 100vh;
	display: block;
	background: #0D1411;
	color: white;
	position: absolute;
	right: 0;
	z-index: 9999999;
    overflow-y: auto;
	margin-top: -170px;
    overflow-y: auto;
}

.sidebar a {	
	font-weight: 800;
	color: white;
	padding-top: 10px;
	display: block;
}

.sidebar a.status {	
	background: #30BE81;
	color: black;
	padding: 15px;
	border-radius: 15px;
	display: inline-block;
	margin-top: 15px;
	margin-bottom: 15px;
}

.sb-open {
	display: block !important;
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .logo h2,.header .logo h2 a {
	color: white;
	margin: 0;
	font-family: 'Rubik', 'Montserrat';
}

.header .menu a {
	color: white;
	margin-left: 20px;
} 

.header .menu .btn {    
	border-radius: 5px;
	padding: 5px 20px;
	background: white;
	color: black;
	font-weight: 800;
}

@media (min-width: 900px) { 
	.header .menu {
		display: block !important;
	}
	.header img {
		display: none !important;
	}
}


@media (max-width: 900px) { 
	.header .menu {
		display: none !important;
	}
	.header img {
		display: block !important;
	}
}

.first {
	padding-top: 70px;
	padding-bottom: 200px;
	color: #FFF;
}

.first h1 {
	color: #FFF;
	margin-bottom: 0px;
	font-size: 56px;
}

.first .buttons {
	display: flex;
	margin-bottom: 30px;
	margin-top: 25px;
}

.first .btn {
	display: inline-block;
	border-radius: 5px;
	background: white;
	color: #000;
	padding: 10px 35px;
	font-size: 18px;
	margin-right: 20px;
	font-weight: 800;
    width: fit-content;
}

.first .btnline {
	display: inline-block;
	border-radius: 5px !important;
	border: 1px solid white !important;
	color: #FFF !important;
	padding: 10px 35px !important;
	font-size: 18px !important;
	background: none !important;
	width: 230px;
	margin-right: 20px !important;
	font-weight: 800 !important;
}

@media (max-width: 517px) {
	.first .buttons {
		flex-wrap: wrap;
	}

	.first .btnline {
		margin-top: 20px;
	}
}

.first .coins {
	border-radius: 5px;
	background: white;
	color: #000;
	display: flex;
	padding: 10px 15px;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
    max-width: 515px;
}

.first .coins img {
	max-width: 35px;
	max-height: 35px;
}

.first .coins p {
	color: #000;
	margin: 5px;
    margin-left: 0px;
}

.first .coins small {
	color: #000;
}

.grid {
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
	background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s ease;
    cursor: default;
}


.card::before {
	content: '';
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #30BE81, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.04);
  	border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.card:hover::before {
    opacity: 1;
}

.card .icon {
    font-size: 32px;
	margin-bottom: 10px;
    display: block;
}

.card h4 {
    font-size: 16px;
	font-weight: 600;
    margin-bottom: 4px;
}

.card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
}

.card .num {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #30BE81;
    background: rgba(48, 190, 129, 0.08);
    padding: 2px 14px;
    border-radius: 40px;
    margin-bottom: 10px;
}

    .cta-section {
      padding: 40px 24px 60px;
      text-align: center;
    }

    .cta-section h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .cta-section p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 24px;
    }

    .btn-cta {
      background: #30BE81;
      border: none;
      border-radius: 60px;
      padding: 16px 48px;
      font-weight: 700;
      font-size: 18px;
      color: #0D1411;
      cursor: pointer;
      transition: 0.2s;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .btn-cta:hover {
      background: #3dd492;
      transform: scale(1.02);
      box-shadow: 0 8px 32px rgba(48, 190, 129, 0.25);
    }

.servers {
	display: flex;
	flex-wrap: wrap;
}

.server {
	margin: 10px;
	border-radius: 5px;
	border: 2px solid #30BE81;
	padding: 25px 20px;
	width: 230px;
}

.server h3 {
	margin-top: 5px;
	margin-bottom: 5px;
	font-weight: 800;
	font-family: 'Montserrat';
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden; 
}

.server .status {
	color: #000;
	background: #30BE81;
	padding: 2px 8px;
	font-weight: 800;
	margin-right: 5px;
}

.server p {
	margin-top: 10px;
	margin-bottom: 20px;
}

.server .btn, .btnline {
	display: inline-block;
	border-radius: 5px;
	border: 2px solid #000;
	background: none;
	text-align: center;
	color: #000;
	padding: 10px 35px;
	font-weight: 800;
}

.server .btn {
	width: 155px;
}

.server .status a {
	color: #000;
}

.aboutproject {
	display: flex;
	justify-content: space-between;
}

.aboutproject p{
	max-width: 789px;
}

.aboutproject img {
	width: 300px;
    height: 300px;
    margin-left: 60px;
}


@media (max-width: 780px) {
	.aboutproject img {
		display: none;
	}
}

.panel {
	word-break: break-all;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 5px;
	border: 2px solid #30BE81;
	padding: 25px 20px;
	min-width: 260px;
	/* max-width: 700px; */
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.panel img, .panel a {
	width: 45px;
	height: 45px;
}

.panel p {
	margin-top: 5px;
	margin-bottom: 5px;
}



.footer {
	margin-top: 30px;
	border-top: 2px solid #30BE81;
	padding: 30px 20px;
    background: #0D1411;
}

.footer .container {
	display: flex;
	flex-wrap: wrap;
}

.footer .about,.footer .docs {
	margin-right: 60px;
	max-width: 360px;
}

.footer .about .author {
	margin-top: 30px;
	display: block;
}

.footer h3 {
	font-weight: 800;
}

.footer .docs p, .footer .contact p {
	margin-top: 5px;
	margin-bottom: 5px;
}


















#toast {
	position: fixed;
	top: 32px;
	right: 32px;
	z-index: 999999;
  }
  
  .toast {
	display: flex;
	align-items: center;
	background-color: #110F07;
	color: white;
	border-radius: 2px;
	padding: 20px 0;
	min-width: 300px;
	max-width: 450px;
	border-left: 4px solid;
	box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
	transition: all linear 0.3s;
  }
  
  @keyframes slideInLeft {
	from {
	  opacity: 0;
	  transform: translateX(calc(100% + 32px));
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  
  @keyframes fadeOut {
	to {
	  opacity: 0;
	}
  }
  
  .toast--success {
	border-color: #47d864;
  }
  
  .toast--success .toast__icon {
	color: #47d864;
  }
  
  .toast--info {
	border-color: #2f86eb;
  }
  
  .toast--info .toast__icon {
	color: #2f86eb;
  }
  
  .toast--warning {
	border-color: #ffc021;
  }
  
  .toast--warning .toast__icon {
	color: #ffc021;
  }
  
  .toast--error {
	border-color: #ff623d;
  }
  
  .toast--error .toast__icon {
	color: #ff623d;
  }
  
  .toast + .toast {
	margin-top: 24px;
  }
  
  .toast__icon {
	font-size: 24px;
  }
  
  .toast__icon,
  .toast__close {
	padding: 0 16px;
  }
  
  .toast__body {
	flex-grow: 1;
  }
  
  .toast__title {
	font-size: 16px;
	font-weight: 600;
	color: #FFF;
  }
  
  .toast__msg {
	font-size: 14px;
	color: #FFF;
	margin-top: 6px;
	line-height: 1.5;
  }
  
  .toast__close {
	font-size: 20px;
	color: #30BE81;
	cursor: pointer;
  }

  form input[type=text], form input[type=email], form input[type=file], form input[type=password], form input[type=number], form input[type=date], form input[type=time], form input[type=url], form input[type=datetime-local], form select {
	background: rgba(255, 255, 255, 0.04) ;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 60px;
    padding: 14px 20px;
    font-size: 15px;
    color: #fff;
    outline: none;
    font-family: inherit;
    transition: 0.2s;
    width: calc(100% - 40px);
	margin-bottom: 10px;
  }

  form textarea {
	background: rgba(255, 255, 255, 0.04) ;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 60px;
    padding: 14px 20px;
    font-size: 15px;
    color: #fff;
    outline: none;
    font-family: inherit;
    transition: 0.2s;
    width: calc(100% - 40px);
	margin-bottom: 10px;
  }
  
  .btn {    
	padding: 16px 36px;
    font-size: 18px;
    font-weight: 600;
    background: #30BE81;
    border: none;
    border-radius: 60px;
    color: #0D1411;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
    box-shadow: 0 8px 28px rgba(48, 190, 129, 0.12);
    width: 100%;
  }
  
  
  
h1 {    
	color: #FFF;
}

h2 {
	color: #FFF;
}

h3 {
	color: #FFF;
}


small {
	color: #FFF;
}

.header {
	margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    backdrop-filter: blur(5px);
    color: #FFF;
    padding: 30px 0px;
}

.first .btn {
	background: #30BE81;
	color: #000;
}

.first .btnline {
	border: 1px solid #30BE81 !important;
}

.server .btn, .btnline {
	border: 2px solid #FFF;
	color: #FFF;
}

.panel {
	color: white;
}

form textarea {
	border-bottom: 1px solid white;
	color: white;
}
  