



        :root {
        --primary-color: #6058f3;
        --secondary-color: #4caf50;
        --background-color: #f0f4f8;
        --text-color: #2c3e50;
        --card-bg-color: rgba(255, 255, 255, 0.95);
      }
      body,
      html {
        height: 100%;
        font-family: "Poppins", sans-serif;
        background-color: var(--background-color);
        color: var(--text-color);
        overflow-x: hidden;
      }
          /* Header and Navigation Styles */
    .site-header {
    background-color: var(--primary-color);
    padding: 8px 0; /* Reduced padding */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Container adjustments */
.site-header .container {
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Keep padding on the sides */
}

/* Logo adjustments */
.logo-img {
    max-width: 100%;
    height: 60px; /* Adjust this to increase the logo size */
    width: auto; /* Auto-adjust width based on the new height */
    object-fit: contain; /* Maintain aspect ratio */
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px; /* Adjust logo size for smaller screens */
        width: auto;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px; /* Further adjust for very small screens */
        width: auto;
    }
}

/* Hamburger menu and navigation for small screens */
.hamburger {
    display: none; /* Hide by default */
}

/* Display the hamburger on small screens */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none; /* Hide navigation links by default */
    }
}


      .site-header .logo:hover {
        transform: scale(1.05);
      }
      .nav-links {
        display: flex;
        gap: 20px;
      }
      .nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        padding: 10px 15px;
        border-radius: 25px;
      }
      .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
      }
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 10px;
        border-radius: 50%;
        transition: all 0.3s ease;
      }
      .hamburger:hover {
        background-color: rgba(255, 255, 255, 0.2);
      }
      .hamburger span {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 2px 0;
        transition: 0.4s;
        border-radius: 3px;
      }
      .main-container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #6c63ff 0%, #4caf50 100%);
        position: relative;
        padding: 2rem 0;
        padding-top: 80px;
        overflow: hidden;
      }
      .card {
        background: var(--card-bg-color);
        border-radius: 20px;
        border: none;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }
      .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      }
      .card-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
        color: var(--primary-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
      }
      .form-control {
        background-color: #fff;
        border: 2px solid var(--secondary-color);
        border-radius: 50px;
        color: var(--text-color);
        padding: 15px 25px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
      }
      .form-control:focus {
        box-shadow: 0 0 15px var(--secondary-color);
        transform: scale(1.02);
      }
      /* Footer Styles */
      .footer {
        background-color: var(--primary-color);
        color: white;
        padding: 40px 0;
        position: relative;
      }
      .footer h4 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        font-weight: 600;
      }
      .footer p,
      .footer a {
        font-size: 1rem;
        margin-bottom: 10px;
        color: #ffffff;
        text-decoration: none;
        transition: all 0.3s ease;
      }
      .footer a:hover {
        color: rgba(225, 225, 225, 0.8);
        transform: translateX(5px);
      }
      .footer-links {
        list-style: none;
        padding: 0;
      }
      .footer-links li {
        margin-bottom: 10px;
      }
      .social-icons {
        display: flex;
        gap: 15px;
      }
      .social-icons a {
        color: white;
        font-size: 1.5rem;
        transition: all 0.3s ease;
      }
      .social-icons a:hover {
        transform: scale(1.2);
      }
      .footer-bottom {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 15px 0;
        text-align: center;
        position: absolute;
        bottom: 0;
        width: 100%;
      }
      .footer-bottom p {
        margin: 0;
        font-size: 0.9rem;
      }
			.col-md-4 > h3{
			color:white;
			font-weight:600;
			}
      @media (max-width: 768px) {
        .card-title {
          font-size: 2rem;
        }
        .form-control,
        .btn-submit {
          font-size: 1rem;
          padding: 12px 20px;
        }
        .hamburger {
          display: flex;
        }
        .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background-color: var(--primary-color);
          padding: 20px;
          text-align: center;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .nav-links.active {
          display: flex;
        }
        .nav-links a {
          padding: 15px 0;
        }
        .site-header {
          padding: 10px 0;
        }
        .site-header .logo {
          font-size: 1.5rem;
        }
        .footer {
          text-align: center;
        }
        .social-icons {
          justify-content: center;
          margin-top: 20px;
        }
      }
      /* Img size fixing */
      img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto; /* Center images */
        border-radius: 8px; /* Optional: add rounded corners */
      }
      .btn-create {
        background: linear-gradient(
          45deg,
          var(--primary-color),
          var(--secondary-color)
        );
        border: none;
        border-radius: 50px;
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 15px 30px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px 0 rgba(76, 175, 80, 0.5);
      }
      .btn-create:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 7px 20px 0 #4caf50b3;
      }
      .stats {
        background: linear-gradient(45deg, #f6f9fc 0%, #f0f4f8 100%);
        border-radius: 15px;
        padding: 30px;
        margin-top: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }
      .stats:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      }
      .stats h2 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--primary-color);
        text-align: center;
      }
      .stat-item {
        text-align: center;
        transition: all 0.3s ease;
        padding: 20px;
        border-radius: 10px;
      }
      .stat-item:hover {
        transform: scale(1.05);
        background-color: rgba(255, 255, 255, 0.5);
      }
      .stat-icon {
        font-size: 3rem;
        margin-bottom: 10px;
        color: var(--secondary-color);
      }
      .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
      }
      .stat-label {
        font-size: 1.1rem;
        color: var(--text-color);
        font-weight: 500;
      }
      .feature-list {
        margin-top: 30px;
        padding-left: 20px;
      }
      .feature-list li {
        margin-bottom: 15px;
        position: relative;
        padding-left: 30px;
        font-size: 1.1rem;
      }
      .feature-list li::before {
        content: "\f058";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: var(--secondary-color);
      }
      .seo-content {
        margin-top: 50px;
        padding: 30px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(5deg);
        }
      }
      .floating-element {
        position: absolute;
        animation: float 6s ease-in-out infinite;
        font-size: 3rem;
        opacity: 0.7;
      }
      .float-1 {
        top: 10%;
        left: 10%;
        animation-delay: -2s;
      }
      .float-2 {
        top: 60%;
        right: 10%;
        animation-delay: -1s;
      }
      .float-3 {
        bottom: 10%;
        left: 20%;
        animation-delay: -3s;
      }

      @media (max-width: 768px) {
        .card-title {
          font-size: 2rem;
        }
        .form-control,
        .btn-create {
          font-size: 1rem;
          padding: 12px 20px;
        }
        .stat-number {
          font-size: 2rem;
        }
        .hamburger {
          display: flex;
        }
        .nav-links {
          display: none;
          flex-direction: column;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background-color: var(--primary-color);
          padding: 20px;
          text-align: center;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .nav-links.active {
          display: flex;
        }
        .nav-links a {
          padding: 15px 0;
        }
        .site-header {
          padding: 10px 0;
        }
        .site-header .logo {
          font-size: 1.5rem;
        }
      }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }
        th, td {
            border: 1px solid #adabab;
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: #dddada;
        }
        td {
            color: #555;
        }
        h1,h2 {
            color: #292929;
        }
        h3{
            color: #808080;
        }
        h1{
            style="font-size: 30px"
        }
        h2{
            style="font-size: 25px"
        }
        h3{
            style="font-size: 15px"
        }
        ul{
            list-style: none;
        }
				p{
            text-align: justify;
        }


