.ta-btn {
    display: block;
    width: 100%;
    max-width: 300px; /* Limit width on larger screens */
    height: 50px; /* Increased height */
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: 10px auto; /* Centering */
    border: none;
    position: relative;
    overflow: hidden;
}

/* Animation Effect */
.ta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease-in-out;
}

.ta-btn:hover::before {
    left: 100%;
}

/* Button 1: Red */
.ta-btn-1 {
    background: #e74c3c;
    color: white;
}
.ta-btn-1:hover {
    background: #c0392b;
}

/* Button 2: Light Blue */
.ta-btn-2 {
    background: #3498db;
    color: white;
}
.ta-btn-2:hover {
    background: #2980b9;
}

/* Button 3: Yellow */
.ta-btn-3 {
    background: #f1c40f;
    color: black;
}
.ta-btn-3:hover {
    background: #d4ac0d;
}

/* Button 4: Green */
.ta-btn-4 {
    background: #2ecc71;
    color: white;
}
.ta-btn-4:hover {
    background: #27ae60;
}

/* Button 5: Pink */
.ta-btn-5 {
    background: #e91e63;
    color: white;
}
.ta-btn-5:hover {
    background: #c2185b;
}

/* Responsive: Full width on small screens */
@media (max-width: 600px) {
    .ta-btn {
        max-width: 100%;
    }
}


.faq-item {
  margin-bottom: 15px;
  border: 1px solid #444; /* Darker border for dark theme */
  border-radius: 5px;
  background-color: #222; /* Dark background for the FAQ item */
}

.question {
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333; /* Slightly lighter background for the question header */
  color: #fff; /* White text for visibility */
  transition: background 0.3s ease, color 0.3s ease;
}

.question:hover {
  background-color: #444; /* Highlighted background on hover */
}

.answer {
  display: none;
  padding: 15px;
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid #444; /* Match border color with the dark theme */
  background-color: #222; /* Dark background for the answer */
  color: #ddd; /* Light gray text for readability */
}

.toggle-icon {
  font-size: 20px;
  font-weight: bold;
  color: #fff; /* White icon for dark theme */
  transition: transform 0.3s ease;
}

.faq-item.open .toggle-icon {
  transform: rotate(45deg); /* Rotate icon to indicate open state */
}






