/* =================================================================
   LUXURY UI REFACTOR - تصميم فاخر ومُعاد بناؤه بالكامل
   - By Gemini
   ================================================================= */

/* 1. FONT IMPORTS & ROOT VARIABLES */
/* ----------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap");

:root {
    /* Color Palette - لوحة الألوان */
    --color-background: #0D1117;       /* خلفية داكنة جداً مثل GitHub */
    --color-surface-1: #161B22;        /* لون الأسطح والبطاقات */
    --color-surface-2: #21262D;        /* لون الأسطح عند التفاعل */
    --color-border: #30363D;           /* لون الحدود الخافت */
    --color-border-hover: #8B949E;     /* لون الحدود عند التفاعل */
    
    --color-text-primary: #E6EDF3;     /* لون النص الأساسي */
    --color-text-secondary: #8B949E;   /* لون النص الثانوي */
    
    --color-accent-gold: #FFD700;      /* اللون الذهبي كلون مميز أساسي */
    --color-accent-gold-glow: rgba(255, 215, 0, 0.15); /* لون التوهج الذهبي */
    
    --color-success: #238636;          /* لون النجاح (الأخضر) */
    --color-success-glow: rgba(35, 134, 54, 0.25);
    --color-danger: #DA3633;           /* لون الخطر (الأحمر) */
    --color-danger-glow: rgba(218, 54, 51, 0.25);

    /* Sizing & Spacing - الأحجام والمسافات */
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
    --spacing-unit: 8px;

    /* Effects - التأثيرات */
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --transition-duration: 0.25s;
    --font-primary: 'Cairo', sans-serif;
}


/* 2. GLOBAL & RESET STYLES */
/* ----------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul {
    list-style-type: none;
}

a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: color var(--transition-duration) ease;
}

a:hover {
    color: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

/* Custom Scrollbar - تصميم شريط التمرير */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-background);
}
::-webkit-scrollbar-thumb {
    background-color: var(--color-surface-2);
    border-radius: 20px;
    border: 2px solid var(--color-background);
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-border);
}


/* 3. UTILITY CLASSES */
/* ----------------------------------------------------------------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* 4. LAYOUT: HEADER & FOOTER */
/* ----------------------------------------------------------------- */

/* Header Container (Glassmorphism Effect) */
.Header_conitiner {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-unit) * 4;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.7); /* خلفية شبه شفافة */
    backdrop-filter: blur(10px); /* تأثير الزجاج */
    border-bottom: 1px solid var(--color-border);
}

/* ==============================================
   Modern CSS Refactor by Gemini
   - Utilizes CSS Variables for easy theming.
   - Enhanced responsiveness with CSS Grid.
   - Smoother transitions and modern hover effects.
   ==============================================
*/

/* :root -> Define global variables for colors, spacing, etc. */
:root {
    --bg-primary: #121212;      /* Darker main background */
    --bg-secondary: #1A1A1A;    /* Card/element background */
    --bg-tertiary: #2a3038;     /* Lighter element background (e.g., FAQ question) */
    --border-color: #3e444b;
    --text-primary: #e0e0e0;    /* Main text color (slightly off-white) */
    --text-secondary: #adb5bd;  /* Muted/secondary text color */
    --accent-color: #C6AB7A;    /* Gold accent color */
    --star-color: #ffc107;
    --white: #ffffff;
    
    --border-radius: 12px;
    --transition-speed: 0.3s;
    --shadow-color: rgba(0, 0, 0, 0.4);
    --accent-glow-color: rgba(198, 171, 122, 0.3);
}

/* General Body Styling (Recommended) */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Cairo', sans-serif; /* Assuming Cairo is used throughout */
}


/*
 * ===================================================================
 * Modern Profile Cards Section
 * ===================================================================
 * - Uses a responsive CSS Grid for the layout.
 * - Features a clean, modern card design with hover effects.
 * - Assumes CSS variables for colors and spacing are defined.
 * ===================================================================
*/

/* --- Prerequisite Variables (Example) --- */
:root {
  --bg-primary: #111317; /* Main page background */
  --bg-secondary: #1e2128; /* Card background */
  --text-primary: #ffffff;
  --text-accent: #00aaff; /* For the role */
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.4);
}

/* --- Section Container --- */
.container-developers {
  width: 100%;
  padding: 80px 20px;
  background-color: var(--bg-primary);
font-family: 'Cairo', sans-serif;
}