.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    position: relative;
}
.footer h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.footer p, .footer a {
    font-size: 1rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer a:hover {
    color: white;
    transform: translateX(5px);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    transform: scale(1.2);
}
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
        margin-top: 20px;
    }
}



.login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .login-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 450px;
            animation: fadeIn 0.5s ease;
        }

        .login-title {
            color: var(--primary-color);
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
        }

        .form-control {
            background-color: #fff;
            border: 2px solid #eee;
            border-radius: 10px;
            padding: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(78, 84, 200, 0.25);
        }

        .btn-login {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 12px;
            width: 100%;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(78, 84, 200, 0.3);
        }

        .alert {
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            animation: shake 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }

        .back-to-home {
            color: white;
            text-decoration: none;
            position: absolute;
            top: 20px;
            left: 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .back-to-home:hover {
            color: #fff;
            opacity: 0.8;
        }

        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        .forgot-password a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }
        
        .register-link {
            text-align: center;
            margin-top: 20px;
            color: #666;
        }

        .register-link a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        .register-link a:hover {
            text-decoration: underline;
        }
        
        
        
    .hero__profile .tabs {
    position: absolute;
    top: 20px;
    left: 45px
}

.hero__profile .cover {
    height: 17rem
}

.hero__profile .cover img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.hero__profile .avatar_wrap {
    position: relative;
    width: 6rem
}

.avatars .avatar,.ranking .avatars .collection__img {
    width: 4.5rem;
    height: 4.5rem;
    -webkit-box-shadow: 0 17px 13px 0 #192c4b05;
    box-shadow: 0 17px 13px 0 #192c4b05;
    border-radius: 50%!important;
    border: 3px solid #fff;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .35s cubic-bezier(.4, 0, .2, 1);
    transition: .35s cubic-bezier(.4, 0, .2, 1)
}

.hero__profile .avatar_wrap .avatar {
    position: absolute;
    left: 180%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border: 5px solid #fff;
    width: 7rem;
    height: 7rem
}

.hero__profile .infos {
    padding: 20px 0;
    background-color: #fff;
    border-bottom: 1px solid #e2eef1
}

.hero__profile .copy {
    padding: 10px 20px;
    border-radius: 400px;
    border: 1px solid #e2eef1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.hero__profile .copy i {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid #6f7d95
}

.creator_cardadawd {
    /* background: #ffffff; */
    border: solid 1px #e2eef1;
    border-radius: 20px;
    -webkit-box-shadow: 0px 17px 13px 0px #192c4b05;
    box-shadow: 0px 17px 13px 0px #192c4b05;
    max-width: 30rem;
}

@media screen and (min-width: 769px) {
    .creator_item {
        margin-left: auto;
        margin-right: auto;
    }
}
.creator_item {
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 30rem;
}
.dashed_box {
    border-radius: 8px;
    padding: 2.5rem;
}
.dashed_border_h, .dashed_box {
    background-image: url(data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='8' ry='8' stroke='%237B61FFFF' stroke-width='3' stroke-dasharray='5%2c 10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e);
}
.bg_white {
    background-color: #fff !important;
}
.text-center {
    text-align: center !important;
}

		    /* center the blockquoteKrashy in the page */
.blockquoteKrashy-wrapper {
    background: #292a2b;
    padding: 12px 20px;
    margin: 30px 0px;
}


/* Blockquote main style */
.blockquoteKrashy {
    position: relative;
    font-family: 'Poppins';
    max-width: 620px;
    margin-bottom: 80px;
    align-self: center;
}

/* blockquoteKrashy header */
.blockquoteKrashy h3 {
    font-family: 'Abril Fatface', cursive;
    position: relative; /* for pseudos */
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    border: 2px solid #fff;
    border-color: orange!important;
    border: solid 2px;
    border-radius:20px;
    padding: 25px;
}

/* blockquoteKrashy right double quotes */
.blockquoteKrashy h3:after {
    content:"";
    position: absolute;
    border: 2px solid orange;
    border-radius: 0 50px 0 0;
    width: 60px;
    height: 62px;
    bottom: -62px;
    left: 50px;
    border-bottom: none;
    border-left: none;
    z-index: 3; 
}

.blockquoteKrashy h3:before {
    content:"";
    position: absolute;
    width: 80px;
    border: 6px solid white;
    bottom: -3px;
    left: 50px;
    z-index: 2;
}

/* increase header size after 600px */
@media all and (min-width: 600px) {
    .blockquoteKrashy h3 {
        font-size: 1.2rem;
        line-height: 1.2;
   }

}

/* blockquoteKrashy subheader */
.blockquoteKrashy h4 {
    position: relative;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding-top: 15px;
    z-index: 1;
    margin-left:10px;
    padding-left:12px;
}

 
.blockquoteKrashy h4:first-letter {
  margin-left:-12px;
}


.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}




.link-open-count {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333; /* Dark gray, close to black */
}

.count-number {
    font-weight: bold;
}

@media (max-width: 576px) {
 

    .link-open-count {
        font-size: 1.1rem;
    }
}








@media (min-width: 768px) {
    .card {
        max-width: 600px;
    }
}

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .btn {
            color: white;
            border-radius: 8px;
            padding: 10px 20px;
            margin: 5px;
            transition: background-color 0.3s ease;
        }
        /* Notification Button */
.btn-notification {
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    animation: colorChange 10s infinite alternate;
}

