@import url("https://fonts.googleapis.com/css2?family=Cairo:ital,wght@0,400;0,500;0,700;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nabla:ital,wght@0,400;0,500;0,700;1,300&display=swap");

:root {
    --background-image: url();
    --bg-dark: #121212;
    --bg-darker: #1e1e1e;
    --card-bg: #242424;
    --selected-bg: #2a2a2a;
    --accent-color: rgba(63, 30, 0, 0.397);
    --video-color: #bc1a1a4d;
    --accent-border-color: rgba(252, 248, 239, 0.61);
    --accent-video-color: rgb(165, 25, 25);
    --discord-blue: #5865f27a;
    --text-light: #e0e0e0;
    --text-muted: #b0b0b0;
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
}

ul {
    list-style-type: none;
}

li {
    transition: 0.5s all;
}

::-webkit-scrollbar {
    display: none;
}

body {
    font-family: "Cairo", sans-serif;
    background: #1a1a1a00;
    background-image: url('path/to/your-space-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    padding-bottom: 40px;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(63, 30, 0, 0.836);
    z-index: -1;
}

.Header_conitiner {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    z-index: 99999;
    background-color: var(--accent-color);
    
}

.Header {
    min-width: 630px;
    height: 60px;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    
}

.Header li {
    padding: 10px 16px;
    border: 1.5px solid var(--accent-border-color);
    border-radius: calc(calc(1rem * 0.5) * 0.75);
    background: var(--accent-color);
    color: fffbackground-color;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: bold;
}

.Header li:hover {
    background-color: rgba(32, 16, 0, 0.719);
}

.Info {
    border-radius: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.Info .avatar {
    background: rgb(30, 33, 36);
    border-left: 4px solid #878787;
    min-width: none;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    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 #999;
}

.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%;
}

.continer {
    width: 80%;
    margin: 0 auto;
}

.log-discord {
    background: var(--discord-blue);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.log-discord:hover {
    background: #535fc7ad;
}

.discord-arabic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.discord-arabic .left-col {
    flex: 0 0 auto;
}

.discord-arabic .right-col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.Header_conitiner .logo {
    display: flex;
    min-width: 160px;
    justify-content: center;
}

.Header_conitiner .logo img {
    width: 50px;
}

.Header_conitiner .logo h3 {
    color: #1088f9;
    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.9rem;
    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;
    }
}

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;
}

/* تنسيق أيقونة النجمة */
.favorite-star {
    color: #b0b0b0;
    cursor: pointer;
    font-size: 18px;
    margin-right: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.favorite-star:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.favorite-star.favorited {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}

main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('https://media.discordapp.net/attachments/1371061294236434485/1376815268252352592/ChatGPT_Image_May_27_2025_09_51_53_AM.png?ex=6836b2a3&is=68356123&hm=6c51a61a0250f10a4f6893ccd387b0f4f93e83dab3cbb401bdc142957c947f7a&=&format=webp&quality=lossless&width=987&height=987');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

main .continer {
    position: relative;
    z-index: 999;
    width: 100%;
    top: 0vh;
    left: 110vh;
    height: 95vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 12rem;
}

main .continer .buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5.5rem;
}

main .continer .buttons .button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FFD700; /* Changed to gold */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px dashed rgba(13, 17, 20);
    cursor: pointer;
    transition: transform 0.7s ease-in-out, box-shadow 0.3s ease;
}

main .continer .buttons .button:hover {
    transform: rotate(180deg);
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.7); /* Gold hover shadow */
    background-color: #DAA520; /* Darker gold on hover */
}

main .continer .buttons .button i {
    color: rgba(13, 17, 20);
    font-weight: bold;
    font-size: 3rem;
}

@media (min-width: 1500px) {
    main .continer h6 {
        color: rgb(255, 255, 255);
        width: 700px;
        text-align: center;
        font-size: 16px;
    }
}

.Scripts_Section, .Feutchers_Section {
    display: flex;
    flex-direction: column;
    padding: 40px 0px;
    text-align: center;
    align-items: center;
    gap: 3rem;
}

.Feutchers_Section {
    border-bottom: 10px #f9a710 solid;
}

.Scripts_Section .BottounsBuy {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 2rem;
}

.Scripts_Section .BottounsBuy button {
    width: 130px;
    border: 1.3px solid #d98d0091;
    border-radius: calc(calc(1rem * 0.5) * 0.75);
    background: #d9940059;
    font-weight: bold;
    border-radius: 1.3rem;
    color: var(--text-light);
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Scripts_Section .BottounsBuy button:hover {
    background: rgba(97, 44, 0, 0.5);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(97, 44, 0, 0.5);
}

.Scripts_Section .Continer_Scripts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    padding: 1rem;
    width: 90%;
    max-width: 1200px;
}