.card {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px; /* 10px margin on the left */
    margin-right: 10px; /* 10px margin on the right */
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.download-links .link-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Ensures spacing between elements */
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.download-links .link-item:last-child {
    border-bottom: none;
}

.link-item img {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    object-fit: cover;
}
.link-item i {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.link-item span {
    flex-grow: 1; /* Ensures text stays to the left */
    text-align: left; /* Aligns text to the left */
    font-size: 1rem;
}

.link-btn {
    background: #fff;
    color: #000 !important; /* Ensures black text */
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.link-btn:hover {
    background: #ff0000 !important; /* Hover background color */
    color: #ffffff !important; /* Hover text color */
}

@keyframes rgb-animation {
    0% { color: #ff0000; }  /* Red */
    25% { color: #ff8800; } /* Orange */
    50% { color: #00ff00; } /* Green */
    75% { color: #0088ff; } /* Blue */
    100% { color: #ff00ff; } /* Purple */
}

.rgb-text {
    font-size: 1.2em;
    font-weight: bold;
    animation: rgb-animation 3s infinite alternate; /* Apply RGB effect */
}

.soutick-cool-btn {
    display: block;
    width: calc(100% - 40px);
    margin-inline: 20px;
    padding: 14px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none !important;
    color: #fff !important;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(255, 65, 108, 0.3);
    transition: border-radius 0.4s ease, background 0.3s ease;
}

/* On hover: change corners in a cool way */
.soutick-cool-btn:hover {
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    color: #fff !important;
    text-decoration: none !important;
}

/* Shine effect */
.soutick-cool-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
}

.soutick-cool-btn:hover::before {
    animation: shine 0.8s forwards;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}


/*Pop up style*/

/* Bell Container */
#bell-container {
    position: fixed;
    bottom: 22px;
    left: 22px;
    z-index: 1000;
}

#bell-icon {
    width: 50px;
    height: 50px;
    background: #ff0000; /* Use 'background' instead of 'background-color' */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: glowing 1.5s infinite alternate;
}


#bell-icon i {
    font-size: 24px;
    color: #fff;
}

/* Notification Container */
.notification-container {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000; /* Solid black background */
    padding: 20px;
    color: white;
    font-family: Arial, sans-serif;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Fade-in effect */
}

.notification-container.show {
    opacity: 1;
}

.notification-container p {
    margin: 0 0 10px 0;
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.notification-container p::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: #fff;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Notification Buttons */
.notification-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.notification-buttons button {
    background-color: #333; /* Dark background for buttons */
    border: 2px solid #555; /* Border for a more professional look */
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.notification-buttons button i {
    margin-right: 10px;
    font-size: 20px; /* Slightly larger icons */
    transition: transform 0.3s ease, color 0.3s ease;
}

.notification-buttons .telegram-channel-button {
    background-color: #0088cc;
}

.notification-buttons .telegram-group-button {
    background-color: #0088cc;
}

/* Hover Effects */
.notification-buttons button:hover {
    background-color: #555; /* Lighten the background on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.notification-buttons .telegram-channel-button::before,
.notification-buttons .telegram-group-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.5s ease, height 0.5s ease, top 0.5s ease, left 0.5s ease;
    border-radius: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.notification-buttons .telegram-channel-button:hover::before,
.notification-buttons .telegram-group-button:hover::before {
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
}

.notification-buttons .telegram-channel-button:hover i,
.notification-buttons .telegram-group-button:hover i {
    transform: rotate(360deg) scale(1.2); /* Rotate and scale up on hover */
    color: #fff; /* Change color on hover */
}

/* Text Change on Hover */
.notification-buttons .telegram-channel-button:hover span {
    content: 'Join Telegram Channel';
}

.notification-buttons .telegram-group-button:hover span {
    content: 'Join Telegram Group';
}

/* Close Button */
.notification-close {
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 10px;
    color: #888;
    padding: 8px 16px;
    border: 1px solid #888; /* Border to give it a button feel */
    border-radius: 20px; /* Rounded edges for a button look */
    background-color: transparent; /* Transparent background */
    transition: color 0.3s, border-color 0.3s, background-color 0.3s; /* Smooth transitions */
}

.notification-close:hover {
    color: #fff;
    border-color: #fff; /* Change border color on hover */
    background-color: rgba(255, 255, 255, 0.1); /* Subtle background on hover */
}




/* Disable blue highlight on all elements */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}

/* Screenshot Slider */
.tmdb-slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tmdb-slider-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.tmdb-screenshot {
    min-width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

/* Navigation Buttons */
.tmdb-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.tmdb-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.tmdb-prev { left: 10px; }
.tmdb-next { right: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .tmdb-slider-btn { font-size: 16px; padding: 8px 12px; }
}
.tmdb-trailer {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    background-color: #000;
    cursor: pointer;
}

.tmdb-trailer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.trailer-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: url('https://img.icons8.com/ios-filled/100/ffffff/play.png') no-repeat center center;
    background-size: 60%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}


        

/* FAQ Container */
.custom-faq-container {
    width: 100%;
    max-width: 600px;
    margin: 10px auto;
    border: 1px solid white;
    padding: 5px;
    border-radius: 8px;
}

/* FAQ Items */
.custom-faq-item {
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* FAQ Title */
.custom-faq-title {
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
}

/* Plus and Minus Icon */
.custom-faq-title::after {
    content: "+";
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s;
    float: right;
}

/* When active, change "+" to "-" */
.custom-faq-item.active .custom-faq-title::after {
    content: "-";
    transform: rotate(180deg);
}

/* FAQ Content (Hidden by default) */
.custom-faq-content {
    display: none;
    padding: 10px;
    font-size: 14px;
    animation: fadeIn 0.3s ease-in-out;
}

/* Expand animation */
.custom-faq-item.active .custom-faq-content {
    display: block;
}

/* Smooth Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-3px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-faq-container {
        width: 95%;
    }
    .custom-faq-title {
        font-size: 14px;
        padding: 8px;
    }
    .custom-faq-content {
        font-size: 13px;
        padding: 8px;
    }
}


.my-contact-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    
    padding: 20px; /* Add padding for spacing */
}

.my-contact-form form {
    width: 100%;
    max-width: 500px; /* Optional: Limit max-width for better UI */
     
   padding: 20px; /* Form padding */
    
}

.my-contact-form-label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #e0e0e0; /* Light text color */
    margin: 12px 0;
}

.my-contact-form-input {
    width: 100%;
    padding: 12px 10px;
    border-radius: 6px;
    border: 1px solid #3a3a3a; /* Dark border */
    background-color: #2b2b2b; /* Input background */
    font-weight: 500;
    font-size: 16px;
    color: #e0e0e0; /* Light text color */
    outline: none;
    resize: none;
}

.my-contact-form-input:focus {
    border-color: #6a64f1; /* Highlight border on focus */
    box-shadow: 0px 3px 8px rgba(106, 100, 241, 0.5); /* Subtle focus shadow */
}

.my-contact-form-btn {
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    padding: 14px 32px;
    border: none;
    font-weight: 600;
    background-color: #6a64f1; /* Button color */
    color: white; /* Text color */
    width: 100%;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.3s ease; /* Smooth transition */
}

.my-contact-form-btn:hover {
    background-color: #584edb; /* Slightly darker on hover */
    box-shadow: 0px 3px 8px rgba(106, 100, 241, 0.7); /* Enhanced shadow on hover */
}