@keyframes colorChange {
    0% {
        background-color: var(--primary-color); /* Start with primary color */
    }
    25% {
        background-color: #ff7f50; /* Coral */
    }
    50% {
        background-color: #ffd700; /* Gold */
    }
    75% {
        background-color: #32cd32; /* LimeGreen */
    }
    100% {
        background-color: var(--secondary-color); /* End with secondary color */
    }
}

        .btn-whatsapp {
            background-color: var(--whatsapp-green);
            
        }
        .btn:hover {
            background-color: var(--secondary-color);
        }
        .table {
            margin-top: 20px;
        }
        .table th, .table td {
            vertical-align: middle;
            border-top: none;
        }
        .table tbody tr:hover {
            background-color: #f8f9fa;
        }
        .unique-link {
            background-color: #fff;
            border: 1px solid var(--secondary-color);
            padding: 15px;
            border-radius: 8px;
            width: 100%;
        }
        .delete-btn {
            background-color: red;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .reload-btn {
            background-color: var(--primary-color);
            color: white;
            border-radius: 8px;
            padding: 8px 20px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .reload-btn i {
            margin-right: 5px;
        }
        .red-text {
            color: var(--red-color);
        }
        
        .btn-facebook {
    background-color: #1877f2; /* Facebook blue color */
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-facebook:hover {
    background-color: #155bc1; /* Slightly darker shade of Facebook blue */
}

/* Copy Button */
.btn-copy {
    background-color: #6c757d; /* Secondary button color */
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-copy:hover {
    background-color: #5b6369; /* Slightly darker shade of the secondary color */
}

/* MY PROFILE CODE*/
.profile-section {
    position: relative;
    margin-bottom: 2rem;
}

.profile-picture-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #f8f9fa;
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-picture-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* Cropper Modal Styles */
.modal-crop {
    z-index: 1055;
}

.img-container {
    max-height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cropper-view-box {
    border-radius: 50%;
    outline: none;
    box-shadow: 0 0 0 1px #39f;
}

.cropper-face {
    background-color: inherit !important;
}

.cropper-dashed, .cropper-point, .cropper-line {
    display: none !important;
}

.success-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    background: #4CAF50;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1060;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/*End profile code*/

.btn-delete-profile {
        background-color: #dc3545;
        color: white;
        border: none;
        padding: 10px 20px;
        font-size: 1rem;
        border-radius: 5px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
    }
    .btn-delete-profile:hover {
        background-color: #c82333;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(220, 53, 69, 0.4);
    }

.btn-contact {
            background-color: #4e54c8;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 1.1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(78, 84, 200, 0.1);
        }
        .btn-contact:hover {
            background-color: #8f94fb;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(78, 84, 200, 0.2);
        }









        .profile-actions {
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .btn-remove-picture {
        background-color: #dc3545;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .btn-remove-picture:hover {
        background-color: #c82333;
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
    }

    .modal-content {
        border-radius: 15px;
        border: none;
    }

    .modal-header {
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 15px 15px 0 0;
    }

    .modal-title {
        font-weight: 600;
    }

    .btn-close {
        filter: brightness(0) invert(1);
    }

    .modal-body {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .modal-footer .btn-primary {
        background: var(--primary-color);
        border: none;
        padding: 10px 30px;
        font-weight: 500;
    }

    .modal-footer .btn-primary:hover {
        background: var(--secondary-color);
    }


#browser-popup {
        position: fixed;
        bottom: 0px;
        left: 10px;
        right: 10px;
        background: #ff4757;
        color: white;
        padding: 15px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
        transition: bottom 0.5s ease-in-out;
        font-family: 'Poppins', sans-serif;
        z-index: 9999;
    }

    #browser-popup p {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    #open-in-browser {
        background: white;
        color: #ff4757;
        border: none;
        padding: 8px 15px;
        font-size: 15px;
        font-weight: bold;
        border-radius: 8px;
        cursor: pointer;
        margin-top: 10px;
        transition: background 0.3s, color 0.3s;
    }

    #open-in-browser:hover {
        background: #ffd1d1;
        color: #d90429;
    }


        /* Enhanced Modal Styles */
        .modal-content {
        border: none;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .modal-header {
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 15px 15px 0 0;
        padding: 1.5rem;
    }

    .modal-header .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .modal-header .btn-close:hover {
        opacity: 1;
    }

    .modal-body {
        padding: 2rem;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .modal-footer {
        padding: 1rem 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .modal-footer .btn {
        padding: 0.5rem 1.5rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .modal-footer .btn-secondary {
        background-color: #6c757d;
        border: none;
        color: white;
    }

    .modal-footer .btn-secondary:hover {
        background-color: #5a6268;
        transform: translateY(-1px);
    }

    .modal-footer .btn-primary {
        background: var(--primary-color);
        border: none;
    }

    .modal-footer .btn-primary:hover {
        background: var(--secondary-color);
        transform: translateY(-1px);
    }

    .modal-footer .btn-danger {
        background-color: #dc3545;
        border: none;
    }

    .modal-footer .btn-danger:hover {
        background-color: #c82333;
        transform: translateY(-1px);
    }

    /* Animation for modal */
    .modal.fade .modal-dialog {
        transform: scale(0.95);
        transition: transform 0.3s ease;
    }

    .modal.show .modal-dialog {
        transform: scale(1);
    }


    #errorModal .modal-header {
        background: #dc3545;
        color: white;
    }

    #errorModal .modal-title {
        color: white;
    }

    #errorModal .btn-close {
        filter: brightness(0) invert(1);
    }

    #errorMessage {
        font-size: 1.1rem;
        color: #333;
    }
    
    
    /* NEWS Ticker Css*/
    .news-ticker-container {
  width: 100%;
  background: linear-gradient(45deg, #4e54c8, #8f94fb);
  padding: 12px 0;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-ticker-container::before,
.news-ticker-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
}

.news-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(78,84,200,1), rgba(78,84,200,0));
}

.news-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(143,148,251,1), rgba(143,148,251,0));
}

.news-ticker {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 20s linear infinite;
}

.ticker-content span {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  padding: 0 20px;
}

.ticker-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
  padding: 0 10px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.ticker-close:hover {
  opacity: 1;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause animation on hover */
.news-ticker:hover .ticker-content {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .ticker-content span {
    font-size: 1rem;
  }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-100%); }
}



 .last-comment-time {
        font-size: 0.85rem;
        color: #666;
        margin: -10px 0 10px 0;
        font-style: italic;
    }
    
    .card-title {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .comments-count {
        background-color: #4e54c8;
        color: white;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 0.9em;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /* Add these styles to your existing CSS */
.save-account-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.save-account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.2);
}