/* --- Responsive Grid Wrapper --- */
.profiles-wrapper {
  display: grid;
  /* This creates a grid that automatically fits columns
     with a minimum size of 280px and a max of 1fr (fractional unit) */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- The Profile Card --- */
.profile {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  text-align: center;
  position: relative; /* Needed for any potential future absolute positioning inside */
  overflow: hidden; /* Important for the banner image's border-radius */
  
  /* Subtle shadow for depth */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  
  /* Smooth transition for hover effects */
  transition: transform var(--transition-speed) ease-out, 
              box-shadow var(--transition-speed) ease-out;
}

.profile:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px var(--shadow-color);
}

/* --- Card Banner Image --- */
.profile .ds-top {
  height: 100px; /* Banner height */
  background-size: cover;
  background-position: center;
}

/* --- Avatar Holder --- */
.profile .avatar-holder2 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  
  /* This border color matches the card bg for a "cutout" look */
  border: 5px solid var(--bg-secondary);
  
  /* Pulls the avatar up to overlap the banner */
  margin-top: -50px;
  
  /* Centers the avatar horizontally */
  margin-left: auto;
  margin-right: auto;
  
  /* Adds a subtle shadow to the avatar itself */
  box-shadow: 0 0 10px var(--shadow-color);
  
  overflow: hidden;
  position: relative; /* Keeps it in the stacking context */
}

.profile .avatar-holder2 img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents the image from stretching */
}

/* --- Name and Role Typography --- */
.profile .name {
  margin-top: 15px;
  font-size: 1.25rem;
  font-weight: 700;
}

.profile .role {
  font-size: 1rem;
  margin-top: 5px;
  margin-bottom: 25px; /* Space at the bottom of the card */
}