.Scripts_Section .Continer_Scripts .Scripts {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 300px;
    background: url('../img/monet-background.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    border: 2px solid #ffab00;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    color: white;
    font-weight: bold;
    flex-direction: column;
    animation: bounceIn 1s;
    position: relative;
    overflow: hidden;
}

.Scripts_Section .Continer_Scripts .Scripts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptInfo {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px 10px;
    z-index: 1;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptInfo .script-price {
    font-size: 18px;
    font-weight: bold;
    color: #ff5555;
    background: rgba(255, 85, 85, 0.2);
    padding: 3px 8px;
    border-radius: 5px;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptInfo .script-label {
    font-size: 16px;
    color: #ffab00;
    background: rgba(255, 136, 0, 0.5);
    padding: 3px 8px;
    border-radius: 5px;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptPhoto {
    width: 100%;
    height: 50%;
    z-index: 1;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 136, 0, 0.5);
}

.Scripts_Section .Continer_Scripts .Scripts .center {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    z-index: 1;
}

.Scripts_Section .Continer_Scripts .Scripts .product-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    z-index: 1;
}

.Scripts_Section .Continer_Scripts .Scripts .product-buttons .product-button {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.Scripts_Section .Continer_Scripts .Scripts .product-buttons .add-to-cart-button {
    background: linear-gradient(145deg, #ff4040, #c62828);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 64, 64, 0.5);
}

.Scripts_Section .Continer_Scripts .Scripts .product-buttons .add-to-cart-button:hover {
    background: linear-gradient(145deg, #ff6666, #e63939);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 64, 64, 0.8);
    opacity: 0.9;
}

.Scripts_Section .Continer_Scripts .Scripts .product-buttons .watch-video-button {
    background: linear-gradient(145deg, #0288d1, #01579b);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.Scripts_Section .Continer_Scripts .Scripts .product-buttons .watch-video-button:hover {
    background: linear-gradient(145deg, #03a9f4, #0277bd);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(2, 136, 209, 0.8);
    opacity: 0.9;
}

/* أزرار الدفع في النافذة المنبثقة */
.payment-button {
    background: linear-gradient(145deg, #1e90ff, #1565c0);
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.payment-button:hover {
    background: linear-gradient(145deg, #42a5f5, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.5);
    opacity: 0.9;
}

#visa-button {
    background: linear-gradient(145deg, #4caf50, #388e3c);
}

#visa-button:hover {
    background: linear-gradient(145deg, #66bb6a, #4caf50);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.5);
    opacity: 0.9;
}

.Feutchers_Section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.Feutchers_Section .Continer_Feutchers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    padding: 1rem;
}

.Feutchers_Section .Continer_Feutchers .Feutchers {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 150px;
    background: rgb(30, 33, 36);
    border: 1px white solid;
    border-radius: .5rem;
    flex-direction: column;
    gap: 1em;
    text-align: center;
}

.Feutchers_Section .Continer_Feutchers .Feutchers .title {
    text-align: center;
}

.Feutchers_Section .Continer_Feutchers .Feutchers .title i {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
}

.Feutchers_Section .Continer_Feutchers .Feutchers .title h3 {
    margin-top: 5px;
    color: white;
    font-weight: bold;
}

.Feutchers_Section .Continer_Feutchers .Feutchers h5 {
    color: white;
    font-size: .8rem;
}

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;
}

main .continer_license {
    width: 100%;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

main .continer_license .license {
    width: 90%;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid #ffab00;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
}

main .continer_license .license table {
    width: 100%;
    margin: 20px 0;
    box-shadow: 0 2px 15px rgba(64, 64, 64, 0.15);
}

main .continer_license .license th, td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

main .continer_license .license th {
    color: #fff;
    font-weight: bold;
}

main .continer_license .license tr {
    transition: background-color 0.3s ease;
}

main .continer_license .license td {
    color: rgb(197 197 197);
}

main .continer_license .license td a {
    border-radius: .25rem;
    font-weight: bold;
    padding: .1px .7rem;
    background-color: #FFD700; /* Changed to gold */
    border-color: #FFD700; /* Changed to gold */
    color: #000; /* Black text for contrast */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

main .continer_license .license td a:hover {
    background-color: #DAA520; /* Darker gold on hover */
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.5); /* Gold shadow */
}

@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 .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: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.InfoScripts .Continer_Img .Buttons .button:hover {
    background: rgb(65 71 77);
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.InfoScripts .Exit {
    position: absolute;
    top: 1px;
    right: 9px;
    font-size: 34px;
    color: rgb(255, 0, 0);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.InfoScripts .Exit:hover {
    transform: scale(1.2);
}

main .continer_change {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75vh;
    z-index: 9999;
}

main .continer_change .change {
    width: 90%;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid #ffab00;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
    gap: 1rem;
}

main .continer_change .input {
    width: 100%;
    height: 2.875rem;
    padding: .56rem .75rem;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid #ffab00;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    border-radius: 2px;
    color: rgb(209, 209, 209);
}

main .continer_change .input::placeholder {
    color: rgb(209, 209, 209);
}

main .continer_change .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_change .buttons {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    height: 30px;
    gap: 20px;
}

main .continer_change .buttons button[name="ChangeLicense"] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    padding: 3px;
    border-radius: .2rem;
    cursor: pointer;
    font-size: 15px;
    border: 1.5px solid #FFD700; /* Changed to gold */
    background: linear-gradient(145deg, #FFD700, #DAA520); /* Gold gradient */
    color: #000; /* Black text for contrast */
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

main .continer_change .buttons button[name="ChangeLicense"]:hover {
    background: linear-gradient(145deg, #DAA520, #B8860B); /* Darker gold gradient on hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.5); /* Gold shadow */
}

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 .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="AddScripts"],
main .continer_addScripts .buttons button[name="ChangeAccounts"],
main .continer_addScripts .buttons button[name="ChangeLicenseAdmin"],
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, 255, 0);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

main .continer_addScripts .buttons button[name="AddScripts"]:hover,
main .continer_addScripts .buttons button[name="ChangeAccounts"]:hover,
main .continer_addScripts .buttons button[name="ChangeLicenseAdmin"]:hover,
main .continer_addScripts .buttons button[name="EditScripts"]:hover {
    background: rgb(0, 160, 0);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 160, 0, 0.5);
}

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: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

main .continer_addScripts .buttons a[name="RedButton"]:hover {
    background: rgb(160, 0, 0);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(160, 0, 0, 0.5);
}

.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;
}

/* تنسيق النصوص العام */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cairo", sans-serif;
    font-weight: bold;
    color: var(--text-light);
    margin: 0.5rem 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

h1:hover {
    color: #bc681a;
    transform: scale(1.02);
}

h2 {
    font-size: 1.8rem;
}

h2:hover {
    color: #ffab00;
    transform: translateY(-2px);
}

h3 {
    font-size: 1.5rem;
}

h3:hover {
    color: #ffab00;
    transform: scale(1.03);
}

h4 {
    font-size: 1.3rem;
}

h4:hover {
    color: #ff5555;
    transform: translateY(-2px);
}

h5 {
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(255, 166, 0, 0.7);
}

h5:hover {
    color: #ffab00;
    transform: scale(1.03);
}

h6 {
    font-size: 1rem;
    color: #e0e0e0;
    text-align: center;
}

h6:hover {
    color: #b0b0b0;
    transform: translateY(-2px);
}

p {
    font-family: "Cairo", sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

p:hover {
    color: var(--text-light);
}

/* تنسيق النصوص في القوائم */
.Header li a,
.Info .dropdown li a,
.Bars .dropdownphone li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.Header li a:hover,
.Info .dropdown li a:hover,
.Bars .dropdownphone li a:hover {
    color: #ffab00;
    transform: translateX(5px);
}

/* تنسيق النصوص في الصفحة الرئيسية */
main .continer h1,
main .continer h2,
main .continer h4,
main .continer h6 {
    text-align: center;
}

.Scripts_Section h2,
.Feutchers_Section h2 {
    font-size: 2rem;
}

.Scripts_Section p,
.Feutchers_Section p {
    font-size: 1.1rem;
    max-width: 700px;
}

.Scripts_Section .Continer_Scripts .Scripts .center h5 {
    font-size: 1.2rem;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptInfo .script-price,
.Scripts_Section .Continer_Scripts .Scripts .ScriptInfo .script-label {
    transition: background 0.3s ease, color 0.3s ease;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptInfo .script-price:hover {
    background: rgba(255, 85, 85, 0.4);
    color: #fff;
}

.Scripts_Section .Continer_Scripts .Scripts .ScriptInfo .script-label:hover {
    background: rgba(255, 145, 0, 0.4);
    color: #fff;
}

/* تنسيق النصوص في صفحة الرخص */
main .continer_license .license h2 {
    font-size: 1.8rem;
}

main .continer_license .license p {
    font-size: 1rem;
}

main .continer_license .license th {
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

main .continer_license .license th:hover {
    color: #ffab00;
}

main .continer_license .license td {
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

main .continer_license .license td:hover {
    color: var(--text-light);
}

/* تنسيق النصوص في صفحة التحكم بالرخص */
main .continer_change .change h2 {
    font-size: 1.8rem;
}

main .continer_change .change p {
    font-size: 1rem;
}

main .continer_change h3 {
    font-size: 1.3rem;
}

/* تنسيق النصوص في قسم إضافة السكربتات */
main .continer_addScripts .AddScripts h2 {
    font-size: 1.8rem;
}

main .continer_addScripts .AddScripts p {
    font-size: 1rem;
}

main .continer_addScripts h3 {
    font-size: 1.3rem;
}

/* تنسيق النصوص في النافذة المنبثقة */
.InfoScripts .center h2 {
    font-size: 1.8rem;
}

.InfoScripts .center h6 {
    font-size: 0.95rem;
}