.save-account-btn.saved {
    background: #4CAF50;
    cursor: default;
}

.save-account-btn.saved:hover {
    transform: none;
}

#saveAccountModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#saveAccountModal .modal-header {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px 15px 0 0;
}

#saveAccountModal .btn-close {
    filter: brightness(0) invert(1);
}

#saveAccountModal .form-control {
    border-radius: 8px;
    padding: 12px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

#saveAccountModal .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(78, 84, 200, 0.25);
}






.btn-logout {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(78, 84, 200, 0.1);
}

.btn-logout:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(78, 84, 200, 0.2);
    color: white;
}






.modal .bg-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.email-info-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #dee2e6;
}

.masked-email {
    font-family: monospace;
    font-size: 1.1rem;
    color: #495057;
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    margin-top: 8px;
    text-align: center;
}

.alert-warning {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.alert-warning ul {
    padding-left: 20px;
}

.alert-warning li {
    margin-bottom: 5px;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

#resendButton {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

#resendButton:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.modal .btn-close {
    background-color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.modal .btn-close:hover {
    opacity: 1;
}

/* Add loading spinner styles */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}





.account-success-modal .modal-header {
    background: linear-gradient(45deg, #4e54c8, #8f94fb);
    border-radius: 6px 6px 0 0;
}

.account-success-modal .modal-title {
    color: #fff;
    font-weight: 600;
    text-shadow: none;
}

.account-success-modal .btn-close {
    background: rgba(255, 255, 255, 0.8) !important;
    opacity: 1;
    padding: 0.5rem !important;
}

.account-success-modal .btn-close:hover {
    background: rgba(255, 255, 255, 1) !important;
}

.account-success-modal .success-icon {
    color: #28a745;
    font-size: 40px;
    margin-bottom: 15px;
}

.account-success-modal .modal-body {
    padding: 1.5rem;
}

.account-success-modal .info-list {
    text-align: left;
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.account-success-modal .info-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.account-success-modal .info-list li:last-child {
    border-bottom: none;
}

.account-success-modal .info-list li i {
    margin-right: 8px;
    color: #4e54c8;
}

.account-success-modal .btn-close-modal {
    background: linear-gradient(45deg, #4e54c8, #8f94fb);
    color: white;
    padding: 8px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.account-success-modal .btn-close-modal:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(78, 84, 200, 0.2);
}





.account-success-modal .modal-header .btn-close {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
    opacity: 1 !important;
    padding: 0.5rem !important;
    margin: 0 !important;
    width: 32px !important;
    height: 32px !important;
}

.account-success-modal .modal-header .btn-close:hover {
    opacity: 0.75 !important;
}

/* Ensure other styles remain unchanged */
.account-success-modal .modal-header {
    background: linear-gradient(45deg, #4e54c8, #8f94fb);
    border-radius: 6px 6px 0 0;
    padding: 1rem !important;
}

.account-success-modal .modal-title {
    color: #fff;
    font-weight: 600;
    text-shadow: none;
}







.btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

/* Instagram Guide Modal Styles */
.instagram-guide-modal .modal-content {
    border-radius: 15px;
    border: none;
}

.instagram-guide-modal .modal-header {
    background: linear-gradient(45deg, #405DE6, #E1306C);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1rem 1.5rem;
}

.instagram-guide-modal .modal-body {
    padding: 0;
    max-height: 70vh;
    overflow-y: auto;
}

.instagram-guide-modal .guide-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.instagram-guide-modal .guide-image:last-child {
    margin-bottom: 0;
}

.instagram-guide-modal .modal-footer {
    border-top: none;
    padding: 1.5rem;
    justify-content: center;
}

.btn-understand {
    background: linear-gradient(45deg, #405DE6, #E1306C);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-understand:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}



.instagram-guide-modal .modal-body {
    padding: 0;
    max-height: 75vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.steps-container {
    padding: 20px;
}

.step-item {
    margin-bottom: 30px;
}

.step-number {
    background: linear-gradient(45deg, #405DE6, #E1306C);
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.guide-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.button-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.btn-understand {
    background: linear-gradient(45deg, #405DE6, #E1306C);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-understand:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

/* Hide scrollbar but keep functionality */
.instagram-guide-modal .modal-body::-webkit-scrollbar {
    width: 8px;
}

.instagram-guide-modal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.instagram-guide-modal .modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #405DE6, #E1306C);
    border-radius: 4px;
}

/* For Firefox */
.instagram-guide-modal .modal-body {
    scrollbar-width: thin;
    scrollbar-color: #E1306C #f1f1f1;
}




/* Instagram Guide Modal Specific Styles */
.instagram-guide-modal .modal-header .btn-close {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
    opacity: 1 !important;
    padding: 0.5rem !important;
    margin: -0.5rem -0.5rem -0.5rem auto !important;
    width: 32px !important;
    height: 32px !important;
}

.instagram-guide-modal .modal-header .btn-close:hover {
    opacity: 0.75 !important;
}

.instagram-guide-modal .modal-header {
    background: linear-gradient(45deg, #405DE6, #E1306C);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1rem !important;
}
.blockquote,
.blockquote h3,
.blockquote h4,
.homeindex,
.install-style {
	position: relative
}

#loading-overlay h1,
.homeindex,
.install-button,
.rounded-social-buttons {
	text-align: center
}

#scroll,
#scroll img {
	width: 50px
}

.blockquote-wrapper {
	background: #292a2b;
	padding: 12px 20px;
	margin: 30px 0
}

.blockquote {
	font-family: 'Barlow Condensed', sans-serif;
	max-width: 620px;
	margin: 80px auto;
	align-self: center
}

.AppBanner-font-style,
.install-style {
	font-family: plex-sans, sans-serif;
	margin: 0
}

.blockquote h3 {
	font-family: 'Abril Fatface', cursive;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	margin: 0;
	border: 2px solid;
	border-color: orange !important;
	border-radius: 20px;
	padding: 25px
}

.blockquote h3:after {
	content: "";
	position: absolute;
	border: 2px solid orange;
	border-radius: 0 50px 0 0;
	width: 60px;
	height: 62px;
	bottom: -62px;
	left: 50px;
	border-bottom: none;
	border-left: none;
	z-index: 3
}

.blockquote h3:before {
	content: "";
	position: absolute;
	width: 80px;
	border: 6px solid #fff;
	bottom: -3px;
	left: 50px;
	z-index: 2
}

@media all and (min-width:600px) {
	.blockquote h3 {
		font-size: 1.2rem;
		line-height: 1.2
	}
}

.blockquote h4 {
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 0 10px;
	padding-top: 15px;
	z-index: 1;
	padding-left: 12px
}

.blockquote h4:first-letter {
	margin-left: -12px
}
.profile-card-social__item {
    &.twitter {
        background: linear-gradient(45deg, #1da1f2, #0e71c8);
        box-shadow: 0px 4px 30px rgba(19, 127, 212, 0.7);
    }
}
.profile-card-social__item {
    cursor: pointer !important;
}
.profile-card-social__item {
    display: inline-flex
;
    width: 55px;
    height: 55px;
    margin: 15px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0px 7px 30px rgba(43, 98, 169, 0.5);
    position: relative;
    font-size: 21px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.copy-link .input {
    border: 1px solid #20c47a;
    border-radius: 30px !important;
    box-shadow: none;
    display: block;
    background: #fff;
    padding: 5px;
    color: #777;
    width: 90%;
    text-align: center;
    overflow: hidden;
    font-size: 22px;
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12);
}
.copy-btn {
    font-size: 18px;
    letter-spacing: 2px;
    text-indent: 5px;
    border-radius: 30px;
    background: #f72184;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12) !important;
}
.share-buttons {
	display: flex;
	flex-wrap: wrap
}

.share-buttons button {
	display: flex;
	align-items: center;
	color: #fff;
	border: none;
	font-size: 15px;
	padding: 0 3px;
	width: calc(50% - 15px);
	height: 3.5em;
	margin-top: .1em;
	border-radius: 50px
}

.primary-btn4,
.share-btn {
	text-transform: uppercase;
	border-radius: 30px;
	display: block;
	color: #fff;
	font-weight: 700
}

.share-buttons button span.brand-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px !important;
	height: 45px;
	background: #fff;
	border-radius: 50%;
	color: #000
}

.share-buttons button span.brand-icon img {
	width: auto;
	max-height: 50%;
	max-width: 50%
}

.share-buttons button:nth-of-type(odd) {
	margin-left: 5px !important
}

.share-buttons button:eighth-child {
	width: 96%;
	margin-left: 2% !important;
}

.share-buttons button:first-child {
	width: 98%;
	margin-left: 1% !important
}

.share-btn {
	width: 200px;
	height: 54px;
	margin: 11px auto;
	font-size: 30px;
	letter-spacing: 12px;
	text-indent: 10px
}

.share-btn a {
	color: #fff;
	width: calc(100% - 60px);
	padding: .5em 0;
	font-size: 18px;
	text-transform: none;
	font-weight: 300;
	text-indent: -24px;
	margin: 9px auto;
	letter-spacing: 1px
}

.share-btn.whatsapp {
	background-color: #20c47a
}

.share-btn.fb {
	background: #1f3667
}

.share-btn.snapchat {
	background-color: #fff70f
}

.share-btn.messenger {
	background-color: #0166ff
}

.share-btn.twitter {
	background-color: #00aced
}

.share-btn.instagram {
	background: linear-gradient(to right, #db7a48, #b33376)
}

.share-btn.line {
	background-color: #00b900
}

.share-btn.tiktok {
	background: #ff0050
}

.share-btn.vk {
	background-color: #6c9dd3
}

.share-icon {
	height: 200px !important;
	margin: auto auto -3px;
	width: auto !important;
	z-index: 1
}

.share .v-ans {
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center
}
.box, .card__item {
    background: #fff;
    padding: 20px;
}
.cshadow {
    box-shadow: 0 2px 1px -1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 3px 0 rgba(0, 0, 0, .12) !important;
}
@media screen and (min-width: 769px) {
    .creator_item {
        margin-left: auto;
        margin-right: auto;
    }
}
.creator_item {
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 30rem;
}
.creator_card {
    background: #fff;
    border: 1px solid #e2eef1;
    border-radius: 20px;
    box-shadow: 0 17px 13px 0 #192c4b05;
    max-width: 30rem;
}
.creator_card, .item_details .likes {
    -webkit-box-shadow: 0 17px 13px 0 #192c4b05;
}
.avatars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.space-x-10>:not([hidden])~:not([hidden]) {
    --cb-space-x-reverse: 0;
    margin-right: calc(10px* var(--cb-space-x-reverse));
    margin-left: calc(10px* calc(1 - var(--cb-space-x-reverse)));
}
.btn-grad {
    transition: .4s ease-in-out !important;
}
.btn-grad, .btn-grad:hover {
    background: radial-gradient(100% 100% at 53.13% 0, #31e7fa 0, #47f 52.6%, #db74ff 100%);
}
.btn-grad, .btn-green {
    border: none !important;
    color: #fff;
}
.btn-sm {
    padding: 6px 16px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 500;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.btn-grad, .btn-primary {
    -webkit-transition: .4s ease-in-out !important;
}
.btn, a.btn input.btn, a.button, div.button, input[type=submit], span.button {
    color: #fff;
    padding: 11px 23px;
    min-height: 20px;
    line-height: 20px;
    -webkit-transition: .4s cubic-bezier(.4, 0, .2, 1);
    transition: .4s cubic-bezier(.4, 0, .2, 1);
    font-weight: 400;
    text-decoration: none;
    vertical-align: middle;
    outline: 0;
    position: relative;
    text-align: center;
    border-radius: 100px !important;
    overflow: hidden;
    will-change: transform, box-shadow;
}
.btn, .btn.active, .btn.focus, .btn:active, .btn:focus {
    -webkit-box-shadow: none !important;
    -o-box-shadow: none !important;
    -ms-box-shadow: none !important;
    box-shadow: none !important;
    border: 0;
}
.btn-sm, .filters span, .header__1, .header__1 .header__menu a, .input-group-text, .light_bg, .menu_activity li a span, .ranking tr td, .upcoming_projects tr td {
    white-space: nowrap;
}
.btn-group-sm>.btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
}

a {
    color: #00a396;
    text-decoration: none;
}
a, p {
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 500 !important;
}
a {
    transition: .25s cubic-bezier(.4, 0, .2, 1);
    text-decoration: none !important;
}
.space-y-30>:not([hidden])~:not([hidden]) {
    --cb-space-y-reverse: 0;
    margin-top: calc(30px* calc(1 - var(--cb-space-y-reverse)));
    margin-bottom: calc(30px* var(--cb-space-y-reverse));
}
.box.is__big {
    padding: 30px !important;
}
.forum_border {
    border: 2px solid #566ffe;
}
.box {
    border-radius: 20px;
    box-shadow: 0 17px 13px 0 #192c4b05;
    display: block;
}
.box, .card__item {
    background: #fff;
    padding: 20px;
}
.box, .popup .close {
    border: 1px solid #e2eef1;
    -webkit-box-shadow: 0 17px 13px 0 #192c4b05;
}

.forum_border {
    border: 2px solid #566ffe;
}
.forum .forum__content .comments__box .inupt__comment {
    display: block;
    width: 100%;
    margin-right: 20px;
    margin-left: 20px;
}




@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext');

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.cwrapperindateset {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 50px 20px;
  padding-top: 100px;
  display: flex;
  background: #ecf1f9;

  @media screen and (max-width: 768px) {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
  }
}

.profile-card {
  width: 100%;
  min-height: 460px;
  margin: auto;
  box-shadow: 0px 8px 60px -10px rgba(13, 28, 39, 0.6);
  background: #fff;
  border-radius: 12px;
  max-width: 700px;
  position: relative;
}

.profile-card.active .profile-card__cnt {
  filter: blur(6px);
}

.profile-card.active .profile-card-message,
.profile-card.active .profile-card__overlay {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.1s;
}

.profile-card.active .profile-card-form {
  transform: none;
  transition-delay: 0.1s;
}

.profile-card__img {
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-50%);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 4;
  box-shadow: 0px 5px 50px 0px rgb(108, 68, 252), 0px 0px 0px 7px rgba(107, 74, 255, 0.5);

  @media screen and (max-width: 576px) {
    width: 120px;
    height: 120px;
  }

  img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
}

.profile-card__cnt {
  margin-top: -35px;
  text-align: center;
  padding: 0 20px;
  padding-bottom: 40px;
  transition: all 0.3s;
}

.profile-card__name {
  font-weight: 700;
  font-size: 24px;
  color: #6944ff;
  margin-bottom: 15px;
}

.profile-card-social {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.profile-card-social__item {
  display: inline-flex;
  width: 55px;
  height: 55px;
  margin: 15px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0px 7px 30px rgba(43, 98, 169, 0.5);
  position: relative;
  font-size: 21px;
  flex-shrink: 0;
  transition: all 0.3s;

  @media screen and (max-width: 768px) {
    width: 50px;
    height: 50px;
    margin: 10px;
  }

  @media screen and (min-width: 768px) {
    &:hover {
      transform: scale(1.2)!important;
      color: white!important;
    }
  }
  
  &:hover {
      transform: scale(1.2)!important;
      color: white!important;
    }

  &.facebook {
    background: linear-gradient(45deg, #3b5998, #0078d7);
    box-shadow: 0px 4px 30px rgba(43, 98, 169, 0.5);
  }

  &.twitter {
    background: linear-gradient(45deg, #1da1f2, #0e71c8);
    box-shadow: 0px 4px 30px rgba(19, 127, 212, 0.7);
  }

  &.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    box-shadow: 0px 4px 30px rgba(120, 64, 190, 0.6);
  }

  &.behance {
    background: linear-gradient(45deg, #1769ff, #213fca);
    box-shadow: 0px 4px 30px rgba(27, 86, 231, 0.7);
  }

  &.github {
    background: linear-gradient(45deg, #333333, #626b73);
    box-shadow: 0px 4px 30px rgba(63, 65, 67, 0.6);
  }

  &.codepen {
    background: linear-gradient(45deg, #324e63, #414447);
    box-shadow: 0px 4px 30px rgba(55, 75, 90, 0.6);
  }

  &.link {
    background: linear-gradient(45deg, #d5135a, #f05924);
    box-shadow: 0px 4px 30px rgba(223, 45, 70, 0.6);
  }
}

.icon-font {
  display: inline-flex;
}

.profile-card-ctr {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;

  @media screen and (max-width: 576px) {
    flex-wrap: wrap;
  }
}

.profile-card__button {
  background: none;
  border: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin: 15px 35px;
  padding: 15px 40px;
  min-width: 201px;
  border-radius: 50px;
  min-height: 55px;
  color: #fff;
  cursor: pointer;
  backface-visibility: hidden;
  transition: all 0.3s;

  @media screen and (max-width: 768px) {
    min-width: 170px;
    margin: 15px 25px;
  }

  @media screen and (max-width: 576px) {
    min-width: inherit;
    margin: 0;
    margin-bottom: 16px;
    width: 100%;
    max-width: 300px;

    &:last-child {
      margin-bottom: 0;
    }
  }

  &:focus {
    outline: none !important;
  }

  @media screen and (min-width: 768px) {
    &:hover {
      transform: translateY(-5px);
    }
  }

  &:first-child {
    margin-left: 0;
  }

  &:last-child {
    margin-right: 0;
  }

  &.button--blue {
    background: linear-gradient(45deg, #1da1f2, #0e71c8);
    box-shadow: 0px 4px 30px rgba(19, 127, 212, 0.4);

    &:hover {
      box-shadow: 0px 7px 30px rgba(19, 127, 212, 0.75);
    }
  }

  &.button--orange {
    background: linear-gradient(45deg, #d5135a, #f05924);
    box-shadow: 0px 4px 30px rgba(223, 45, 70, 0.35);

    &:hover {
      box-shadow: 0px 7px 30px rgba(223, 45, 70, 0.75);
    }
  }

  &.button--gray {
    box-shadow: none;
    background: #dcdcdc;
    color: #142029;
  }
}

.profile-card-message {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 130px;
  padding-bottom: 100px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.profile-card-form {
  box-shadow: 0 4px 30px rgba(15, 22, 56, 0.35);
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 35px;
  transform: scale(0.8);
  position: relative;
  z-index: 3;
  transition: all 0.3s;

  @media screen and (max-width: 768px) {
    max-width: 90%;
    height: auto;
  }

  @media screen and (max-width: 576px) {
    padding: 20px;
  }
}

.profile-card-form__bottom {
  justify-content: space-between;
  display: flex;

  @media screen and (max-width: 576px) {
    flex-wrap: wrap;
  }
}

textarea {
  width: 100%;
  resize: none;
  height: 210px;
  margin-bottom: 20px;
  border: 2px solid #dcdcdc;
  border-radius: 10px;
  padding: 15px 20px;
  color: #324e63;
  font-weight: 500;
  font-family: 'Quicksand', sans-serif;
  outline: none;
  transition: all 0.3s;

  &:focus {
    outline: none;
    border-color: #8a979e;
  }
}

.profile-card__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(22, 33, 72, 0.35);
  border-radius: 12px;
  transition: all 0.3s;
}



.cinputinsetbox {
    border: 1px solid #20c47a;
    border-radius: 30px !important;
    box-shadow: none;
    display: block;
    background: #fff;
    padding: 5px;
    color: #777;
    width: 90%;
    text-align: center;
    overflow: hidden;
    font-size: 22px;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12);
}

.cinputinsetbox:hover {
      transform: translateY(-5px);
      
    }
    
.js-preference-btn:hover {
    color: white!important;
    transform: scale(1.2)!important;
}

.CrightFixedBtn {
    padding: 12px 0;
    background: #000;
    width: auto;
    display: inline-block;
    position: fixed;
    z-index: 9999;
    right: 0;
    border-radius: 12px 0px 0 12px;
    border-left: 0.24rem solid #566ffe;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    line-height: 2;
    font-family: 'Quicksand'!important;
    top: 150px;
    cursor: pointer;
}

.CrightFixedBtn:hover {
    background: white;
    color: black!important;
    transform: scale(1.2)!important;
}

.conoffbtn {
    position: relative;
    right: 0;
    bottom: 100px;
    background-color: #1995e7;
    color: #fff;
    padding: 5px;
    opacity:0.5;
    padding-right: 15px;
    padding-top: 10px;
    box-shadow: 0 6px 8px 0 rgba(0,0,0,.2);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.conoffbtn:hover {
    margin-left:1.8%;
    transform: scale(1.2)!important;
    opacity:1;
    
}

.profile-card-social__item {
    cursor:pointer!important;
}

.tiktoklogo {
  position: relative;
  color: #00fff8;
}
.tiktoklogo i:nth-child(1) {
  color: #00fff8;
    font-size: 25px;
}
.tiktoklogo i:nth-child(2) {
      color: #ff0010;
    position: absolute;
    left: 3px;
    top: 2px;
    font-size: 24px;
}

.tiktoklogo i:last-child {
  color: white;
    position: absolute;
    left: 0.8px;
    font-size: 25px;
    top: 2px;
}

.cshadow {
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 1px 3px 0 rgba(0,0,0,.12)!important;
}



@media screen and (max-width: 600px) {
  .conoffbtn {
    bottom: 70px!important;
    font-size: 0.8rem!important;
    padding: none!important;
    padding-right: none!important;
    padding-top: none!important;
}

.conofftextstyle {
    margin-top: 0px!important;
}

.clabel, .clabel:active:after {
    width: 28px;
}

.clabel {
    height: 14px!important;
}

.clabel:after {
    top: 1.8px!important;
    width: 10px!important;
    height: 10px!important;
}

}


.step-wrapper{
  padding:0;
  margin:0;
  font-size:0;
  display:flex;
  align-items: center;
  justify-content: center;
  counter-reset: step;
}
.step-wrapper li{
  width:120px;
}
.step-wrapper li > a:after {
	content: counter(step);
	counter-increment: step;
	width: 36px;
	line-height: 36px;
	display: block;
	font-size: 16px;
  color:#bbb;
  font-weight:700;
  background-color: transparent;
	border-radius: 100%;
  z-index:1;
  position:absolute;
  text-align:center;
}
.step-wrapper li.completed > a:after {
  content:'\2713';
  color: currentColor;
}
.step-wrapper li:first-of-type a:before,
.step-wrapper li:first-of-type a:after{
  margin-left:-42px;
}
.step-wrapper li:last-of-type > a:before,
.step-wrapper li:last-of-type > a:after{
  margin-left:42px;
}
.step-wrapper li.completed > a:before{
  background: #fff;
  color:#c4c4c4;
  -webkit-box-shadow:0px 2px 4px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.15);
}
.step-wrapper li.active > a:before{
  background-color: currentColor;
  -webkit-box-shadow:0px 0px 0px 0px rgba(0,0,0,0.15), inset 0px 0px 0px 0px rgba(0,0,0,0.15), 0px 0px 9px 0px currentColor;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247,0.5)), to(rgba(231, 231, 231,.01)));
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247,0.5)), to(rgba(231, 231, 231,.01)));
    background-image: -webkit-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
    background-image: -moz-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
    background-image: -ms-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
    background-image: -o-linear-gradient(top, rgba(247, 247, 247,0.5), rgba(231, 231, 231,.01));
}
.step-wrapper li.active > a:after{
  color:#fff;
}
.step-wrapper li span{
  display:block;
  width:100%;
  text-align:center;
  margin-bottom:15px;
}
.step-wrapper li span a{
  font-size: 14px;
  font-weight:700;
}
.step-wrapper li:not(.active):not(.completed) span a{
  color: #bbb;
}
.step-wrapper li > a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow:hidden;
  height:48px
}
.step-wrapper li:first-of-type > a{
  padding-left: 40px;
}
.step-wrapper li:last-of-type > a{
  padding-right:40px;
}
.step-wrapper li > a svg{
  height: 48px;
  min-height: 48px;
  width: auto;
  position: absolute;
  display: inline-block;
  stroke-width: 0;
  transition:all 300ms ease-in-out;
}
.step-wrapper li > a svg{
  filter:url(#inset-shadow);
}
.profile-card-form__container .cspanindatebox{
        
        font-weight:bold!important;
        display:block!important;
        margin-bottom: 5px;
        
    }
.hover_bkgr_fricc {
	background: rgba(0, 0, 0, .4);
	backdrop-filter: blur(5px);
	cursor: pointer;
	display: none;
	height: 100%;
	position: fixed;
	text-align: center;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	overflow: visible;
}

.hover_bkgr_fricc .helper {
	display: inline-block;
	height: 100%;
	vertical-align: middle
}

.hover_bkgr_fricc>div {
	box-shadow: 10px 10px 60px #555;
	display: inline-block;
	height: auto;
	background-color: #effffd;
	max-width: 551px;
	min-height: 100px;
	vertical-align: middle;
	width: 60%;
	position: relative;
	border-radius: 8px;
	padding: 15px 5%
}

.popupCloseButton {
	background-color: #fff;
	border: 3px solid #999;
	border-radius: 50px;
	cursor: pointer;
	display: inline-block;
	font-family: arial;
	font-weight: 700;
	position: absolute;
	top: -20px;
	right: -20px;
	font-size: 25px;
	line-height: 30px;
	width: 30px;
	height: 30px;
	text-align: center
}

.popupCloseButton:hover {
	background-color: #fd2222
}
.pulse {
	animation: 2s ease-in-out infinite animate-shake
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1)
	}

	70% {
		transform: scale(.9)
	}
}

@keyframes animate-shake {

	0%,
	10%,
	100%,
	65% {
		transform: rotate(0) scale(1)
	}

	30%,
	40% {
		transform: rotate(-1deg) scale(1.05)
	}

	35%,
	45% {
		transform: rotate(1deg) scale(1.05)
	}
}
.share-buttons {
	display: flex;
	flex-wrap: wrap
}

.share-buttons button {
	display: flex;
	align-items: center;
	color: #fff;
	border: none;
	font-size: 15px;
	padding: 0 3px;
	width: calc(50% - 15px);
	height: 3.5em;
	margin-top: .1em;
	border-radius: 50px
}

.sparkling_effect {
    width: max-content;
    color: #000;
    text-shadow: 0 0 8px #34d4fc !important;
    background-image: url(https://krashy.com/assets/img/sparkling.gif);
    background-repeat: repeat;
}
#shareStory {
            display: block;
            width: auto!important;
            height: auto!important;
        }
        
        
        .CModal
 {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, .4)
}

.CModal .modal-content,
 .modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19)
}

.CModal .modal-icon,
 .modal-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto;
	display: block
}

.CModal .modal-text,
 .modal-text {
	font-size: 18px;
	margin: 20px 0
}

.CModal .modal-button,
 .modal-button {
	background: linear-gradient(to bottom, #4caf50, #3e8e41);
	color: #fff;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
	border-radius: 4px
}

.CModal .modal-button:hover,
 .modal-button:hover {
	background: linear-gradient(to bottom, #3e8e41, #2e6e2e)
}

.CModal .close,
 .close {
	position: absolute;
	top: 0;
	right: 10px;
	font-size: 24px;
	color: #aaa;
	text-decoration: none
}

.CModal .close:hover,
 .close:hover,
.share-btn.snapchat a,
.share-btn.talk a,
.user-table a {
	color: #000
}

@font-face {
	font-family: germalt-alt-extrablack;
	src: url(https://krashy.com/assets/fonts/GermaltAlt-ExtraBlackItalic.woff2) format('woff2')
}

        
            .cText {
         font-family: 'germalt-alt-extrablack', sans-serif!important;
        
        text-align: center;
        text-shadow: 2px 2px 4px #000; /* Add shadow to the text */
        color: white;
        padding: 10px; /* Add padding for better visibility of the border */
    }
    
@font-face {
	font-family: Sofia-dwad;
	src: url(https://krashy.com/assets/fonts/SofiaProRegCond.woff2) format('woff2')
}

@font-face {
	font-family: Noy;
	src: url(https://krashy.com/assets/fonts/NoyhR-MediumItalic.woff2) format('woff2')
}
.primary-btn4 {
    height: 60px;
    text-indent: 5px;
    width: 60%;
    margin: 11px auto;
    background: #08b9cc;
    font-size: 16px;
    letter-spacing: 6px;
    box-shadow: 0 .5rem .5rem #0c5c64 !important;
    letter-spacing: 1px;
}
.primary-btn4, .share-btn {
    text-transform: uppercase;
    border-radius: 30px;
    display: block;
    color: #fff;
    font-weight: 700;
}

.btn-white {
    background: #fff;
    box-shadow: 0 2px 4px #7e8eb11f !important;
}
.btn-white, .btn-white:active, .btn-white:focus {
    border: 1px solid rgba(10, 33, 65, .05);
    color: #183b56;
}
.btn-sm {
    padding: 6px 16px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 500;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}




/* Auto-slide animation */
@keyframes askdate-slide {
    0%, 100% { transform: translateX(0); }
    16.67% { transform: translateX(-450px); }
    33.33% { transform: translateX(-900px); }
    50% { transform: translateX(-1350px); }
    66.67% { transform: translateX(-1800px); }
    83.33% { transform: translateX(-2250px); }
}


@keyframes askdate-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.askdate-card {
    width: 400px;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.askdate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.askdate-card:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.2),
        0 0 25px rgba(255, 255, 255, 0.5);
}

.askdate-card:hover::before {
    left: 100%;
    transition: 0.7s;
}

.askdate-header {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.askdate-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: askdate-moveBackground 20s linear infinite;
}

@keyframes askdate-moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.askdate-names {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.askdate-names h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.askdate-date {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.askdate-date:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.askdate-content {
    padding: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.98));
}

.askdate-message {
    color: #1f2937;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    padding-left: 28px;
    font-weight: 400;
}

.askdate-message::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    color: #a855f7;
    font-family: serif;
    opacity: 0.7;
}

.askdate-location {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(to right, #f8faff, #f3f6ff);
    border-radius: 16px;
    color: #4a5568;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.askdate-location:hover {
    transform: translateX(5px);
    background: linear-gradient(to right, #f3f6ff, #eef2ff);
    border-color: rgba(99, 102, 241, 0.2);
}

.askdate-location-icon {
    font-size: 1.3rem;
    animation: askdate-bounce 2s infinite;
}

@keyframes askdate-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.askdate-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: askdate-pulse 3s ease-out infinite;
}

@keyframes askdate-pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}


.askdate-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
    overflow: hidden;
}

.askdate-card {
    position: absolute;
    width: 300px;
    height: 450px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 1s ease, opacity 1s ease, filter 1s ease;
    transform-origin: center;
    opacity: 0;
    filter: blur(5px);
}

/* Center active card */
.askdate-card.active {
    transform: translateX(0) scale(1.1);
    opacity: 1;
    filter: blur(0);
    z-index: 3;
}

/* Left card */
.askdate-card.prev {
    transform: translateX(-320px) scale(0.9) rotateY(20deg);
    opacity: 0.7;
    z-index: 2;
}

/* Right card */
.askdate-card.next {
    transform: translateX(320px) scale(0.9) rotateY(-20deg);
    opacity: 0.7;
    z-index: 2;
}

/* Hidden cards */
.askdate-card.hidden-left {
    transform: translateX(-600px) scale(0.7);
    opacity: 0;
    z-index: 1;
}

.askdate-card.hidden-right {
    transform: translateX(600px) scale(0.7);
    opacity: 0;
    z-index: 1;
}










































































































