:root {
    --primary: #942CFB;
    --body-bg: #0D0129;
    --body-color: #bcc3d7;
    --white: #ffffff;
}

.claim-modal .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}

.claim-modal .modal-content {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: none;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.claim-modal .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffcd3c, #4ecdc4, #44a08d);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.claim-modal .modal-header {
    border: none;
    padding: 2rem 2rem 1rem;
    position: relative;
}

.claim-modal .modal-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.claim-modal .btn-close {
    background: none;
    border: none;
    color: #ffffff;
    opacity: 0.7;
    font-size: 1.4rem;
    position: absolute;
    right: 0.1rem;
    top: 0.1rem;
}

.claim-modal .btn-close:hover {
    opacity: 1;
    /* transform: rotate(90deg);
    transition: all 0.3s ease; */
}

.claim-modal .modal-body {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.crypto-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #942CFB, #942CFB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow:
        0 10px 30px rgba(247, 147, 30, 0.3),
        0 0 0 10px rgba(247, 147, 30, 0.1),
        0 0 0 20px rgba(247, 147, 30, 0.05);
    animation: pulse 2s infinite;
    position: relative;
}

.crypto-icon::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(247, 147, 30, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.crypto-icon i {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.claim-amount {
    color: #942CFB;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    text-shadow: 0 2px 20px rgba(255, 205, 60, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 2px 20px rgba(255, 205, 60, 0.5);
    }

    to {
        text-shadow: 0 2px 30px rgba(255, 205, 60, 0.8), 0 0 40px rgba(255, 205, 60, 0.3);
    }
}

.claim-description {
    color: #b8c6db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.claim-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(68, 160, 141, 0.3);
    min-width: 200px;
}

.claim-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.claim-btn:hover::before {
    left: 100%;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(68, 160, 141, 0.4);
    background: linear-gradient(135deg, #44a08d, #4ecdc4);
}

.claim-btn:active {
    transform: translateY(0);
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 205, 60, 0.6);
    border-radius: 50%;
    animation: float 6s infinite linear;
}

.particle:nth-child(odd) {
    background: rgba(78, 205, 196, 0.6);
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    color: #4ecdc4;
    font-weight: 700;
    font-size: 1.3rem;
}

.stat-label {
    color: #b8c6db;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

/* Mobile Responsive Styles */
@media (max-width: 576px) {
    .claim-modal .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100vw - 1rem);
    }

    .claim-modal .modal-content {
        border-radius: 15px;
    }

    .claim-modal .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .claim-modal .modal-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .claim-modal .modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }

    .crypto-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
        box-shadow:
            0 8px 25px rgba(247, 147, 30, 0.3),
            0 0 0 8px rgba(247, 147, 30, 0.1),
            0 0 0 16px rgba(247, 147, 30, 0.05);
    }

    .crypto-icon::before {
        width: 100px;
        height: 100px;
    }

    .crypto-icon i {
        font-size: 2.5rem;
    }

    .claim-amount {
        font-size: 2rem;
        margin: 0.8rem 0;
    }

    .claim-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .claim-btn {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 180px;
        letter-spacing: 0.5px;
    }

    .stats-container {
        margin: 1rem 0;
        padding: 0.8rem 0.5rem;
        border-radius: 12px;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

/* Desktop centering */
@media (min-width: 577px) {
    .claim-modal .modal-dialog {
        margin: 1.75rem auto;
        display: flex;
        align-items: center;
        min-height: calc(100vh - 3.5rem);
    }
}

.coin-list-auto {
    max-height: none !important;
}


/* =============================== Prealoder ===============================
========================================================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--body-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* =============================== Prealoder ===============================
========================================================================= */

/* =============================== Cookie ===============================
========================================================================= */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: rgba(18, 20, 43, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(79, 70, 229, 0.3),
                inset 0 0 20px rgba(79, 70, 229, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-consent.active {
    transform: translateX(0);
    opacity: 1;
}

.cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-icon {
    font-size: 24px;
    margin-right: 10px;
    color: #4f46e5;
}

.cookie-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.cookie-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-accept {
    background: linear-gradient(90deg, #4f46e5, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    flex: 1;
}

.btn-learn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(79, 70, 229, 0.5);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

@media (max-width: 768px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        /* max-width: none; */
    }
}
/* =============================== Cookie ===============================
========================================================================= */

.break-long-word{
    overflow-wrap: anywhere; 
    white-space: normal; 
}

/* ================================= Pagination Css Start =========================== */
.pagination {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-sm-fill:has(.pagination) {
    margin-top: 50px;
}

@media screen and (max-width: 1199px) {
    .flex-sm-fill:has(.pagination) {
        margin-top: 48px;
    }
}

@media screen and (max-width: 991px) {
    .flex-sm-fill:has(.pagination) {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .flex-sm-fill:has(.pagination) {
        margin-top: 32px;
    }
}

@media screen and (max-width: 574px) {
    .flex-fill:has(.pagination) {
        margin-top: 32px;
        justify-content: center !important;
    }
}

.pagination .page-item.active .page-link {
    background-color: hsl(var(--primary));
    color: hsl(var(--white));
    border-color: hsl(var(--primary));
}

.pagination .page-item .page-link {
    margin: 0 5px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    font-weight: 500;
    padding: 0;
    color: hsl(var(--body-color));
}

.pagination .page-item .page-link:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--white));
    border-color: hsl(var(--primary));
}

.pagination .page-item .page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.text-muted{
    color: hsl(var(--white)) !important;
}


.password-show {
    position: absolute;
    right: 12px;
    z-index: 5;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-menu-list li a.active {
  color: var(--primary);
}

.anim-token-coin {
  animation: spin 8s infinite linear;
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.anim-token-coin.anim-token-coin-lg {
  width: 90px;
  height: 90px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.td-underline{
    text-decoration: underline;
}

.tutorial-item {
  height: 150px !important;
}

/* @media (min-width: 1400px) {
  .tutorial-slider {
    mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 25%, rgb(255, 255, 255) 75%, rgba(255, 255, 255, 0) 100%);
  }
} */

.tutorial-slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.25);
  border: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-top: -20px;
  font-size: 20px;
  z-index: 1;
  transition: all 0.3s;
}

.tutorial-slider .slick-arrow:hover {
  background-color: var(--primary);
  color: #fff;
}

.tutorial-slider .slick-arrow.slick-prev {
  left: 0;
}

@media (min-width: 576px) {
  .tutorial-slider .slick-arrow.slick-prev {
    left: -15px;
  }
}
@media (min-width: 1200px) {
  .tutorial-slider .slick-arrow.slick-prev {
    left: 0px;
  }
}
/* @media (min-width: 1400px) {
  .tutorial-slider .slick-arrow.slick-prev {
    left: 100px;
  }
} */
.tutorial-slider .slick-arrow.slick-next {
  right: 0;
}

@media (min-width: 576px) {
  .tutorial-slider .slick-arrow.slick-next {
    right: -15px;
  }
}
@media (min-width: 1200px) {
  .tutorial-slider .slick-arrow.slick-next {
    right: 0px;
  }
}
/* @media (min-width: 1400px) {
  .tutorial-slider .slick-arrow.slick-next {
    right: 100px;
  }
} */
.single-event {
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .single-event {
    width: 350px;
  }
}
.single-event.slick-slide {
  transform: scale(0.65);
}

.single-event.slick-slide.slick-active {
  transform: scale(0.85);
}

.single-event.slick-slide.slick-current {
  transform: scale(1);
}

@media (max-width: 356px) {
	.dashboard-welcome-text {
		width: min-content
	}
	.anim-token-coin {
		width: 80px !important;
		height: 80px !important;
	}
}

@media (min-width: 357px) and (max-width: 462px) {
    .dashboard-welcome-coin {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}