/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/

.bg-dark-blue {
    background-color: #1a2b4a; 
    padding: 20px 0;
    width: 100%;
}

.ad-container-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px; 
    margin: 0 auto;
    gap: 5px; 
}

.ad-container-row > div {
    flex: 1;
    min-width: 300px; 
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .ad-container-row {
        justify-content: center;
    }
    
    .ad-container-row > div {
        flex: 0 0 auto;
        margin-bottom: 2px;
    }
}


@media (max-width: 768px) {
    .ad-container-row {
        gap: 12px;
    }
    
    .bg-dark-blue {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .ad-container-row {
        gap: 8px;
    }
}

  /* Offerwall Integration */
.ofw-connected {
  margin-bottom: 40px;
  display:block;
  text-align:center;
  width:100%;
  margin-top:-40px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px 0;
}
.ofw-claim {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 18px;
  text-align:center;
}
.gradient-text {
  background-color: #ff6d28;
  color: #fff;
  background-image: linear-gradient(
    270deg,
    rgba(100, 181, 239, 0) 48.44%,
    #185886 75.52%,
    rgba(100, 181, 239, 0) 100%
  );
  background-repeat: no-repeat;
  animation: bg-move linear 5s infinite;
} 
@-webkit-keyframes bg-move {
  0% {
    background-position: -50px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
@keyframes bg-move {
  0% {
    background-position: -50px 0;
  }
  100% {
    background-position: 200px 0;
  }
}
/* Offerwall Styles */
.offerwall-container {
	background-color: #0F172A;
	border-radius: 0.5rem;
	padding: 1rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.offerwall-content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.offerwall-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0.75rem;
	width: 100%;
}

@media (min-width: 768px) {
	.offerwall-info {
		flex-direction: row;
		justify-content: center;
	}
}

.offerwall-connection, .offerwall-uid {
	display: flex;
	align-items: center;
	margin: 0.25rem 0;
}

.offerwall-icon {
	height: 1.25rem;
	width: 1.25rem;
	color: #4ade80; 
	margin-right: 0.5rem;
}

.offerwall-label {
	font-weight: 500;
	color: white; 
	margin-right: 0.5rem;
}

.offerwall-value {
	font-weight: 700;
	color: white;
}

.offerwall-divider {
	display: none;
	margin: 0 0.5rem;
	color: #9ca3af; 
}

@media (min-width: 768px) {
	.offerwall-divider {
		display: block;
		content: '|';
	}
}

.offerwall-instruction {
	color: #d1d5db; 
	text-align: center;
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
}

.offerwall-ad-container {
	background-color: #1E293B; 
	border-radius: 0.375rem;
	padding: 0.75rem;
	width: 100%;
	border: 1px solid rgba(55, 65, 81, 0.3);
	margin-top: 0.5rem;
}
/* Text Color Styles */
.text-green-400 {
	color: #4ade80; 
}

.text-yellow-400 {
	color: #fbbf24; 
}

.text-blue-400 {
	color: #60a5fa; 
}
.text-gradient-to-r {
	background: linear-gradient(to right, #8b5cf6, #60a5fa); 
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; 
}