.profile .name a,
.profile .role a {
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.profile .name a {
  color: var(--text-primary);
}
.profile .name a:hover {
  color: var(--text-accent);
}

.profile .role a {
  color: #C6AB7A;
}
.profile .role a:hover {
    filter: brightness(1.2); /* Makes the accent color slightly brighter on hover */
}


/* FAQ Section Styles */
.container-faq {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    font-family: 'Cairo', sans-serif;
    align-items: center;
    gap: 40px;
}

.container-faq .content {
    text-align: center;
}

.container-faq .content h1 {
    font-size: clamp(2.5rem, 5vw, 3rem); /* Responsive font size */
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.container-faq .content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.container-faq .faq {
    width: 100%;
    max-width: 800px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.container-faq .faq .faq-item {
    border-bottom: 1px solid var(--border-color);
}

.container-faq .faq .faq-item:last-child {
    border-bottom: none;
}

.container-faq .faq .faq-question {
    padding: 20px 25px;
    background: var(--bg-tertiary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-primary);
    transition: background-color var(--transition-speed) ease;
}

.container-faq .faq .faq-question:hover {
    background: var(--border-color);
}

.container-faq .faq .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background: var(--bg-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

/* When .active class is added via JS */
.container-faq .faq .faq-item.active .faq-answer {
    max-height: 300px; /* Increased max-height for longer answers */
    padding: 25px;
}

.container-faq .faq .faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform var(--transition-speed) ease;
}

.container-faq .faq .faq-item.active .faq-question::after {
    transform: rotate(45deg); /* Rotates '+' to look like 'x' */
}

.main-content {
    flex-grow: 1; /* This is the magic property! It pushes the footer down. */
}
/* --- Modern Footer Styling --- */
footer {
    background-color: var(--card-bg, #1e2124); /* Using a consistent dark color */
    color: var(--text-secondary, #b0b0b0);
    padding: 2.5em 1em;
    text-align: center;
    border-top: 1px solid var(--border-color-soft, rgba(255,255,255,0.1));
    margin-top: auto; /* Ensures it stays at the bottom of the flex container */
}

footer .continer aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

footer img {
    max-width: 100px; /* Control the logo size */
    margin-bottom: 0.5rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

footer a {
    color: var(--accent-color, #C6AB7A);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Customer Ratings Styles (Polished) */
.customer-ratings .rating {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 20px; /* Slightly increased gap */
    margin-bottom: 25px;
    background: var(--bg-secondary);
    padding: 25px; /* Slightly increased padding */
    border-radius: var(--border-radius);
    
    /* Replaced border with a more subtle shadow for a "floating" effect */
    border: 1px solid transparent; /* Keep border for structure, but make it invisible */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    
    /* Add a smooth transition for the hover effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add a subtle lift effect on hover */
.customer-ratings .rating:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.customer-ratings .rating img {
    width: 65px; /* Slightly larger avatar */
    height: 65px;
    border-radius: 50%;
    object-fit: cover; /* Prevents image from being stretched */
    
    /* Add a subtle ring around the avatar to make it pop */
    border: 3px solid var(--accent-color, #C6AB7A); 
}

.customer-ratings .rating-info {
    flex-grow: 1;
}

/* Style for the customer's name (assuming a class like .rating-name) */
.customer-ratings .rating-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 0 5px 0; /* Adjust spacing */
}

.customer-ratings .rating-stars {
    color: var(--star-color, #ffc107); /* Added a fallback color */
    margin-bottom: 8px;
    
    /* Add a glowing effect to the stars */
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5); 
}

/* Style for the customer's comment (assuming a class like .rating-text) */
.customer-ratings .rating-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary, #b0b0b0); /* Use a secondary text color for the comment */
}


/* Generic Card Title Style */
.card-title {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.Header_conitiner .logo img {
    width: 50px;
    height: auto;
}

/* تم تصحيح الخطأ الإملائي هنا */
.Header_container .logo img {
    width: 45px; /* حجم أنسب للارتفاع الجديد */
    height: auto;
    display: block; /* يزيل أي فراغات أسفل الصورة */
}

.Header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* تعديل بسيط للمسافة */
    height: 58px; /* ارتفاع أكبر لمزيد من الراحة البصرية */
    background: var(--color-surface-1);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    padding: 0 16px; /* زيادة الحشوة على الجانبين */
    
    /* ظل محدث وأكثر نعومة لمظهر عصري */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    
    transition: box-shadow 0.3s ease;
}

/* --- تم نقل التنسيق من هنا... --- */
.Header li {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* --- ...إلى هنا (على الرابط نفسه) --- */
.Header li a {
    display: block;
    text-decoration: none;
    color: inherit; /* ليرث اللون من العناصر الأعلى */
    font-weight: 500; /* وزن خط أنعم قليلاً */
    padding: 10px 22px; /* حشوة داخلية للرابط */
    border-radius: 50px;

    /* انتقال أنعم للتأثيرات */
    transition: background-color 0.25s ease, 
                color 0.25s ease, 
                transform 0.2s ease;
}

/* تأثير التمرير الآن على الرابط مباشرة */
.Header li a:hover {
    background-color: var(--color-surface-2);
    color: var(--white);
    transform: scale(1.03); /* تأثير تفاعلي بسيط جدًا */
}

/* .Header li::after{
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 50%;
    height: 2px;
} */

.Info {
    /* background: rgb(30, 33, 36); */
    /* border-left: 2px white solid; */
    /* border-right: 2px white solid; */

    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white !important;
    cursor: pointer;
    position: relative;
}

.Info .avatar {
    background: rgb(30, 33, 36);
    border-left: 2px #878787 solid;
    /* border-right: 2px white solid; */
    min-width: none; 
    /* height: 42px; */
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    gap: 0.7rem;
    color: white;
    padding: 7px 20px;
    padding-left: 10px;
    transition: 0.3s;
}

.Info .avatar:hover{
    background: rgb(60 65 72);
}

.Info .dropdown{
    position: absolute;
    top: 55px;
    background-color: #323232;
    width: 100%;
    text-align: left;
    padding: 10px;
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.Info .dropdown.active{
    opacity: 1;
    visibility: visible;
}

.Info .dropdown li{
    border-radius: 0.1rem;
    padding: 8px;
    transition: 0.3s;
    font-size: 14px;
}

.Info .dropdown li:hover{
    background-color: #545454;
}

.Info .dropdown li:first-child{
    border-bottom: 1px solid #fff;
}

.Info .dropdown li a{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0.5rem;
}

.Info .dropdown li a.logout i{
    color: #ff5555;
}

#dropdown_caret{
    transition: 0.3s;
}

#dropdown_caret.active{
    transform: rotate(180deg);
}

.Avatar {
    width: 35px;
    height: 35px;
}

.Avatar img {
    width: 100%;
    height: 100%;
    border: 1px rgb(184, 184, 184) solid;
    border-radius: 50%;
}

.Logout {
    background-color: rgb(37, 51, 83);
    width: 100px;
    height: 25px;
    border-radius: .3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px white solid;

}

.Logout h6 {
    color: white;
    font-size: 13px;
    font-weight: bold;
}

.continer {
    width: 80%;
    margin: 0 auto;
}

.log-discord {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 0.3rem;
    transition: 0.3s;
    cursor: pointer;
}

.log-discord:hover {
    background-color: #2b2b68;
}

.Header_conitiner .logo {
    display: flex;
    min-width: 160px;
    justify-content: center;
}

.Header_conitiner .logo img {
    width: 50px;
}

.Header_conitiner .logo h3 {
    color: #f7e400;
    font-weight: bold;
}

.Bars {
    display: none;
    color: white;
}

.Bars i {
    color: white;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
}

.Bars .dropdownphone{
    z-index: 9999;
    position: absolute;
    top: 60px;
    background-color: #323232;
    width: auto;
    text-align: left;
    padding: 10px;
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.Bars .dropdownphone.active{
    opacity: 1;
    visibility: visible;
}

.Bars .dropdownphone li{
    border-radius: 0.1rem;
    padding: 8px;
    transition: 0.3s;
    font-size: 14px;
}

.Bars .dropdownphone li{
    border-bottom: 1px solid #999;
}

.Bars .dropdownphone li a{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0.5rem;
}

.Bars .dropdownphone li i{
    font-size: 17px;
}

.Bars .dropdownphone li:hover{
    background-color: #545454;
}

@media screen and (max-width: 1000px) {
    header {
        display: none;
    }

    .Header_conitiner .logo {
        display: none;
    }

    .Bars {
        display: block;
    }

    footer .continer aside p{
        font-size: .8rem
    }

}
:root {
    --color-primary-yellow: #ffea00;
    --color-dark-elements: #0d1114;
    --color-light-text: #ffffff;
}
main {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* تم إزالة التكرار */
    background-image: var(--background-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden; /* يمنع أي عناصر من الخروج عن الشاشة */
}

 main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1;
} 

main .continer {
    position: relative;
    z-index: 2; /* لوضع المحتوى فوق الطبقة اللونية */
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem; /* مسافة أنسب بين العناصر */
    text-align: center;
}

main .continer h1 {
    color: #C6AB7A;
    font-size: 2.5rem;
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
}

/* --- تنسيق موحد للنصوص مع ظل لتحسين الوضوح --- */
main .container h2,
main .container h4,
main .container h6 {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin: 0;
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
}

main .continer .buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5.5rem;
}

main .container .buttons .button {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: rgba(255,234,0,255);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none; /* تم استبدال الإطار المتقطع بظل */
    cursor: pointer;
    
    /* ظل عصري يعطي بروز للزر */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25), 
                inset 0 -4px 6px rgba(0, 0, 0, 0.2);

    /* حركة انتقال انسيابية */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
main .continer .buttons .button:hover {
    transform: rotate(180deg);
}

/* تأثير تفاعلي جديد عند مرور الماوس */
main .container .buttons .button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
                inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

/* تنسيق الأيقونة داخل الزر */
main .container .buttons .button i {
    color: var(--color-dark-elements);
    font-weight: 900;
    font-size: 3.5rem;
    font-family: 'Cairo', sans-serif;
    transition: transform 0.4s ease; /* إضافة حركة للأيقونة أيضًا */
}

main .container .buttons .button:hover i {
    transform: rotate(15deg); /* الأيقونة تميل قليلاً عند مرور الماوس */
}

@media (min-width: 1500px) {
    main .continer h6 {
        color: rgb(255, 255, 255);
        width: 700px;
        text-align: center;
        font-size: 16px;
    }
}


/* =================================
   General Section Styles
   ================================= */

.Scripts_Section,
.Feutchers_Section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 40px 0;
    text-align: center;
}

.Feutchers_Section {
    border-bottom: 10px solid #ffea00;
}

.Scripts_Section p,
.Feutchers_Section p {
    max-width: 600px;
    margin-top: 10px;
    color: #adadad;
}


/* =================================
   Scripts Section
   ================================= */

.Scripts_Section h2 {
    color: white;
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}

/* --- Buttons (Modernized) --- */
.Scripts_Section .BottounsBuy {
    display: flex;
    justify-content: center;
    align-items: center; /* Ensures buttons are aligned vertically */
    gap: 2rem;
    padding-bottom: 2rem;
}

.Scripts_Section .BottounsBuy button {
    /* Replaced fixed width with padding for flexibility */
    padding: 0.8em 2em; 
    
    /* Using variables from the previous update for consistency */
    background: transparent; /* Makes the button background transparent */
    border: 2px solid var(--card-bg-hover); /* A clear, colored border */
    border-radius: 0.5rem; /* Consistent border radius */
    color: var(card-bg); /* Text color matches the border */
    
    font-size: 1rem; /* Explicit font size */
    font-weight: bold;
    text-transform: uppercase; /* Makes text stand out */
    letter-spacing: 1px; /* Adds some spacing between letters */
    cursor: pointer;
    
    /* Smoother and more specific transition */
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

/* --- Hover Effect --- */
.Scripts_Section .BottounsBuy button:hover {
    background: rgb(255, 255 ,255); /* Fills the button with the accent color */
    color: #000; /* Changes text color to white for contrast */
}

/* --- :root Variables for easy theme management --- */
:root {
    --card-bg: #1e2124; /* Dark background for the card */
    --card-bg-hover: #282c34; /* Slightly lighter background */
    --text-color: #e0e0e0; /* Off-white for better readability */
    --border-color-soft: rgba(255, 255, 255, 0.1); /* Softer border/shadow color */
    --accent-color: #C6AB7A; /* Accent color for buttons and highlights */
    --card-border-radius: 0.75rem; /* A slightly larger border radius */
    --transition-speed: 0.3s; /* Consistent transition speed */
}

/* --- Script Cards Container --- */
.Scripts_Section .Continer_Scripts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5em; /* Increased gap for more breathing room */
    padding: 2em 0; /* Add some padding to the section */
}

/* --- Single Script Card (Modernized) --- */
.Scripts_Section .Continer_Scripts .Scripts {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Better content distribution */
    width: 280px; /* Slightly wider */
    min-height: 200px; /* Use min-height instead of fixed height */
    padding: 1rem; /* More generous padding */
    background: var(--card-bg);
    border-radius: var(--card-border-radius);
    color: var(--text-color);
    font-weight: bold;
    font-family: 'Cairo', sans-serif;
    border: 1px solid var(--border-color-soft); /* Replaced harsh border with a soft one */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Added a subtle shadow for depth */
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease; /* Smooth transition for hover effects */
    animation: bounceIn 1s;
}

/* --- Hover Effect --- */
.Scripts_Section .Continer_Scripts .Scripts:hover {
    transform: translateY(-8px); /* Lifts the card up */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Enhances the shadow */
    border: solid 1px #fff;
}


.Scripts_Section .Continer_Scripts .Scripts .ScriptPhoto {
    width: 100%; /* Use full width inside the padded card */
    margin-bottom: 1rem; /* Add space between photo and text */
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptPhoto img {
    width: 100%;
    height: auto; /* Let height adjust automatically */
    display: block; /* Removes potential whitespace below the image */
    border-radius: calc(var(--card-border-radius) - 5px); /* Slightly smaller radius than the card */
    /* Removed the extra border on the image for a cleaner look */
}

.Scripts_Section .Continer_Scripts .Scripts .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Use full width */
}

.Scripts_Section .Continer_Scripts .Scripts .center .info {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px; /* Slightly larger */
    height: 28px; /* Slightly larger */
    background: var(--card-bg-hover);
    border: none; /* Removed border */
    border-radius: 0.3rem;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.Scripts_Section .Continer_Scripts .Scripts .center .info:hover {
    background-color: var(--accent-color); /* Changes color on hover */
}

.InfoScriptsBuy {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
}

.product-card {
    background: linear-gradient(145deg, #2a2d32, #1e2124); /* Subtle gradient background */
    border: 1px solid #9b9b9b;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90vw; /* Responsive width */
    max-width: 450px; /* Max width for larger screens */
    color: white;}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 28px;
    font-family: 'Cairo', sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px; /* Add gap between stars */
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5); /* Glowing effect */
}

.product-price {
    font-size: 26px;
    font-weight: bold;
    color: var(--accent-color, #C6AB7A); /* Use accent color to highlight */
    margin-bottom: 15px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
    color: var(--text-secondary, #b0b0b0);
}

.product-buttons {
    display: flex;
    gap: 15px; /* Use gap for spacing */
}

.product-button {
    flex-grow: 1; /* Allow buttons to share space equally */
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.add-to-cart-button:hover {background-color: #0069d9;}
.watch-video-button:hover {background-color: #555;}

/* --- Features Section (Modernized) --- */
.Feutchers_Section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 4rem 1rem; /* Add vertical padding for the whole section */
    width: 100%;
}

.Feutchers_Section h2 {
    font-weight: bold;
    color: #fff; /* Brighter white for the main title */
    font-size: 2.5rem; /* Larger font size for importance */
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Adds a colored accent underline to the main title */
.Feutchers_Section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color, #C6AB7A);
    border-radius: 2px;
}

.Feutchers_Section .Continer_Feutchers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    width: 100%;
    max-width: 1200px; /* Set a max-width for the container on large screens */
}


/* --- Single Feature Card --- */
.Feutchers_Section .Continer_Feutchers .Feutchers {
    /* Replaced fixed width with a flexible, responsive setup */
    flex: 1 1 300px;
    max-width: 380px;
    
    background: var(--card-bg, #1e2124);
    
    /* Replaced the harsh border with a colored top border accent */
    border: 1px solid var(--border-color-soft, rgba(255,255,255,0.1));
    border-top: 4px solid var(--accent-color, #C6AB7A);
    
    border-radius: .75rem; /* Slightly larger radius */
    padding: 2em; /* More generous padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for the feature card */
.Feutchers_Section .Continer_Feutchers .Feutchers:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* --- Icon Styling --- */
/* The .title class seems redundant, directly styling the icon and h3 */
.Feutchers_Section .Feutchers i {
    font-size: 2.5rem;
    color: var(--accent-color, #C6AB7A); /* Use accent color to make icon pop */
    
    /* Add a background shape to the icon */
    background: rgba(255, 255, 255, 0.05);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.Feutchers_Section .Feutchers h3 {
    margin-top: 0;
    color: #fff; /* Bright white for title */
    font-weight: bold;
    font-size: 1.25rem;
}

.Feutchers_Section .Feutchers h5 {
    color: var(--text-secondary, #b0b0b0); /* Softer color for description text */
    font-size: .9rem;
    line-height: 1.6; /* Improved readability */
}

footer {
    width: 100%;
    height: 20vh;
    background-color: rgb(22, 25, 29);
}

footer .continer {
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    padding: 3rem;
    justify-content: flex-end;
}

footer .continer aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: white;
    gap: 10px;
    font-size: 1rem
}

footer .continer aside p{
    text-align: left;
}


footer .continer aside img{
    width: 60px;
}

/* --- Free Products Section --- */
main .continer_free {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 98%;
    height: 76%;
    gap: 1rem;
    z-index: 999;
}

main .continer_free h2 {
    color: #fff;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

main .continer_free p {
    color: var(--text-secondary, #b0b0b0);
    text-align: center;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Merged the redundant '.free' and '.Proudacts_Free_Continer' classes */
main .continer_free .Proudacts_Free_Continer {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* --- Modernized Product Card --- */
main .continer_free .freeProudact {
    /* Responsive sizing for the card */
    flex: 1 1 280px;
    max-width: 300px;
    
    background: var(--card-bg, #1e2124);
    /* Replaced harsh border with a soft border and shadow */
    border: 1px solid var(--border-color-soft, rgba(255, 255, 255, 0.1));
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    
    border-radius: .75rem;
    color: white;
    overflow: hidden; /* Important for the image border-radius */
    
    /* Changed layout to stack image and content vertically */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main .continer_free .freeProudact:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Image container now takes full width of the card */
main .continer_free .freeProudact .ScriptPhoto {
    width: 100%;
    height: 160px; /* Fixed height for a uniform look */
    background-color: #333;
}

main .continer_free .freeProudact .ScriptPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents image stretching */
    /* Removed border from the image itself */
}

/* Container for the text and button below the image */
main .continer_free .freeProudact .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem; /* Proper padding for content */
    gap: 1rem;
}

main .continer_free .freeProudact .info-text h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

/* --- Redesigned Download Button --- */
main .continer_free .freeProudact .Download {
    /* Removed percentage width in favor of fixed dimensions */
    width: 40px;
    height: 40px;
    
    background-color: #2a3038;
    border: 1px solid #555;
    border-radius: 50%; /* A modern circular button */
    
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Prevents the button from shrinking */
}

/* Assuming you use an icon font like Font Awesome */
main .continer_free .freeProudact .Download i {
    color: #fff;
    font-size: 1.2rem;
}

main .continer_free .freeProudact .Download:hover {
    background-color: var(--accent-color, #C6AB7A);
    border-color: var(--accent-color, #C6AB7A);
    transform: scale(1.1);
}

main .continer_license {
    width: 100%;
    /* max-height was removed to prevent content from being cut off if the table is long */
    display: flex;
    justify-content: center;
    padding: 4rem 1rem; /* Add some spacing around the section */
}

main .continer_license .license {
    width: 90%;
    max-width: 1100px; /* Set a max-width for better readability on large screens */
    background: var(--card-bg, #1e2124);
        /* Replaced harsh border with a soft one and a modern shadow */
    border: 1px solid var(--border-color-soft, rgba(255, 255, 255, 0.1));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        border-radius: .75rem;
    padding: 2em;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
}

main .license h2 {
    font-weight: bold;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color-soft, rgba(255, 255, 255, 0.1));
}

main .license p {
    color: var(--text-secondary, #b0b0b0);
    max-width: 800px;
    margin-top: 10px;
    line-height: 1.6;
}

/* --- Modernized Table --- */
main .license table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse; /* Cleaner borders */
    box-shadow: none; /* Shadow is on the main card, not the table */
    font-size: 0.95rem;
}

/* Table Header */
main .license th {
    background-color: rgba(255, 255, 255, 0.05); /* Subtle background for the header */
    color: #fff;
    font-weight: bold;
    padding: 16px 15px;
    text-align: left; /* Left-aligning headers is often more readable */
}

/* Table Body Cells */
main .license td {
    padding: 16px 15px;
    color: var(--text-secondary, #b0b0b0);
    border-bottom: 1px solid var(--border-color-soft, rgba(255, 255, 255, 0.08));
    text-align: left; /* Match header alignment */
}

/* Center-align only the action button column if needed */
main .license td:last-child,
main .license th:last-child {
    text-align: center;
}

/* Zebra-striping for better readability */
main .license tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, 0.15);
}

/* Row hover effect */
main .license tr:hover {
    background-color: var(--card-bg-hover, #282c34);
}

/* --- Button in Table --- */
main .license td a {
    display: inline-block; /* Better for padding */
    border-radius: .3rem;
    font-weight: bold;
    padding: .4em .9em; /* Using 'em' for scalable padding */
    background-color: var(--accent-color, #C6AB7A); /* Consistent accent color */
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

main .license td a:hover {
    transform: scale(1.05);
    background-color: #0056b3; /* A darker shade of the accent on hover */
}

@media (max-width: 860px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }
    th, td {
        text-align: left;
        padding: 10px;
        border-bottom: 1px solid #ddd;
    }
    tr {
        margin-bottom: 15px;
    }
}

.badge.badge-success{
    border-radius: .25rem;
    font-weight: bold;
    padding: .1rem .5rem;
}

.InfoScripts {
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 600px) {
    .InfoScripts .Continer_Img img {
        display: none;
    }

    .InfoScripts  {
        width: 65%;
        height: 30%;
    }

    .InfoScripts .Continer_Img  {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;

    }
    
}

.InfoScripts .center {
    text-align: center;
}

.InfoScripts .center h2 {
    margin-top: .5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.InfoScripts .center h6 {
    color: rgb(235, 235, 235);
}

.InfoScripts .Continer_Img {
    width: 65%;
    height: 75%;
}

.InfoScripts .Continer_Img img {
    border: 1px solid #9b9b9b;
    border-radius: 10px;
    width: 100%;
    height: 80%;
}

.InfoScripts .Continer_Img .Buttons {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.InfoScripts .Continer_Img .Buttons .button {
    width: 100px;
    height: 30px;
    border-radius: .5rem;
    border: 1px solid #9b9b9b;
    background: rgb(49 54 59);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: .5s;
}

.InfoScripts .Continer_Img .Buttons .button:hover {
    background: rgb(65 71 77);
}

.InfoScripts .Exit {
    position: absolute;
    top: 1px;
    right: 9px;
    font-size: 34px;
    color: rgb(255, 0, 0);
    cursor: pointer;
}


/* --- Main Form Container --- */
main .continer_change {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 75vh; /* Use min-height instead of height for flexibility */
    padding: 2rem 1rem;
}

/* --- Form Card --- */
main .continer_change .change {
     width: 90%;
    max-width: 600px; /* Set a max-width for readability */
    background: var(--card-bg, #1e2124);
    border: 1px solid var(--border-color-soft, rgba(255, 255, 255, 0.1));
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border-radius: .75rem;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
    gap: 1rem;
}

/* --- Typography --- */
main .continer_change .change h2 {
    font-weight: bold;
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color-soft, rgba(255, 255, 255, 0.1));
}

main .continer_change .change p {
    color: var(--text-secondary, #b0b0b0);
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
}

main .continer_change h3 {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    margin: 0 0 0.5rem 0; /* Spacing below the label */
}


/* --- Modernized Input Fields --- */
main .continer_change .input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem;
    background-color: #2a3038;
    border: 1px solid #555; /* A clearer, but still soft, border */
    border-radius: .4rem; /* Softer corners */
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Clearer placeholder text */
main .continer_change .input::placeholder {
    color: #888;
}

/* CRITICAL: Add a :focus state for accessibility and UX */
main .continer_change .input:focus {
    outline: none;
    border-color: var(--accent-color, #C6AB7A);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Styling for disabled/readonly inputs */
main .continer_change .input[readonly],
main .continer_change .input[disabled] {
    background-color: #222;
    opacity: 0.7;
    cursor: not-allowed; /* Correct cursor for disabled elements */
}


/* --- Button Container --- */
main .continer_change .buttons {
    display: flex;
    justify-content: flex-end; /* A common way to right-align */
    align-items: center;
    width: 100%;
    gap: 1rem;
    margin-top: 1rem;
}

/* --- Modernized Button --- */
main .continer_change .buttons button[name="ChangeLicense"] {
    /* Base button styles for consistency */
    padding: 0.75em 1.5em;
    border-radius: .4rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;

    /* Specific "confirm" button style */
    background-color: #28a745; /* A modern, accessible green */
    color: white;
}

main .continer_change .buttons button[name="ChangeLicense"]:hover {
    background-color: #218838; /* Darker shade on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.close_continer {
    width: 100%;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgb(30, 33, 36);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid white;
    color: white;
    font-size: 14px;
    transition: transform 0.7s ease-in-out;
}

.close_continer .close:hover {
    transform: rotate(180deg);
}

main .continer_addScripts {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 70vh;
    z-index: 9999;
    flex-direction: column;
}

main .continer_addScripts .AddScripts {
    width: 90%;
    background: rgb(30, 33, 36);
    border: 1px solid #9b9b9b;
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
    gap: 1rem;
    overflow-x: hidden;
    overflow-y: auto; 
}

main .continer_addScripts .AddScripts h2 {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

main .continer_addScripts .AddScripts p {
    color: #adadad;
    max-width: 600px;
    margin-top: 10px;
}

main .continer_addScripts h3 {
    color: white;
    font-weight: bold;
}

main .continer_addScripts .input {
  width: 100%;
  height: 2.5rem;
  padding: .56rem .75rem;
  background-color: #2a3038;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  color: rgb(209, 209, 209);
}

main .continer_addScripts .input::placeholder{
    color: rgb(209, 209, 209);
  }

main .continer_addScripts .input[name="License"] {
    width: 100%;
    height: 2.875rem;
    padding: .56rem .75rem;
    background-color: #2a3038;
    border: 1px solid #9b9b9b;
    cursor: no-drop;
    border-radius: 2px;
    color: rgb(209, 209, 209);
}

main .continer_addScripts .buttons {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 30px;
    gap: 20px;
}

main .continer_addScripts .buttons button[name="ChangeLicense"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons button[name="ChangeLicense"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_addScripts .buttons button[name="AddScripts"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons button[name="AddScripts"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_addScripts .buttons button[name="AddScriptsFree"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons button[name="AddScriptsFree"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_band {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75vh;
    z-index: 9999;
}

main .continer_band .band {
    width: 90%;
    background: rgb(30, 33, 36);
    border: 1px solid #9b9b9b;
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
    gap: 1rem;
}

main .continer_band .band h2 {
    font-weight: bold;
    color: white;
    font-size: 1.5rem;
}

main .continer_band .band p {
    color: #adadad;
    max-width: 600px;
    margin-top: 10px;
}

main .continer_band  h3 {
    color: white;
    font-weight: bold;
}

main .continer_band .input {
  width: 100%;
  height: 2.875rem;
  padding: .56rem .75rem;
  background-color: #2a3038;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  color: rgb(209, 209, 209);
}

main .continer_band .input::placeholder{
    color: rgb(209, 209, 209);
  }

main .continer_band .input[name="License"] {
    width: 100%;
    height: 2.875rem;
    padding: .56rem .75rem;
    background-color: #2a3038;
    border: 1px solid #9b9b9b;
    cursor: no-drop;
    border-radius: 2px;
    color: rgb(209, 209, 209);
}

main .continer_band .buttons {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 30px;
    gap: 20px;
}

main .continer_band .buttons button[name="ChangeLicense"],
main .continer_band .buttons button[name="BandButton"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_band .buttons button[name="ChangeLicense"]:hover,
main .continer_band .buttons button[name="BandButton"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_addScripts .buttons button[name="ChangeAccounts"],
main .continer_addScripts .buttons button[name="ChangeLicenseAdmin"],
main .continer_addScripts .buttons button[name="FreeChangeScript"],
main .continer_addScripts .buttons button[name="EditScripts"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(0, 255, 0, 0.555) -68%, rgba(0, 73, 0, 0.336)); 
    border: 2px solid rgb(0, 160, 0); 
    color: rgb(0, 300, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons button[name="ChangeAccounts"]:hover,
main .continer_addScripts .buttons button[name="ChangeLicenseAdmin"]:hover,
main .continer_addScripts .buttons button[name="EditScripts"]:hover,
main .continer_addScripts .buttons button[name="FreeChangeScript"]:hover {
    background: rgb(0, 160, 0);
    color: white; 
}

main .continer_addScripts .buttons a[name="RedButton"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    background: radial-gradient(rgba(255, 0, 0, 0.555) -68%, rgba(73, 0, 0, 0.336)); 
    border: 2px solid rgb(160, 0, 0); 
    color: rgb(255, 0, 0);
    transition: 0.5s;
}

main .continer_addScripts .buttons a[name="RedButton"]:hover {
    background: rgb(160, 0, 0);
    color: white; 
}

.swal2-container {
    z-index: 999999 !important;
}

.swal2-popup {
    background: rgb(30, 33, 36) !important;
    box-shadow: rgb(0 0 0 / 25%) 0 0.0625em 3px, rgb(0 0 0 / 55%) 0 0.025em 0.5em, rgb(255 255 255 / 10%) 0 0 0 1px inset !important;
    border-radius: .5rem !important;
}

.swal2-title {
    color: rgb(255, 255, 255);
}

.swal2-timer-progress-bar {background-color: #9b9b9b}